* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #AB05B6 0%, #6A4CFF 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.page {
    display: none;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 10px 0;
}

.page.active {
    display: flex;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.title {
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.68rem);
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
    font-weight: 300;
    letter-spacing: 0px;
    line-height: 1.2;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Mixed font styles for title */
.title-trebuchet {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
}

.title-georgia {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
}

/* Program Description - GEORGIA ITALIC */
.program-description {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    line-height: 1.25;
    text-align: center;
    padding: 0 15px;

    /* Fixed height for 5.6 lines (20% reduction) to prevent layout shift */
    min-height: calc(2.24rem * 1.1 * 5.6); /* font-size * line-height * 5.6 lines */
    max-height: calc(2.24rem * 1.1 * 5.6);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.76rem) = minimum size on small screens
       - font-size: Middle value (1.6vw) = how it scales with screen width
       - font-size: Last value (2.24rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
       - margin-bottom: Space below element (same pattern as font-size)
    */
    font-size: clamp(1.4rem, 1.1vw, 2.12rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: clamp(0.075rem, 0.5vh, 0.15rem);
}

/* Fluff Text */
.fluff-text {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    font-size: clamp(0.8rem, 1.2vw, 1.7rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

/* Time Selector - Three circular buttons */
.time-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
}

.time-btn {
    width: clamp(112px, 28vw, 175px);
    height: clamp(112px, 28vw, 175px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.time-value {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    font-size: clamp(1.6rem, 1.6vw, 40rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: clamp(0.05rem, 0.7vh, 0.1rem);
}

.time-label {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: clamp(0.8rem, 1.7vw, 2.7rem);
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1;
}

.time-btn:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.time-btn.selected {
    background: white;
    color: #667eea;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.time-btn.selected .time-value {
    color: #773ef0;
}

.time-btn.selected .time-label {
    color: #773ef0;
}

/* Program Selector */
.program-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: clamp(2rem, 1vh, 2rem);  /* SPACER: Space between h1 and buttons */
    margin-bottom: clamp(2rem, 2.5vh, 4rem);
    width: 100%;
}

.program-btn {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
    padding: clamp(4.32px, 0.648vh, 6.48px) clamp(40px, 8vw, 80px);
    width: clamp(200px, 60%, 600px); /* Responsive width */

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
    */
    font-size: clamp(0.825rem, 2.25vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 2px;
}

.program-btn:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.program-btn.selected {
    background: white;
    color: #9023d4;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Stay Awake Toggle */
.stay-awake-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 10px;
    
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.stay-awake-label {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    color: white;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
    */
    font-size: clamp(0.88rem, 2.4vw, 1.12rem);
    font-weight: 400;
    letter-spacing: 2px;
}

/* Voice Toggle */
.voice-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.voice-label {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    color: white;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
    */
    font-size: clamp(0.88rem, 2.4vw, 1.12rem);
    font-weight: 400;
    letter-spacing: 2px;
}

/* Toggle Controls Container (for side-by-side layout on mobile) */
.toggle-controls-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    margin-top: 10%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 21px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    transition: 0.3s;
    border-radius: 21px;
    border: 1px solid white;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    right: 2px;
    bottom: 1px;
    background-color: rgba(255, 255, 255, 0);
    border: 0.5px solid white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: transparent;
    border-color: white;
    right: -2px;
}

input:checked + .toggle-slider:before {
    transform: translateX(19px);
    background-color: white;
}

.toggle-slider:hover {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.9);
}

input:checked + .toggle-slider:hover {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   FONT GROUP 1: TREBUCHET MS (REGULAR)
   Used for: buttons, toggle, timer, phase label, program name, exercise title
   =================================== */

/* Step Counter */
.step-counter {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    color: rgba(255, 255, 255, 1);
    text-align: center;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
       - margin-bottom: Space below element (same pattern as font-size)
    */
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 4px;
    margin-top: clamp(3rem, 4vh, 6rem);  /* INCREASED BY 100% */
    margin-bottom: clamp(0.8rem, 1.5vh, 1.2rem);
}

/* Program Name */
.program-name {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    color: white;
    text-align: center;
    text-transform: lowercase;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
       - margin-bottom: Space below element (same pattern as font-size)
    */
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: clamp(0.8rem, 1.5vh, 1.2rem);
}

/* Exercise Image */
.exercise-image-container {
    width: 45%;
    max-width: 600px;
    margin: 0 auto 4px;
}

.exercise-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Exercise Title */
.exercise-title {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    color: white;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
       - margin-bottom: Space below element (same pattern as font-size)
    */
    font-size: clamp(2.0rem, 2.5vw, 5rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: clamp(0.8rem, 1.5vh, 1.2rem);
}

/* Phase Label (Get Ready / Exercise) */
.phase-label {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    text-transform: lowercase;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
       - margin-bottom: Space below element (same pattern as font-size) - INCREASED BY 40%
    */
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: clamp(1.12rem, 2.1vh, 1.68rem);
}

/* Timer Circle Container */
.timer-circle-container {
    width: clamp(500px, 140vw, 500px);
    height: clamp(500px, 140vw, 500px);
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    padding: 20px 40px 60px 40px;  /* Asymmetric padding to shift content upward */
    gap: 4px;
    position: relative;
}

/* Pause button positioned on circle border */
.pause-on-circle {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px !important;
    height: 80px !important;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex;  /* Removed !important so JS can control visibility */
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 0 !important;  /* Hide text */
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    background: url('btns/btn_pause.png') center/contain no-repeat !important;
    border: none !important;
    box-shadow: none !important;
}

/* Exit button when done - positioned like pause button */
.exit-on-circle {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px !important;
    height: 80px !important;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50% !important;
    padding: 0 !important;
    display: none;  /* Hidden by default, shown on completion */
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 0 !important;  /* Hide text */
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    background: url('btns/btn_exit_when_done.png') center/contain no-repeat !important;
    border: none !important;
    box-shadow: none !important;
}

/* Container for Exit and Resume buttons when paused */
.pause-controls-group {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 20px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.pause-controls-group.active {
    display: flex;
}

/* Exit and Resume buttons at circle border height */
.btn-pause-control {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0 !important;  /* Hide text */
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: lowercase !important;
    border: none !important;
    box-shadow: none !important;
}

/* Exit button image when paused */
#exit-paused-btn {
    background: url('btns/btn_exit_when_paused.png') center/contain no-repeat !important;
}

/* Resume button image */
#resume-btn {
    background: url('btns/btn_resume_after_pause.png') center/contain no-repeat !important;
}

/* Timer Display */
.timer-display {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    color: white;

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
       - margin-bottom: Space below element (same pattern as font-size)
    */
    font-size: clamp(6rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 0;
}

/* ===================================
   FONT GROUP 2: GEORGIA (ITALIC)
   Used for: program description, exercise subtitle
   =================================== */

/* Exercise Subtitle */
.exercise-subtitle {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    color: rgba(255, 255, 255, 1);

    /* ADJUST THESE VALUES:
       - font-size: First value (1.1rem) = minimum size on small screens
       - font-size: Middle value (3vw) = how it scales with screen width
       - font-size: Last value (1.4rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
       - margin-bottom: Space below element (same pattern as font-size)
    */
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0%;
}

/* Buttons */
.btn {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif;
    text-transform: lowercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    padding: clamp(4.32px, 0.648vh, 6.48px) clamp(40px, 8vw, 80px);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);

    /* ADJUST THESE VALUES:
       - font-size: First value (0.825rem) = minimum size on small screens
       - font-size: Middle value (2.25vw) = how it scales with screen width
       - font-size: Last value (1.05rem) = maximum size on large screens
       - font-weight: 100-900 (400=normal, 500=medium, 700=bold, 900=black)
       - letter-spacing: Space between letters (0.5px = tight, 2px = loose)
    */
    font-size: clamp(0.825rem, 2.25vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 2px;
}

.btn:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: white;
    color: #773ef0;
    border-color: white;
}

.btn-primary:hover {
    background: #f0f0f0;
    color: #773ef0;  /* Keep text color same as default on hover */
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-exit {
    background: rgba(255, 100, 100, 0.8);
    color: white;
    border: 2px solid white;
    margin-top: 10px;
}

.btn-exit:hover {
    background: rgba(255, 100, 100, 1);
}

.control-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .exercise-image-container {
        max-width: 50%;
    }
}

/* Very short landscape screens */
@media (max-height: 400px) and (orientation: landscape) {
    body {
        align-items: flex-start;
    }

    .page {
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        align-items: flex-start;
    }

    .container {
        padding: 2px 10px;
        max-height: 100vh;
        overflow-y: auto;
        justify-content: flex-start;
        gap: 2px;
        max-width: 100%;
    }

    .title {
        margin-bottom: 2px;
        font-size: clamp(0.384rem, 2.5vh, 0.576rem);
    }

    .program-description {
        font-size: clamp(0.88rem, 2.4vh, 1.12rem);
        margin-bottom: 1px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .program-selector {
        margin-bottom: 3px;
        gap: 5px;
    }

    .program-btn {
        padding: 1.35px 10px;
        font-size: clamp(0.45rem, 1.35vh, 0.6rem);
        letter-spacing: 2px;
    }

    .exercise-image-container {
        max-width: min(35vh, 180px);
        margin-bottom: 3px;
    }

    .exercise-title {
        font-size: clamp(0.7rem, 2vh, 1rem);
        margin-bottom: 2px;
    }

    .phase-label {
        margin-bottom: 2.8px;  /* INCREASED BY 40% */
        font-size: clamp(0.6rem, 1.8vh, 0.9rem);
        letter-spacing: 1px;
    }

    .timer-display {
        margin-bottom: 3px;
        font-size: clamp(1.2rem, 6vh, 2rem);
        letter-spacing: 2px;
    }

    .btn {
        padding: 4px 20px;
        font-size: clamp(0.6rem, 1.8vh, 0.8rem);
    }

    .control-buttons {
        gap: 3px;
        margin-top: 3px;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    body {
        align-items: flex-start;
    }

    .page {
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        align-items: flex-start;
    }

    .container {
        padding: 5px 15px;
        max-height: 100vh;
        overflow-y: auto;
        justify-content: flex-start;
        gap: 5px;
    }

    .title {
        margin-bottom: 5px;
        font-size: clamp(0.48rem, 3vh, 0.72rem);
    }

    .program-description {
        font-size: clamp(1.04rem, 2.88vh, 1.28rem);
        margin-bottom: 1px;
        padding: 0 8px;
        line-height: 1.5;
    }

    .program-selector {
        margin-bottom: 5px;
        gap: 8px;
    }

    .program-btn {
        padding: 3.75px 15px;
        font-size: clamp(0.525rem, 1.5vh, 0.675rem);
        letter-spacing: 2px;
    }

    .exercise-image-container {
        max-width: min(40vh, 250px);
        margin-bottom: 5px;
    }

    .exercise-title {
        font-size: clamp(0.9rem, 2.5vh, 1.2rem);
        margin-bottom: 3px;
    }

    .phase-label {
        margin-bottom: 4.2px;  /* INCREASED BY 40% */
        font-size: clamp(0.7rem, 2vh, 1rem);
        letter-spacing: 2px;
    }

    .timer-display {
        margin-bottom: 5px;
        font-size: clamp(1.5rem, 8vh, 3rem);
        letter-spacing: 3px;
    }

    .btn {
        padding: 5px 25px;
        font-size: clamp(0.7rem, 2vh, 0.9rem);
    }

    .control-buttons {
        gap: 5px;
        margin-top: 5px;
    }
}

/* Portrait mode on very tall screens */
@media (min-height: 200px) {
    .exercise-image-container {
        max-width: 200px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .title {
        letter-spacing: 1px;
        font-size: clamp(0.96rem, 3vw, 1.344rem);
    }

    .timer-display {
        letter-spacing: 3px;
    }

    .program-selector {
        gap: 8px;
    }
}
