/* ===========================================
   MARBLE CONTROLLER
   Central configuration for marble sizing
   
   Change these values to adjust marble sizes.
   JavaScript reads these variables at runtime.
   =========================================== */

:root {
    /* Marble sizing */
    --marble-base-size: 40px;        /* Size for 5 min marble */
    --marble-growth-per-min: 0.47px; /* Additional size per minute over 5 */
    --marble-font-ratio: 0.32;       /* Font size = marble size * this ratio */
    
    /* Marble shine (arc highlight) */
    --marble-shine-opacity: 0.5;
    --marble-shine-width: 30%;       /* Width of the arc */
    --marble-shine-height: 15%;      /* Height/thickness of the arc */
    --marble-shine-top: 12%;         /* Position from top */
    --marble-shine-left: 15%;        /* Position from left */
}
