:root {
    --bg-primary: #F8FAFC;
    --bg-panel: rgba(255, 255, 255, 0.7);
    --bg-panel-inner: rgba(0, 0, 0, 0.05);
    --primary-red: #E60000;
    --primary-blue: #002B7F;
    --accent-glow: rgba(230, 0, 0, 0.2);
    --blue-glow: rgba(0, 43, 127, 0.2);
    --text-primary: #0F172A;
    --text-muted: #475569;
    --font-en: 'Outfit', sans-serif;
    --font-hi: 'Noto Sans Devanagari', sans-serif;
    --border-glass: 1px solid rgba(0, 0, 0, 0.1);
    --border-glass-strong: 1px solid rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(230, 0, 0, 0.15);
    --ambient-1: rgba(0, 43, 127, 0.15);
    --ambient-2: rgba(230, 0, 0, 0.15);
    --ambient-3: rgba(255, 255, 255, 0.8);
}
[data-theme="dark"] {
    --bg-primary: #020617; 
    --bg-panel: rgba(15, 23, 42, 0.6); 
    --bg-panel-inner: rgba(255, 255, 255, 0.05);
    --primary-red: #FF1A2F;
    --primary-blue: #3B82F6;
    --accent-glow: rgba(255, 26, 47, 0.5);
    --blue-glow: rgba(59, 130, 246, 0.5);
    --text-primary: #F8FAFC;
    --text-muted: #94A3B8;
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --border-glass-strong: 1px solid rgba(255, 255, 255, 0.2);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px rgba(255, 26, 47, 0.4);
    --ambient-1: rgba(59, 130, 246, 0.3);
    --ambient-2: rgba(255, 26, 47, 0.2);
    --ambient-3: rgba(15, 23, 42, 0.8);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-en);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    transform: translateZ(0); 
    will-change: transform;
}
.glow-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--ambient-1) 0%, transparent 70%);
}
.glow-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--ambient-2) 0%, transparent 70%);
}
.glow-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--ambient-3) 0%, transparent 70%);
    opacity: 1;
    z-index: -2;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-en);
    line-height: 1.2;
}
.text-red { color: var(--primary-red); }
.text-blue { color: var(--primary-blue); }
.text-white { color: var(--text-white); }
.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.text-glow-large {
    text-shadow: 0 0 20px var(--primary-blue);
}
.hindi-highlight {
    font-family: var(--font-hi);
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 700;
}
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
}
.glass-panel-inner {
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, #FF1A2F, #C00000);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}
.btn-glass {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border: var(--border-glass-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(0, 0, 0, 0.1);
    border: var(--border-glass-strong);
    transform: translateY(-3px);
}
[data-theme="dark"] .btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
[data-theme="dark"] .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}
.btn-outline-glow {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    box-shadow: inset 0 0 10px var(--accent-glow), 0 0 10px var(--accent-glow);
}
.btn-outline-glow:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}
.w-100 { width: 100%; }
.center-flex { justify-content: center; }
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
section { padding: 100px 0; }
.center { text-align: center; }
.top-bar {
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: var(--border-glass);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.date-time-widget {
    display: inline-flex; align-items: center;
    background: rgba(255, 255, 255, 0.5);
    border: var(--border-glass); border-radius: 30px;
    padding: 4px 16px; font-weight: 500; letter-spacing: 0.5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
[data-theme="dark"] .date-time-widget {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}
.dt-badge { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.dt-badge i { color: var(--primary-red); font-size: 0.9rem; }
.dt-badge span { color: var(--text-primary); }
.dt-divider {
    width: 4px; height: 4px; background-color: var(--text-muted);
    border-radius: 50%; margin: 0 15px; opacity: 0.5;
}.social-links a { color: var(--text-muted); margin-left: 20px; font-size: 1.1rem; transition: var(--transition); text-decoration: none; }
.social-links a:hover { color: var(--primary-red); text-shadow: 0 0 10px var(--accent-glow); }
.main-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: var(--border-glass-strong);
    box-shadow: var(--shadow-glass);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-wrapper { display: flex; align-items: center; }
.image-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}
.image-logo-link:hover {
    transform: scale(1.05);
}
.header-logo-img {
    height: 60px; 
    width: auto;
    object-fit: contain;
    border-radius: 8px; 
}
.advanced-theme-toggle {
    background: transparent; border: none; cursor: pointer; padding: 0; outline: none;
    display: flex; align-items: center; justify-content: center;
}
.toggle-track {
    width: 64px; height: 32px; border-radius: 30px;
    background: #94a3b8; border: var(--border-glass-strong);
    position: relative; box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.toggle-thumb {
    position: absolute; top: 2px; left: 2px;
    width: 26px; height: 26px; border-radius: 50%;
    background: white; box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s;
    z-index: 2; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.toggle-thumb i { position: absolute; font-size: 0.85rem; transition: transform 0.4s, opacity 0.4s; }
.sun-icon { color: #f59e0b; transform: translateY(0); opacity: 1; }
.moon-icon { color: #1e293b; transform: translateY(20px); opacity: 0; }
[data-theme="dark"] .toggle-track { background: #0f172a; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .toggle-thumb { transform: translateX(32px); background: #1e293b; }
[data-theme="dark"] .sun-icon { transform: translateY(-20px); opacity: 0; }
[data-theme="dark"] .moon-icon { transform: translateY(0); opacity: 1; color: #a78bfa; }
.nav-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-muted); font-weight: 600; font-size: 1rem; position: relative; padding-bottom: 5px; text-decoration: none; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary-blue); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-red); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; box-shadow: 0 0 10px var(--accent-glow); }
.live-btn {
    background-color: rgba(255, 26, 47, 0.1);
    color: var(--primary-red);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 800;
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--primary-red);
    position: relative;
    box-shadow: inset 0 0 10px rgba(255,26,47,0.2);
}
.live-btn:hover { background-color: var(--primary-red); color: white; box-shadow: 0 0 20px var(--primary-red); }
.hero-section {
    position: relative;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}
.glass-badge {
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-blue); font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 0 10px var(--primary-blue);
}
.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 90%;
}
.hero-actions { display: flex; gap: 20px; margin-top: 40px; }
.hero-3d-model {
    width: 100%;
    height: 600px;
    position: relative;
}
.spline-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
}
spline-viewer { width: 100%; height: 100%; }
.model-overlay {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: var(--bg-panel); backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; color: var(--text-muted);
    pointer-events: none; border: var(--border-glass);
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 30px;
}
.bento-item {
    background: var(--bg-panel);
    border: var(--border-glass);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: center;
    transition: var(--transition);
}
.span-2 { grid-column: span 2; }
.bento-item h3 { font-size: 2.5rem; margin-bottom: 20px; color: var(--text-primary); }
.bento-item p { font-size: 1.1rem; color: var(--text-primary); opacity: 0.85; line-height: 1.6; }
.bg-image { background-size: cover; background-position: center; padding: 0; }
.bento-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
}
.bento-overlay h4 { font-size: 1.8rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); color: white; margin-bottom: 5px; }
.bento-overlay p { color: rgba(255,255,255,0.8); font-size: 1rem; text-shadow: 0 2px 5px rgba(0,0,0,0.5); margin: 0; }
.bg-gradient { background: linear-gradient(135deg, var(--bg-primary), var(--ambient-1)); }
.bg-gradient i { font-size: 4rem; color: var(--primary-blue); margin-bottom: 20px; }
.bg-gradient h4 { font-size: 1.8rem; margin-bottom: 10px; }
.bg-gradient-alt { background: linear-gradient(135deg, var(--bg-primary), var(--ambient-2)); }
.bg-gradient-alt i { font-size: 4rem; color: var(--primary-red); margin-bottom: 20px; }
.bg-gradient-alt h4 { font-size: 1.8rem; margin-bottom: 10px; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.section-header p { font-size: 1.2rem; color: var(--text-muted); }
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.coverage-card {
    background: var(--bg-panel); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    border: var(--border-glass); border-radius: 20px; padding: 30px;
    text-align: center; transition: var(--transition);
}
.coverage-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.3); }
.icon-wrapper {
    width: 65px; height: 65px; background: rgba(255,26,47,0.9); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 20px auto; color: white;
}
.bg-red-glow { background: rgba(255,26,47,0.1); border: 1px solid var(--primary-red); box-shadow: inset 0 0 20px rgba(255,26,47,0.2); color: var(--primary-red); }
.bg-blue-glow { background: rgba(59,130,246,0.1); border: 1px solid var(--primary-blue); box-shadow: inset 0 0 20px rgba(59,130,246,0.2); color: var(--primary-blue); }
.bg-green-glow { background: rgba(16,185,129,0.1); border: 1px solid #10b981; box-shadow: inset 0 0 20px rgba(16,185,129,0.2); color: #10b981; }
.bg-purple-glow { background: rgba(139,92,246,0.1); border: 1px solid #8b5cf6; box-shadow: inset 0 0 20px rgba(139,92,246,0.2); color: #8b5cf6; }
.coverage-card h4 { font-size: 1.5rem; margin-bottom: 15px; }
.coverage-card p { color: var(--text-muted); font-size: 1rem; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.video-card { 
    border-radius: 24px; overflow: hidden; cursor: pointer; 
    transition: var(--transition); border: var(--border-glass);
}
.video-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-glass); border-color: rgba(255,255,255,0.2); }
.img-wrapper { position: relative; overflow: hidden; height: 240px; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-card:hover .img-wrapper img { transform: scale(1.1); }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 65px; height: 65px; background: rgba(255,26,47,0.9); backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white; box-shadow: 0 0 25px rgba(255,26,47,0.6); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-card:hover .play-btn { background: var(--primary-red); transform: translate(-50%, -50%) scale(1.15); box-shadow: 0 0 35px rgba(255,26,47,0.8); }
.vid-info { padding: 30px; }
.vid-info h4 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text-primary); transition: var(--transition); }
.video-card:hover .vid-info h4 { color: var(--primary-red); }
.vid-info .time { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.center-btn { display: flex; justify-content: center; margin-top: 50px; width: 100%; }
.live-section { padding-bottom: 120px; }
.live-bento { display: grid; grid-template-columns: 2fr 1fr; border-radius: 30px; overflow: hidden; padding: 10px; gap: 10px; }
.live-stream-area { position: relative; border-radius: 20px; overflow: hidden; background: #000; }
.live-indicator {
    display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: white; margin-bottom: 20px; letter-spacing: 2px;
    background: var(--bg-panel); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 30px;
    border: var(--border-glass);
}
.dot { width: 10px; height: 10px; background: var(--primary-red); border-radius: 50%; display: block; }
.video-container { height: 100%; min-height: 400px; position: relative; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.live-sidebar { 
    padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; 
    position: relative; overflow: hidden; border-radius: 20px;
    background: linear-gradient(135deg, var(--bg-panel-inner), transparent);
    border: var(--border-glass);
}
.sidebar-glow-bg {
    position: absolute; top: -50px; right: -50px; width: 250px; height: 250px;
    background: radial-gradient(circle, var(--ambient-2) 0%, transparent 70%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}
.sidebar-content { position: relative; z-index: 1; }
.live-sidebar h3 { font-size: 2.2rem; margin-bottom: 10px; }
.live-sidebar p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }
.subscribe-box { padding: 30px; border-radius: 20px; text-align: center; }
.subscribe-box h4 { margin-bottom: 5px; font-size: 1.4rem; }
.small-text { font-size: 0.95rem !important; color: var(--text-muted); margin-bottom: 0 !important; }
.gradient-box {
    background: linear-gradient(135deg, var(--bg-panel), var(--bg-panel-inner));
    border: var(--border-glass-strong);
    box-shadow: var(--shadow-glass);
}
.main-footer { padding: 60px 0 0 0; border-top: var(--border-glass-strong); margin-top: 50px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-logo-img { height: 70px; width: auto; object-fit: contain; border-radius: 8px; }
.footer-about p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin-bottom: 30px; }
.glass-icon {
    width: 45px; height: 45px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg-panel-inner); border: var(--border-glass); color: var(--text-primary); font-size: 1.2rem; margin-right: 15px; transition: var(--transition);
}
.glass-icon:hover { background: var(--primary-red); color: white; transform: translateY(-5px); border-color: var(--primary-red); box-shadow: 0 10px 20px var(--accent-glow); }
.footer-contact h3 { font-size: 1.5rem; margin-bottom: 25px; }
.footer-contact p { color: var(--text-muted); margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }
.footer-contact p i { color: var(--primary-blue); font-size: 1.3rem; }
.footer-bottom { background: var(--bg-panel-inner); text-align: center; padding: 25px; color: var(--text-muted); }
.pulse-glow { animation: pulseGlow 2s infinite alternate; }
@keyframes pulseGlow { 0% { box-shadow: 0 0 10px rgba(255,26,47,0.2); } 100% { box-shadow: 0 0 30px rgba(255,26,47,0.6); } }
.pulse { animation: simplePulse 1s infinite; }
@keyframes simplePulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
.scroll-reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.scroll-reveal.active { opacity: 1; transform: translateY(0); }
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    -webkit-animation: premiumReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation: premiumReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-blur {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    -webkit-animation: premiumBlurReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation: premiumBlurReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-slide-left {
    opacity: 0;
    transform: translateX(50px);
    -webkit-animation: premiumReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation: premiumReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@-webkit-keyframes premiumReveal {
    0% { opacity: 0; transform: translateY(40px) translateX(var(--tx, 0)); }
    100% { opacity: 1; transform: translateY(0) translateX(0); }
}
@keyframes premiumReveal {
    0% { opacity: 0; transform: translateY(40px) translateX(var(--tx, 0)); }
    100% { opacity: 1; transform: translateY(0) translateX(0); }
}
@-webkit-keyframes premiumBlurReveal {
    0% { opacity: 0; transform: scale(0.95) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes premiumBlurReveal {
    0% { opacity: 0; transform: scale(0.95) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.delay-1 { animation-delay: 0.1s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; transition-delay: 0.5s; }
.delay-6 { animation-delay: 0.7s; transition-delay: 0.7s; }
.css-3d-mic-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(15,23,42,0.8) 0%, rgba(2,6,23,0.9) 100%);
    position: relative;
    overflow: hidden;
}
.mic-container {
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.mic-head {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #475569, #1e293b);
    border-radius: 40px;
    position: relative;
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.5), inset 5px 5px 15px rgba(255,255,255,0.2), 0 10px 20px rgba(0,0,0,0.5);
    z-index: 3;
}
.mic-mesh {
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border-radius: 35px;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.3) 2px, rgba(0,0,0,0.3) 4px);
    border: 2px solid #334155;
}
.mic-neck {
    width: 20px;
    height: 40px;
    background: #334155;
    background: linear-gradient(90deg, #1e293b, #475569, #1e293b);
    z-index: 2;
}
.mic-base {
    width: 120px;
    height: 60px;
    background: #0f172a;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 5px 10px rgba(255,255,255,0.1), 0 20px 30px rgba(0,0,0,0.8);
    position: relative;
    border-bottom: 5px solid var(--primary-red);
}
.on-air-sign {
    background: #FF1A2F;
    color: white;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 4px;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255,26,47,0.8);
}
.broadcast-waves {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.broadcast-waves span {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    animation: waveBroadcast 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
}
.broadcast-waves span:nth-child(1) { width: 50px; height: 50px; animation-delay: 0s; }
.broadcast-waves span:nth-child(2) { width: 100px; height: 100px; animation-delay: 1s; }
.broadcast-waves span:nth-child(3) { width: 150px; height: 150px; animation-delay: 2s; }
@keyframes waveBroadcast {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}
.team-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    cursor: pointer;
}
.team-image-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(20px);
}
.hero-section { padding: 60px 0 80px 0; }
.hero-grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-image-inner { width: 100%; height: 550px; border-radius: 25px; overflow: hidden; position: relative; }
.desktop-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
@media (max-width: 1200px) {
    .hero-grid-split { gap: 40px; }
    .hero-image-inner { height: 450px; }
    .hero-title { font-size: clamp(3rem, 5vw, 4.5rem); }
}
@media (max-width: 1024px) {
    .hero-grid-split, .bento-grid, .coverage-grid, .video-grid, .team-grid, .live-bento { grid-template-columns: 1fr; }
    .span-2 { grid-column: span 1; }
    .hero-section { padding: 50px 0 60px 0; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-content p { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-content .reveal-up[style*="border-left"] { border-left: none; border-bottom: 4px solid var(--primary-red); border-radius: 10px; background: rgba(255,26,47,0.05); }
    .hero-content > div:last-child { justify-content: center; }
    .hero-image-inner { height: 500px; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .desktop-nav { 
        position: absolute; top: 100%; left: 0; right: 0; 
        background: rgba(15,23,42,0.95); backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        overflow-x: auto; white-space: nowrap; padding: 10px 20px;
        display: none; 
    }
}
@media (max-width: 768px) {
    section { padding: 50px 0; }
    .container { padding: 0 15px; }
    .hero-section { padding: 30px 0 30px 0; }
    .hero-title { font-size: 2.8rem !important; } 
    .hero-content p { font-size: 1rem !important; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a, .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
    .hero-image-inner { height: 300px; border-radius: 20px; }
    .coverage-grid, .video-grid, .footer-container { grid-template-columns: 1fr; }
    
    .top-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
    .date-time-widget { flex-wrap: wrap; justify-content: center; padding: 6px 12px; }
    .dt-badge { font-size: 0.85rem; }
    .dt-divider { margin: 0 10px; }
    
    .header-container { justify-content: space-between; }
    .header-logo-img { height: 45px; }
    
    .header-cta .live-btn span { display: none; } 
    .header-cta .live-btn { width: 40px; height: 40px; padding: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem !important; }
    .hero-image-inner { height: 220px; }
    .bento-item { padding: 20px; }
    .header-logo-img { height: 38px; }
    .btn { padding: 12px 20px; font-size: 0.95rem; }
}