/* =========================================
   CSS VARIABLES - BRAND COLORS
   ========================================= */
:root {
    /* Brand Colors */
    --primary: #3396de;
    --primary-light: #5aadea;
    --primary-dark: #2678b3;
    --secondary: #fcce37;
    --secondary-dark: #e5b82b;
    --white: #ffffff;
    --black: #1a1a2e;

    /* Light Theme */
    --bg-main: #ffffff;
    --bg-light: #f5f7fa;
    --bg-card: #ffffff;

    /* Text */
    --text-primary: #1a1a2e;
    --text-secondary: #5a6478;
    --text-muted: #8a94a6;

    /* Borders */
    --border-light: #e8edf2;
    --border-medium: #dde2e8;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;

    /* Layout */
    --nav-height: 70px;
    --player-height: 80px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.hidden {
    display: none !important;
}

/* =========================================
   PWA INSTALL & UPDATE BANNERS
   ========================================= */

/* Large Install Modal */
.install-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.install-overlay.show {
    opacity: 1;
    visibility: visible;
}

.install-modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.install-overlay.show .install-modal {
    transform: scale(1);
}

.install-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-md);
}

.install-modal-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.install-modal h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.install-modal p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-xl);
    line-height: 1.5;
}

.install-modal-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-item i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.install-modal-buttons {
    display: flex;
    gap: var(--space-md);
    flex-direction: column;
}

.install-modal-buttons .btn-install {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.install-modal-buttons .btn-install:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.install-modal-buttons .btn-install i {
    width: 24px;
    height: 24px;
}

.install-modal-buttons .btn-dismiss {
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.install-modal-buttons .btn-dismiss:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.install-banner,
.update-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.install-banner:not(.hidden),
.update-banner:not(.hidden) {
    transform: translateY(0);
}

.install-content,
.update-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.install-icon,
.update-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.install-icon i,
.update-icon i {
    width: 24px;
    height: 24px;
}

.install-text,
.update-text {
    flex: 1;
    min-width: 0;
}

.install-text h4,
.update-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.install-text p,
.update-text p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.install-btn,
.update-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px var(--space-md);
    background: white;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.install-btn:hover,
.update-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.install-btn i,
.update-btn i {
    width: 16px;
    height: 16px;
}

.install-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.install-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.install-close i {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .install-content,
    .update-content {
        gap: var(--space-sm);
        padding: var(--space-sm);
    }

    .install-text,
    .update-text {
        flex: 1;
    }

    .install-text h4,
    .update-text h4 {
        font-size: 0.9rem;
    }

    .install-text p,
    .update-text p {
        font-size: 0.8rem;
    }

    .install-modal {
        padding: var(--space-lg);
        margin: var(--space-md);
    }

    .install-modal-buttons {
        gap: var(--space-sm);
    }

    .install-modal-buttons .btn-install,
    .install-modal-buttons .btn-dismiss {
        padding: var(--space-md) var(--space-lg);
    }
}

/* =========================================
   MANUAL INSTALL BUTTON (FLOATING)
   ========================================= */
.manual-install-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    animation: fadeInUp 0.5s ease-out;
}

.install-card {
    background: linear-gradient(135deg, #0f4c75 0%, #1e6ba8 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 76, 117, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.install-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 76, 117, 0.4);
}

.install-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.install-icon i {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.install-content {
    flex: 1;
    min-width: 0;
}

.install-title {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 2px 0;
}

.install-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
}

.install-action-btn {
    background: white;
    color: #0f4c75;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.install-action-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.install-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.install-close-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.install-close-btn i {
    width: 16px;
    height: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .manual-install-button {
        bottom: 90px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .install-card {
        max-width: none;
        gap: 10px;
        padding: 14px 16px;
    }

    .install-icon {
        padding: 8px;
    }

    .install-icon i {
        width: 18px;
        height: 18px;
    }

    .install-title {
        font-size: 13px;
    }

    .install-subtitle {
        font-size: 11px;
    }

    .install-action-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
}

/* =========================================
   PROMOTIONS TAB LOADING STATE
   ========================================= */
.promotions-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
    text-align: center;
}

.promotions-loading i {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    animation: spin 1s linear infinite;
}

.promotions-loading p {
    font-size: 0.9rem;
    margin: 0;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================
   EMPTY STATE
   ========================================= */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 8px;
}

.empty-state p:last-child {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =========================================
   APP CONTAINER
   ========================================= */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.main-content {
    flex: 1;
    overflow: hidden;
}

.tab-content {
    display: none;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.content-wrapper {
    padding-bottom: calc(var(--player-height) + var(--nav-height) + var(--safe-bottom) + 20px);
}

.section-inner {
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-lg) 0;
}

.spacer {
    height: 40px;
}

/* =========================================
   ACTIVE PROMOTIONS CAROUSEL
   ========================================= */
.active-promotions-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .active-promotions-carousel {
        aspect-ratio: 16 / 10;
        max-height: 250px;
    }
}

/* Promo Carousel Track */
.promo-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.promo-carousel-slide {
    flex: 0 0 100%;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.promo-carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.promo-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 150, 222, 0.85) 0%, rgba(38, 123, 179, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.promo-slide-content {
    text-align: center;
    color: white;
    max-width: 500px;
    width: 100%;
}

.promo-slide-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-slide-description {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    line-height: 1.4;
}

.promo-slide-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.promo-slide-date {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.promo-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(252, 206, 55, 0.3);
}

.promo-slide-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(252, 206, 55, 0.4);
}

.promo-slide-btn i {
    width: 14px;
    height: 14px;
}

/* Promo Carousel Dots */
.promo-carousel-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.promo-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Promo Carousel Arrows */
.promo-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.promo-carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.promo-carousel-arrow.prev {
    left: var(--space-md);
}

.promo-carousel-arrow.next {
    right: var(--space-md);
}

.promo-carousel-arrow i {
    width: 18px;
    height: 18px;
}

.promo-carousel-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .promo-slide-overlay {
        padding: var(--space-md);
    }

    .promo-slide-title {
        font-size: 1.1rem;
    }

    .promo-slide-description {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }

    .promo-slide-footer {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .promo-slide-date {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .promo-slide-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* =========================================
   HERO CAROUSEL (70% Bigger Height)
   ========================================= */
.hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 18;
    /* 70% taller than 16/10 */
    max-height: 100vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-carousel {
        aspect-ratio: 16 / 12;
        max-height: 80vh;
    }
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Background (Cover as full background) */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(26, 26, 46, 0.95) 0%,
            rgba(26, 26, 46, 0.7) 50%,
            rgba(26, 26, 46, 0.3) 100%);
}

.slide-overlay.next {
    background: linear-gradient(90deg,
            rgba(26, 26, 46, 0.97) 0%,
            rgba(26, 26, 46, 0.8) 50%,
            rgba(26, 26, 46, 0.4) 100%);
}

/* Slide Content (Left aligned) */
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-xl);
    padding-left: var(--space-xl);
    color: white;
    max-width: 70%;
}

@media (min-width: 768px) {
    .slide-content {
        padding-left: var(--space-xl);
        max-width: 50%;
    }
}

/* Live Badge */
.live-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: #ef4444;
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Next Badge */
.next-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--secondary);
    color: var(--black);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.next-badge i {
    width: 14px;
    height: 14px;
}

/* Slide Labels */
.slide-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.slide-label.next {
    color: rgba(255, 255, 255, 0.6);
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 3rem;
    }
}

.slide-presenter {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.btn-listen {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(51, 150, 222, 0.4);
}

.btn-listen:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-listen i {
    width: 22px;
    height: 22px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-xl);
    display: flex;
    gap: var(--space-sm);
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
}

.dot.active {
    width: 28px;
    border-radius: 5px;
    background: white;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: 50%;
    z-index: 20;
    transition: all var(--transition-base);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.carousel-arrow.prev {
    left: var(--space-md);
}

.carousel-arrow.next {
    right: var(--space-md);
}

.carousel-arrow i {
    width: 22px;
    height: 22px;
}

/* =========================================
   BIRTHDAY SECTION
   ========================================= */
.birthday-section {
    padding-top: var(--space-xl);
}

.birthday-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: var(--radius-xl);
    color: white;
    overflow: hidden;
}

.birthday-confetti {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.birthday-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.birthday-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.birthday-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: var(--space-xs);
}

.birthday-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.birthday-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.birthday-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: white;
    color: #c44569;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.birthday-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.birthday-btn i {
    width: 18px;
    height: 18px;
}

/* Birthday Form */
.birthday-form-section {
    padding-top: 0;
}

.birthday-form-card {
    padding: var(--space-lg);
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.birthday-form-card .form-step label {
    color: rgba(255, 255, 255, 0.9);
}

.birthday-form-card .form-step input,
.birthday-form-card .form-step textarea {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.birthday-form-card .form-step input::placeholder,
.birthday-form-card .form-step textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.birthday-form-card .form-step input:focus,
.birthday-form-card .form-step textarea:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.25);
}

.birthday-form-card .btn-back {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.birthday-form-card .btn-next {
    background: white;
    color: #c44569;
}

.birthday-form-card .form-dot {
    background: rgba(255, 255, 255, 0.4);
}

.birthday-form-card .form-dot.active {
    background: white;
}

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.section-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-title i {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.see-all {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* =========================================
   MUSIC REQUEST
   ========================================= */
.music-request-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.music-request-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.music-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.music-icon i {
    width: 26px;
    height: 26px;
    color: white;
}

.music-text {
    flex: 1;
}

.music-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.music-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.music-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.music-btn i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.music-btn:hover {
    background: var(--primary);
}

.music-btn:hover i {
    color: white;
}

/* Music Form */
.music-form {
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.form-step {
    display: none;
    animation: slideIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.form-step input,
.form-step textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-step input:focus,
.form-step textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-step input::placeholder,
.form-step textarea::placeholder {
    color: var(--text-muted);
}

.form-step textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-lg);
}

.form-dots {
    display: flex;
    gap: var(--space-sm);
}

.form-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-medium);
    transition: all var(--transition-base);
}

.form-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.btn-back,
.btn-next {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-back {
    background: var(--bg-light);
    color: var(--text-secondary);
}

.btn-next {
    background: var(--primary);
    color: white;
}

.btn-next:hover {
    background: var(--primary-dark);
}

.btn-back i,
.btn-next i {
    width: 18px;
    height: 18px;
}

/* =========================================
   PROMO BANNER
   ========================================= */
.promo-banner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.promo-icon {
    font-size: 2rem;
}

.promo-text {
    flex: 1;
}

.promo-text h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.promo-text p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.promo-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: white;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.promo-btn:hover {
    transform: scale(1.05);
}

.promo-btn i {
    width: 16px;
    height: 16px;
}

/* =========================================
   NEWS
   ========================================= */
.news-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: var(--space-xs) 0;
    margin: 0 calc(var(--space-lg) * -1);
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.news-scroll::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 260px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.news-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-card-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.news-card-content {
    padding: var(--space-md);
}

.news-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.news-skeleton {
    flex: 0 0 260px;
    height: 200px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.news-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* =========================================
   YOUTUBE
   ========================================= */
.youtube-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.youtube-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-playlist {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition-base);
}

.playlist-item:hover,
.playlist-item.active {
    border-color: var(--primary);
    background: rgba(51, 150, 222, 0.05);
}

.playlist-item-thumb {
    width: 72px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.playlist-item-info {
    flex: 1;
    min-width: 0;
}

.playlist-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playlist-item-artist {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* =========================================
   SCHEDULE SECTION (NEW)
   ========================================= */
.schedule-section {
    background: var(--bg-light);
    padding: var(--space-xl) 0;
    margin-top: var(--space-lg);
}

.schedule-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.schedule-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.schedule-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.schedule-arrow i {
    width: 20px;
    height: 20px;
}

.schedule-day {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    min-width: 150px;
    text-align: center;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.schedule-item.current {
    border-color: var(--primary);
    background: rgba(51, 150, 222, 0.05);
}

.schedule-item-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 100px;
}

.schedule-item-cover {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.schedule-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-item-info {
    flex: 1;
    min-width: 0;
}

.schedule-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.schedule-item-locutor {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   SOCIAL
   ========================================= */
.social-section {
    text-align: center;
}

.social-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.social-btn i {
    width: 26px;
    height: 26px;
    color: white;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.whatsapp {
    background: #25d366;
}

/* =========================================
   PAGE HEADER (Promos & Contact)
   ========================================= */
.page-header {
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    background: linear-gradient(180deg, rgba(51, 150, 222, 0.08) 0%, transparent 100%);
}

.page-header h1 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: var(--space-sm);
}

.page-header h1 i {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.page-header p {
    color: var(--text-secondary);
}

/* =========================================
   PROMO LIST
   ========================================= */
.promo-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.promo-item {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.promo-item-img {
    position: relative;
    height: 150px;
}

.promo-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-status {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
}

.promo-status.active {
    background: #22c55e;
    color: white;
}

.promo-status.soon {
    background: var(--secondary);
    color: var(--black);
}

.promo-item-body {
    padding: var(--space-lg);
}

.promo-item-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.promo-item-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.promo-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-item-footer span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.promo-item-footer i {
    width: 16px;
    height: 16px;
}

.btn-participate {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.btn-participate:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn-participate:disabled {
    background: var(--bg-light);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* How To */
.how-to-box {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.how-to-box h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.how-to-box h3 i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.how-steps {
    display: flex;
    justify-content: space-around;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.step-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 800;
}

.step p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* =========================================
   CONTACT
   ========================================= */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-icon.blue {
    background: var(--primary);
}

.contact-icon.green {
    background: #25d366;
}

.contact-icon.red {
    background: #ea4335;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Address */
.address-box {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-xl);
}

.address-box h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.address-box h3 i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.address-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.map-box {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form */
.form-box {
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.form-box h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.form-box h3 i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form select {
    cursor: pointer;
    color: var(--text-secondary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-submit i {
    width: 20px;
    height: 20px;
}

/* =========================================
   PLAYER BAR (Yellow Background)
   ========================================= */
.player-bar {
    position: fixed;
    bottom: var(--nav-height);
    left: 0;
    right: 0;
    height: var(--player-height);
    display: flex;
    align-items: stretch;
    background: var(--secondary);
    /* YELLOW */
    z-index: 100;
}

.player-cover {
    position: relative;
    width: var(--player-height);
    height: 100%;
    flex-shrink: 0;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-eq {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: rgba(0, 0, 0, 0.5);
}

.player-eq span {
    width: 4px;
    background: var(--secondary);
    border-radius: 2px;
    animation: eq 0.8s ease-in-out infinite;
}

.player-eq span:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.player-eq span:nth-child(2) {
    height: 20px;
    animation-delay: -0.2s;
}

.player-eq span:nth-child(3) {
    height: 16px;
    animation-delay: -0.4s;
}

.player-eq span:nth-child(4) {
    height: 24px;
    animation-delay: -0.1s;
}

.player-eq span:nth-child(5) {
    height: 14px;
    animation-delay: -0.3s;
}

@keyframes eq {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.player-info {
    flex: 1;
    min-width: 0;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--black);
    /* Dark text on yellow */
}

.player-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info p {
    font-size: 0.8rem;
    color: rgba(26, 26, 46, 0.7);
    margin-top: 2px;
}

.player-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-right: var(--space-md);
}

.btn-vol {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.btn-vol i {
    width: 20px;
    height: 20px;
    color: var(--black);
}

.btn-vol:hover {
    background: rgba(26, 26, 46, 0.2);
}

.btn-play {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.btn-play i {
    width: 26px;
    height: 26px;
    color: var(--secondary);
}

.btn-play .icon-play {
    margin-left: 3px;
}

.btn-play:hover {
    transform: scale(1.08);
}

/* =========================================
   BOTTOM NAVIGATION
   ========================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
    padding-bottom: var(--safe-bottom);
    z-index: 200;
}

.nav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-md) var(--space-sm);
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.nav-tab i {
    width: 24px;
    height: 24px;
}

.nav-tab span {
    font-size: 0.65rem;
    font-weight: 600;
}

.nav-tab.active {
    color: var(--primary);
}

.nav-tab.active i {
    transform: scale(1.1);
}
.slide-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}
#slide-time-live {
    display: none;
}
#slide-time-next {
    border: solid 2px #f9cf2f;
    padding: 10px 15px;
    border-radius: 1rem;
}