/* ==========================================================================
   MUTTHAMIZH WEB RADIO - STYLESHEET
   Light & Dark Mode Support (Light Mode Default)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@400;500;600;700;800&family=Arima:wght@500;600;700;800&family=Catamaran:wght@400;500;600;700;800&family=Hind+Madurai:wght@400;500;600;700&display=swap');

/* --- Root Theme Variables --- */
:root {
    --font-tamil: 'Catamaran', 'Hind Madurai', 'Anek Tamil', 'Arima', sans-serif;
    
    /* Light Mode (DEFAULT) */
    --bg-main: #F4F7FB;
    --bg-header: rgba(255, 255, 255, 0.95);
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --bg-player: #0D1322;
    --bg-player-card: #152035;
    --bg-subtle: #EDF2F7;
    --bg-pill: #FFFFFF;
    --bg-modal: #FFFFFF;
    
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --text-inverse: #FFFFFF;
    
    --border-color: #E2E8F0;
    --border-subtle: #CBD5E1;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 25px rgba(225, 29, 72, 0.25);
    
    /* Brand Accents */
    --primary-rose: #E11D48;
    --primary-rose-hover: #BE123C;
    --accent-teal: #0D9488;
    --accent-blue: #2563EB;
    --accent-gold: #F59E0B;
    --accent-purple: #7C3AED;
    --gradient-brand: linear-gradient(135deg, #E11D48 0%, #7C3AED 50%, #2563EB 100%);
    --gradient-hero: radial-gradient(circle at 10% 20%, rgba(225, 29, 72, 0.08) 0%, transparent 40%),
                     radial-gradient(circle at 90% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 45%),
                     radial-gradient(circle at 50% 80%, rgba(13, 148, 136, 0.07) 0%, transparent 50%),
                     linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
    --gradient-hero-overlay: radial-gradient(circle at 75% 40%, rgba(225, 29, 72, 0.12) 0%, rgba(124, 58, 237, 0.08) 50%, transparent 80%);
    --bg-mesh-img: url('assets/radio_light_bg.jpg');
    --bg-mesh-opacity: 0.28;
    --bg-mesh-blend: multiply;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Dark Theme Overrides --- */
[data-theme="dark"] {
    --bg-main: #060912;
    --bg-header: rgba(6, 9, 18, 0.95);
    --bg-card: #111827;
    --bg-card-hover: #1F2937;
    --bg-player: #090D17;
    --bg-player-card: #111728;
    --bg-subtle: #162033;
    --bg-pill: #162033;
    --bg-modal: #111827;
    
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-inverse: #0F172A;
    
    --border-color: #1E293B;
    --border-subtle: #334155;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(225, 29, 72, 0.4);
    
    --gradient-hero: radial-gradient(circle at 15% 20%, rgba(225, 29, 72, 0.28) 0%, transparent 55%),
                     radial-gradient(circle at 85% 25%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
                     radial-gradient(circle at 50% 90%, rgba(13, 148, 136, 0.22) 0%, transparent 60%),
                     linear-gradient(180deg, #090D18 0%, #060912 100%);
    --gradient-hero-overlay: radial-gradient(circle at 75% 40%, rgba(225, 29, 72, 0.35) 0%, rgba(37, 99, 235, 0.25) 50%, transparent 80%);
    --bg-mesh-img: url('assets/radio_bg.jpg');
    --bg-mesh-opacity: 0.35;
    --bg-mesh-blend: screen;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-tamil);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
    padding-bottom: 90px; /* Space for sticky bottom player */
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Top Header Navigation --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    height: 56px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    transition: transform var(--transition-fast);
}

.header-logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.logo-motto {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-rose);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: color var(--transition-fast);
    position: relative;
    padding: 4px 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-rose);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-rose);
    border-radius: var(--radius-full);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--bg-subtle);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-rose);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.live-badge-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-rose);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

/* Language Toggle Button */
.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-toggle-btn:hover {
    background: var(--primary-rose);
    color: #FFFFFF;
    border-color: var(--primary-rose);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
    transform: rotate(15deg) scale(1.05);
    background: var(--border-color);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    color: var(--text-primary);
    padding: 8px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 60px 0 72px 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--bg-mesh-img);
    background-size: cover;
    background-position: center;
    opacity: var(--bg-mesh-opacity);
    mix-blend-mode: var(--bg-mesh-blend);
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--primary-rose);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
}

.hero-motto-banner {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    white-space: nowrap;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 8px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--primary-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-brand);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(225, 29, 72, 0.4);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background-color: #20BD5A;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}

/* --- Hero Right Player Card --- */
.hero-player-card {
    background: var(--bg-player);
    color: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.player-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.live-now-badge {
    background: var(--primary-rose);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.player-visual-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsating Circle Wave Animation around Logo */
.player-visual-wrapper::before,
.player-visual-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary-rose);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    animation: circleWavePulse 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.player-visual-wrapper::after {
    animation-delay: 1.2s;
}

@keyframes circleWavePulse {
    0% {
        transform: scale(0.98);
        opacity: 0.85;
        border-color: var(--primary-rose);
        box-shadow: 0 0 12px var(--primary-rose);
    }
    50% {
        opacity: 0.5;
        border-color: var(--accent-teal);
        box-shadow: 0 0 18px var(--accent-teal);
    }
    100% {
        transform: scale(1.16);
        opacity: 0;
        border-color: var(--accent-purple);
        box-shadow: 0 0 0px transparent;
    }
}

.player-visual-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-brand);
    padding: 3px;
    animation: spin 12s linear infinite;
    z-index: 1;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.player-visual-img {
    width: 100%;
    height: 100%;
    background: #0D1322;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    border: 4px solid var(--bg-player);
    padding: 0;
    overflow: hidden;
}

.player-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.player-track-info {
    text-align: center;
    margin-bottom: 20px;
}

.player-track-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.player-track-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Audio Wave Equalizer */
.equalizer-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 32px;
    margin-bottom: 20px;
}

.eq-bar {
    width: 4px;
    height: 8px;
    background: var(--primary-rose);
    border-radius: 2px;
    transition: height 0.1s ease;
}

.equalizer-wave.playing .eq-bar {
    animation: soundWave 1.2s infinite ease-in-out alternate;
}

.equalizer-wave.playing .eq-bar:nth-child(1) { animation-delay: 0.1s; }
.equalizer-wave.playing .eq-bar:nth-child(2) { animation-delay: 0.3s; }
.equalizer-wave.playing .eq-bar:nth-child(3) { animation-delay: 0.5s; }
.equalizer-wave.playing .eq-bar:nth-child(4) { animation-delay: 0.2s; }
.equalizer-wave.playing .eq-bar:nth-child(5) { animation-delay: 0.4s; }
.equalizer-wave.playing .eq-bar:nth-child(6) { animation-delay: 0.6s; }
.equalizer-wave.playing .eq-bar:nth-child(7) { animation-delay: 0.3s; }
.equalizer-wave.playing .eq-bar:nth-child(8) { animation-delay: 0.1s; }

@keyframes soundWave {
    0% { height: 6px; opacity: 0.4; }
    100% { height: 28px; opacity: 1; }
}

.player-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ctrl-btn-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.ctrl-btn-sub:hover {
    color: #FFFFFF;
}

.ctrl-btn-play-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-rose);
    color: #FFFFFF;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
    transition: transform var(--transition-fast);
}

.ctrl-btn-play-main:hover {
    transform: scale(1.08);
}

.player-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
}

.volume-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-rose);
    cursor: pointer;
}

/* --- Quick Action Pills Grid --- */
.quick-actions-section {
    padding: 32px 0;
}

.quick-pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.quick-pill-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.quick-pill-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-rose);
}

.pill-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #FFFFFF;
}

.pill-icon.p-rose { background: linear-gradient(135deg, #FF416C, #FF4B2B); }
.pill-icon.p-amber { background: linear-gradient(135deg, #F7971E, #FFD200); }
.pill-icon.p-purple { background: linear-gradient(135deg, #8E2DE2, #4A00E0); }
.pill-icon.p-green { background: linear-gradient(135deg, #11998e, #38ef7d); }
.pill-icon.p-blue { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.pill-icon.p-teal { background: linear-gradient(135deg, #0D9488, #14B8A6); }

.pill-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* --- Section Headers --- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 1.25rem;
    color: var(--primary-rose);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-link-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all var(--transition-fast);
}

.section-link-btn:hover {
    color: var(--primary-rose);
    border-color: var(--primary-rose);
}

/* --- Main Layout Two Column (On Air + Schedule) --- */
.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
}

/* --- On-Air Feature Card --- */
.on-air-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.show-artwork-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.show-artwork-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-badge-live {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-rose);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
}

.show-badge-time {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.on-air-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.on-air-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.on-air-rj {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-rose);
}

.on-air-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.on-air-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.btn-detail {
    padding: 10px 20px;
    background: var(--primary-rose);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.btn-icon-square {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon-square:hover {
    color: var(--primary-rose);
    border-color: var(--primary-rose);
}

/* --- Schedule Box --- */
.schedule-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background-color: var(--bg-subtle);
    transition: all var(--transition-fast);
}

.schedule-item.active-now {
    background: var(--primary-rose);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
}

.schedule-time {
    font-weight: 700;
    font-size: 0.85rem;
    width: 90px;
}

.schedule-show-name {
    font-weight: 700;
    font-size: 0.95rem;
    flex: 1;
}

.schedule-live-icon {
    font-size: 1.1rem;
    animation: wavePulse 1.2s infinite;
}

@keyframes wavePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* --- Popular Shows Cards Grid --- */
.shows-section {
    margin-bottom: 64px;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.show-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.show-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.show-thumb {
    width: 100%;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.show-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.show-card:hover .show-play-overlay {
    opacity: 1;
}

.btn-play-mini {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-rose);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.show-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
}

.show-card-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.show-card-rj {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-rose);
}

/* --- About & Footer Grid --- */
.footer-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-btns-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.fb-btn { background-color: #1877F2; }
.ig-btn { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.yt-btn { background-color: #FF0000; }
.wa-btn { background-color: #25D366; }

.app-download-box {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.store-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-primary);
    color: var(--bg-card);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.store-btn i {
    font-size: 1.4rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Sticky Bottom Player Bar --- */
.sticky-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--bg-player);
    color: #FFFFFF;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.bar-track-info {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 280px;
}

.bar-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 3px;
    overflow: hidden;
}

.bar-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bar-details {
    display: flex;
    flex-direction: column;
}

.bar-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.bar-controls-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bar-play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-rose);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.5);
    transition: transform 0.2s;
}

.bar-play-btn:hover {
    transform: scale(1.08);
}

.bar-actions-right {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 240px;
    justify-content: flex-end;
}

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-modal);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 480px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-subtle);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary-rose);
}

/* --- Mobile Navigation Side Drawer --- */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-card);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-color);
    z-index: 100000 !important;
}

.mobile-drawer-overlay.active .mobile-drawer {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-logo {
    height: 46px;
    object-fit: contain;
}

.drawer-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-subtle);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
    transition: background-color 0.2s, color 0.2s;
}

.drawer-close-btn:hover {
    background-color: rgba(225, 29, 72, 0.15);
    color: var(--primary-rose);
}

.drawer-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    flex: 1;
}

.drawer-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.drawer-nav-menu li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.2s, color 0.2s;
}

.drawer-link i {
    width: 24px;
    font-size: 1.1rem;
    color: var(--primary-rose);
}

.drawer-link:hover, .drawer-link.active {
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary-rose);
}

.drawer-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-subtle);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.drawer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
}

.drawer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-subtle);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid var(--border-color);
}

/* --- Ultra-Premium Mobile & Tablet Responsiveness --- */
@media (max-width: 992px) {
    .header-container {
        height: 72px;
    }

    .nav-menu {
        display: none !important;
    }

    .social-icons,
    .header-actions .lang-toggle-btn,
    .header-actions .theme-toggle-btn {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--bg-subtle);
        color: var(--text-primary);
        border: 1px solid var(--border-color);
        font-size: 1.2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        height: 68px;
    }

    .header-logo-img {
        height: 44px;
    }

    .hero-section {
        padding: 24px 0 36px 0;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6.5vw, 2.2rem);
        white-space: normal;
        line-height: 1.35;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        font-size: 0.95rem;
    }

    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 12px 8px;
        gap: 6px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .stat-val {
        font-size: 0.85rem;
    }

    .stat-lbl {
        font-size: 0.68rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-primary, .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .hero-player-card {
        padding: 24px 16px;
    }

    .player-visual-wrapper {
        width: 140px;
        height: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    /* Sticky Bottom Player Bar on Mobile */
    .sticky-player-bar {
        height: 70px;
    }

    .bar-container {
        height: 70px;
        padding: 0 16px;
    }

    .bar-track-info {
        width: auto;
        max-width: 60%;
        gap: 10px;
    }

    .bar-thumb {
        width: 42px;
        height: 42px;
    }

    .bar-title {
        font-size: 0.88rem;
    }

    .bar-subtitle {
        font-size: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .bar-controls-center {
        gap: 12px;
    }

    .bar-play-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .ctrl-btn-sub {
        display: none;
    }

    .bar-actions-right {
        display: none;
    }
}
