/* SURYA NAMASKAR - CSS */
:root {
    --color-primary: #FF6B6B;
    --color-secondary: #FFE66D;
    --gradient-warm: linear-gradient(135deg, #FFD93D 0%, #FF8C00 100%);
    --bg-primary: #0f0f1a;
    --bg-secondary: #1a1a2e;
    --bg-card: rgba(30, 30, 50, 0.8);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --shadow-button: 0 4px 16px rgba(255, 107, 107, 0.4);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.app-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 30%, #2d1f3d 60%, #1a1a2e 100%);
}

.sun-rays {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center top, rgba(255, 140, 66, 0.15) 0%, rgba(255, 107, 107, 0.08) 30%, transparent 60%);
    animation: sunGlow 8s ease-in-out infinite alternate;
}

@keyframes sunGlow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.8;
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: -10%;
    background: rgba(255, 107, 107, 0.2);
}

.floating-particles::after {
    bottom: 20%;
    right: -10%;
    background: rgba(255, 230, 109, 0.15);
    animation-delay: -7s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, -30px);
    }
}

.header {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.lotus-icon {
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.settings-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-50%) rotate(45deg);
}

.settings-btn svg {
    transition: transform 0.3s ease;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.screen {
    display: none;
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.welcome-card {
    text-align: center;
}

.welcome-icon {
    margin-bottom: 1.5rem;
}

.sun-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.sun-rays-animated {
    animation: rotateSlow 20s linear infinite;
    transform-origin: 60px 60px;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.welcome-card h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.welcome-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pose-preview-grid {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-warm);
    opacity: 0.3;
    animation: previewPulse 2s ease-in-out infinite;
}

.preview-dot:nth-child(1) {
    animation-delay: 0s;
}

.preview-dot:nth-child(2) {
    animation-delay: 0.1s;
}

.preview-dot:nth-child(3) {
    animation-delay: 0.2s;
}

.preview-dot:nth-child(4) {
    animation-delay: 0.3s;
}

.preview-dot:nth-child(5) {
    animation-delay: 0.4s;
}

.preview-dot:nth-child(6) {
    animation-delay: 0.5s;
}

.preview-dot:nth-child(7) {
    animation-delay: 0.6s;
}

.preview-dot:nth-child(8) {
    animation-delay: 0.7s;
}

.preview-dot:nth-child(9) {
    animation-delay: 0.8s;
}

.preview-dot:nth-child(10) {
    animation-delay: 0.9s;
}

.preview-dot:nth-child(11) {
    animation-delay: 1s;
}

.preview-dot:nth-child(12) {
    animation-delay: 1.1s;
}

@keyframes previewPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-warm);
    color: #1a1a2e;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

/* Time Configuration Styles */
.time-config {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-config label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.time-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.time-btn:active {
    transform: scale(0.95);
}

.time-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    min-width: 80px;
    justify-content: center;
}

#time-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.time-unit {
    font-size: 1rem;
    color: var(--text-muted);
}

.time-presets {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.preset-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preset-btn:hover {
    border-color: rgba(255, 140, 66, 0.5);
    color: var(--text-primary);
}

.preset-btn.active {
    background: var(--gradient-warm);
    border-color: transparent;
    color: #1a1a2e;
    font-weight: 600;
}

/* Practice Screen Styles */
.progress-container {
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-warm);
    border-radius: 9999px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-dots {
    display: flex;
    justify-content: space-between;
    padding: 0 0.25rem;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.progress-dot.completed {
    background: var(--color-secondary);
    box-shadow: 0 0 10px rgba(255, 230, 109, 0.5);
}

.progress-dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
    transform: scale(1.3);
}

.pose-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pose-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-warm);
    color: #1a1a2e;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.pose-info {
    flex: 1;
}

.pose-name {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
}

.pose-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.breathing-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    min-width: 80px;
}

.breath-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breathing-indicator.inhale .breath-text {
    color: #4ECDC4;
}

.breathing-indicator.exhale .breath-text {
    color: #FF6B6B;
}

.breathing-indicator.hold .breath-text {
    color: #FFE66D;
}

.breath-animation {
    width: 40px;
    height: 8px;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
}

.breathing-indicator.inhale .breath-animation {
    background: rgba(78, 205, 196, 0.3);
}

.breathing-indicator.inhale .breath-animation::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #4ECDC4;
    border-radius: 9999px;
    animation: inhaleAnim 4s ease-in-out infinite;
}

.breathing-indicator.exhale .breath-animation {
    background: rgba(255, 107, 107, 0.3);
}

.breathing-indicator.exhale .breath-animation::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #FF6B6B;
    border-radius: 9999px;
    animation: exhaleAnim 4s ease-in-out infinite;
}

.breathing-indicator.hold .breath-animation {
    background: rgba(255, 230, 109, 0.3);
}

.breathing-indicator.hold .breath-animation::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 30%;
    transform: translateX(-50%);
    background: #FFE66D;
    border-radius: 9999px;
    animation: holdAnim 2s ease-in-out infinite;
}

@keyframes inhaleAnim {

    0%,
    100% {
        width: 30%;
    }

    50% {
        width: 100%;
    }
}

@keyframes exhaleAnim {

    0%,
    100% {
        width: 30%;
    }

    50% {
        width: 100%;
    }
}

@keyframes holdAnim {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.pose-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.breath-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    transition: all 0.5s ease;
    opacity: 0;
}

.breath-visual.inhale {
    background: radial-gradient(circle, rgba(78, 205, 196, 0.4) 0%, rgba(78, 205, 196, 0.1) 60%, transparent 80%);
    animation: bigInhale 4s ease-in-out infinite;
    opacity: 1;
}

.breath-visual.exhale {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.4) 0%, rgba(255, 107, 107, 0.1) 60%, transparent 80%);
    animation: bigExhale 4s ease-in-out infinite;
    opacity: 1;
}

.breath-visual.hold {
    background: radial-gradient(circle, rgba(255, 230, 109, 0.4) 0%, rgba(255, 230, 109, 0.1) 60%, transparent 80%);
    animation: bigHold 4s ease-in-out infinite;
    opacity: 1;
}

@keyframes bigInhale {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

@keyframes bigExhale {
    0% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
}

@keyframes bigHold {
    0%, 100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.pose-svg {
    width: 100%;
    max-width: 350px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.pose-svg svg {
    width: 100%;
    height: 100%;
}

.pose-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    animation: poseEnter 0.5s ease-out, poseBreathing 4s ease-in-out infinite;
}

@keyframes poseEnter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes poseBreathing {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.timer-ring {
    width: 110px;
    height: 110px;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.timer-progress {
    fill: none;
    stroke: #FF8C00;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-display {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-seconds {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.timer-seconds.warning {
    color: var(--color-primary);
    animation: timerPulse 0.5s ease-in-out;
}

@keyframes timerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.timer-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pose-instructions {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.description-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    color: #1a1a2e;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: all 0.3s ease;
}

.control-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.control-btn.secondary {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    box-shadow: none;
}

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

.completion-card {
    text-align: center;
}

.celebration-icon {
    margin-bottom: 1.5rem;
}

.celebrate-ring {
    animation: celebrateRotate 3s linear infinite;
    transform-origin: 60px 60px;
}

@keyframes celebrateRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.checkmark {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 1s ease forwards 0.5s;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.completion-card h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.completion-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.completion-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pose-breathing {
    animation: poseBreath 4s ease-in-out infinite;
}

@keyframes poseBreath {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@media (max-width: 600px) {
    .header {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .pose-header {
        flex-wrap: wrap;
    }

    .breathing-indicator {
        order: -1;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .pose-animation-container {
        min-height: 200px;
    }

    .pose-svg {
        max-width: 250px;
        height: 200px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 400px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 107, 107, 0.3);
    color: var(--text-primary);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.setting-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.setting-item label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.modal-footer .primary-btn {
    width: 100%;
    justify-content: center;
}

/* Set Indicator Styles */
.set-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.set-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 107, 107, 0.2));
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-secondary);
    animation: setGlow 2s ease-in-out infinite alternate;
}

.set-badge svg {
    color: var(--color-secondary);
}

@keyframes setGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    }
}

/* Setting Item Styles */
.setting-item+.setting-item {
    margin-top: 1.5rem;
}

.setting-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* Update completion stats for 3 columns */
.completion-stats {
    gap: 2rem;
}

/* Sets preset buttons - match time presets styling */
.sets-preset-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sets-preset-btn:hover {
    border-color: rgba(255, 140, 66, 0.5);
    color: var(--text-primary);
}

.sets-preset-btn.active {
    background: var(--gradient-warm);
    border-color: transparent;
    color: #1a1a2e;
    font-weight: 600;
}