/* ===================================
   AATMDARSHAN THE SILENCE - Main CSS
   =================================== */

:root {
    --primary: #6B2FA0;
    --primary-light: #9B59B6;
    --primary-dark: #4A1070;
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --dark: #0D0D1A;
    --dark2: #1A1A2E;
    --dark3: #16213E;
    --light: #F5F0FF;
    --text: #E8E0F0;
    --text-muted: #A090B0;
    --white: #FFFFFF;
    --youtube: #FF0000;
    --facebook: #1877F2;
    --instagram: #E1306C;
    --font-primary: 'Cinzel', serif;
    --font-body: 'Libre Baskerville', serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --shadow: 0 8px 32px rgba(107, 47, 160, 0.3);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
    --border-radius: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--primary); color: white; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    animation: breathe 2s ease-in-out infinite;
}

.preloader-inner .om-symbol {
    font-size: 5rem;
    color: var(--gold);
    font-family: var(--font-hindi);
    text-shadow: 0 0 40px var(--gold), 0 0 80px rgba(212, 175, 55, 0.5);
    display: block;
    margin-bottom: 1rem;
}

.preloader-inner p {
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(107, 47, 160, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.logo-om {
    font-size: 1.8rem;
    color: var(--gold);
    font-family: var(--font-hindi);
    text-shadow: 0 0 15px var(--gold);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    display: block;
    line-height: 1;
}

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

.nav-menu a {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--text);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-menu .vip-btn {
    background: linear-gradient(135deg, var(--gold), #B8860B);
    color: var(--dark) !important;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 20px;
}

.nav-menu .vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(13, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 47, 160, 0.4);
    border-radius: 12px;
    list-style: none;
    padding: 12px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 24px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #2D1B4E 0%, #1A1A2E 40%, var(--dark) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 100px 20px 50px;
    max-width: 800px;
}

.hero-symbol {
    font-size: 5rem;
    color: var(--gold);
    font-family: var(--font-hindi);
    text-shadow: 0 0 40px var(--gold), 0 0 80px rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
    animation: glowPulse 3s ease-in-out infinite;
    display: block;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 40px var(--gold), 0 0 80px rgba(212, 175, 55, 0.3); }
    50% { text-shadow: 0 0 60px var(--gold), 0 0 120px rgba(212, 175, 55, 0.5), 0 0 200px rgba(212, 175, 55, 0.2); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: var(--font-hindi);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.hero-tagline-en {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: inline;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(107, 47, 160, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 47, 160, 0.6);
    color: white;
}

.btn-vip {
    background: linear-gradient(135deg, var(--gold), #B8860B);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-vip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--dark);
}

.btn-outline {
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-youtube {
    background: var(--youtube);
    color: white;
}

.btn-youtube:hover {
    background: #CC0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-family: var(--font-hindi);
    font-size: 1rem;
}

/* ===== SECTIONS GENERAL ===== */
section {
    padding: 80px 0;
}

/* ===== SOCIAL BANNER ===== */
#social-banner {
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    padding: 30px 0;
    border-top: 1px solid rgba(107, 47, 160, 0.3);
    border-bottom: 1px solid rgba(107, 47, 160, 0.3);
}

.social-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link.youtube { background: var(--youtube); box-shadow: 0 4px 15px rgba(255,0,0,0.3); }
.social-link.youtube:hover { box-shadow: 0 8px 25px rgba(255,0,0,0.5); }
.social-link.facebook { background: var(--facebook); box-shadow: 0 4px 15px rgba(24,119,242,0.3); }
.social-link.facebook:hover { box-shadow: 0 8px 25px rgba(24,119,242,0.5); }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 4px 15px rgba(225,48,108,0.3); }
.social-link.instagram:hover { box-shadow: 0 8px 25px rgba(225,48,108,0.5); }

/* ===== FEATURED VIDEO ===== */
#featured-video {
    background: var(--dark2);
}

.featured-video-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-frame-glow {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(107, 47, 160, 0.3), var(--shadow);
    position: relative;
}

.video-frame-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--gold), var(--primary));
    border-radius: calc(var(--border-radius) + 2px);
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.video-frame-glow iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border-radius: var(--border-radius);
}

.featured-video-info h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.featured-video-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===== LATEST VIDEOS ===== */
#latest-videos {
    background: var(--dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.video-card {
    background: var(--dark2);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(107, 47, 160, 0.2);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.video-thumb {
    position: relative;
    overflow: hidden;
}

.video-thumb iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.video-views {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.videos-load-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(107, 47, 160, 0.3);
    margin-bottom: 30px;
}

.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.gap-15 { gap: 15px; display: flex; justify-content: center; flex-wrap: wrap; }

/* ===== VIP TEASER ===== */
#vip-teaser {
    background: linear-gradient(135deg, #1a0a2e, #2d1b4e, #1a0a2e);
    position: relative;
    overflow: hidden;
}

.vip-bg-anim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: vipPulse 4s ease-in-out infinite;
}

@keyframes vipPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

.vip-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.vip-crown {
    font-size: 4rem;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.vip-inner h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
}

.vip-desc {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.vip-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.vip-feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    transition: var(--transition);
    text-align: center;
}

.vip-feature:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.vip-feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.vip-feature h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.vip-feature p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== ABOUT PREVIEW ===== */
#about-preview {
    background: var(--dark2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.about-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(107, 47, 160, 0.3);
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-symbol-bg {
    font-size: 12rem;
    color: rgba(107, 47, 160, 0.15);
    font-family: var(--font-hindi);
    position: absolute;
    line-height: 1;
}

.about-img-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-side .section-tag { text-align: left; }

.about-text-side h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.about-quote {
    font-style: italic;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-text-side p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.9;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--dark);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial-card {
    background: var(--dark2);
    border: 1px solid rgba(107, 47, 160, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: var(--font-hindi);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(107, 47, 160, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== NEWSLETTER ===== */
#newsletter {
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    border-top: 1px solid rgba(107, 47, 160, 0.3);
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.newsletter-inner h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.newsletter-inner p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(107, 47, 160, 0.4);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(107, 47, 160, 0.1);
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== FOOTER ===== */
#footer {
    background: var(--dark);
    border-top: 1px solid rgba(107, 47, 160, 0.3);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--white);
}

.footer-logo .logo-om {
    font-size: 1.8rem;
    color: var(--gold);
    font-family: var(--font-hindi);
    text-shadow: 0 0 15px var(--gold);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(107, 47, 160, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    border: 1px solid rgba(107, 47, 160, 0.3);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i { color: var(--primary-light); width: 16px; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.footer-bottom a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ===== FAB ===== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 500;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.fab:hover {
    transform: scale(1.15);
    color: white;
}

.fab-youtube { background: var(--youtube); }
.fab-vip { background: linear-gradient(135deg, var(--gold), #B8860B); color: var(--dark); }
.fab-vip:hover { color: var(--dark); }

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 499;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== VIP PAGE SPECIFIC ===== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #2D1B4E 0%, var(--dark) 70%);
    padding: 120px 20px 60px;
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-section {
    background: var(--dark2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark);
    border: 1px solid rgba(107, 47, 160, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-primary);
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.price-original {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
    display: block;
    margin-top: 3px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .featured-video-wrapper {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    section { padding: 60px 0; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(13, 13, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(107, 47, 160, 0.3);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        width: 100%;
    }

    .hero-stats {
        gap: 25px;
    }

    .vip-features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .vip-features-grid {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .fab-container {
        bottom: 20px;
        right: 15px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== SUCCESS/ERROR MESSAGES ===== */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 10px 0;
    font-size: 0.9rem;
    display: none;
}

.alert.show { display: block; }
.alert-success { background: rgba(46, 213, 115, 0.15); border: 1px solid #2ED573; color: #2ED573; }
.alert-error { background: rgba(255, 71, 87, 0.15); border: 1px solid #FF4757; color: #FF4757; }

/* ============================================================
   AUTO-SYNC FEED STYLES
   ============================================================ */

/* ===== LIVE BANNER (top of page) ===== */
.live-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-banner.show {
    transform: translateY(0);
}

.live-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.live-banner-title {
    color: white;
    font-size: 0.9rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-label {
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.live-watch-btn {
    background: white;
    color: #CC0000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.live-watch-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #CC0000;
    transform: scale(1.05);
}

/* ===== LIVE DOT ANIMATION ===== */
.live-dot-anim {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: livePulse 1.2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    50% { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* ===== LIVE NOW TAG ===== */
.live-now-tag {
    background: linear-gradient(135deg, #FF0000, #CC0000) !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.live-now-tag .live-dot-anim { background: white; }

/* ===== LIVE PLAYER SECTION ===== */
.live-player-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: center;
}

.live-frame {
    border-color: rgba(255, 0, 0, 0.5) !important;
}

.live-frame::before {
    background: linear-gradient(135deg, #FF0000, #CC0000, #FF0000) !important;
}

.live-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: #FF4444;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.live-status-row .live-dot-anim { background: #FF4444; }

.live-player-info h2 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.live-player-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.live-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.live-viewers-label {
    color: #FF4444;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== SYNC INFO ROW ===== */
.sync-row {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sync-time {
    color: rgba(212,175,55,0.7);
    font-size: 0.8rem;
}

.live-mini-badge {
    background: #FF0000;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.1em;
    animation: liveBadgePulse 2s ease-in-out infinite;
}

@keyframes liveBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(255,0,0,0); }
}

/* ===== FEED GRID ===== */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}

/* ===== FEED CARD ===== */
.feed-card {
    background: var(--dark2);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(107, 47, 160, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.feed-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feed-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dark3);
}

.feed-card.short-card .feed-card-thumb {
    aspect-ratio: 9/16;
    max-height: 300px;
}

.feed-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.feed-card:hover .feed-card-thumb img {
    transform: scale(1.05);
}

.feed-card-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 2rem;
    color: white;
}

.feed-card:hover .feed-card-play {
    opacity: 1;
}

.video-type-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-video {
    background: rgba(255, 0, 0, 0.85);
    color: white;
}

.badge-short {
    background: rgba(212, 175, 55, 0.9);
    color: var(--dark);
}

.feed-card-body {
    padding: 14px;
}

.feed-card-title {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.feed-card:hover .feed-card-title {
    color: var(--gold);
}

.feed-card-meta {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-wrap: wrap;
}

.feed-card-meta i { margin-right: 3px; color: var(--primary-light); }

/* ===== SHORTS SCROLL ROW ===== */
.shorts-scroll-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.shorts-scroll-row::-webkit-scrollbar { height: 4px; }
.shorts-scroll-row::-webkit-scrollbar-track { background: var(--dark2); }
.shorts-scroll-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

.short-item {
    flex: 0 0 160px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: var(--transition);
}

.short-item:hover { transform: translateY(-4px); }

.short-item-thumb {
    position: relative;
    width: 160px;
    height: 284px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark2);
    border: 1px solid rgba(107,47,160,0.2);
    margin-bottom: 8px;
}

.short-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.short-item:hover .short-item-thumb img {
    transform: scale(1.05);
}

.short-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--gold);
    font-size: 2rem;
}

.short-item:hover .short-play { opacity: 1; }

.short-title {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

/* ===== ALL PLATFORMS WIDGETS ===== */
#all-platforms { background: var(--dark2); }

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

.platform-slot {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(107,47,160,0.2);
    background: var(--dark);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.platform-loading p { margin-top: 1rem; font-size: 0.9rem; }

/* Platform Widget */
.platform-widget {
    width: 100%;
}

.platform-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(107,47,160,0.2);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.platform-widget-header i { font-size: 1.2rem; }
.fb-widget .platform-widget-header i { color: #1877F2; }
.ig-widget .platform-widget-header i { color: #E1306C; }

.widget-visit {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.widget-visit:hover { color: var(--gold); }

.fb-embed-frame, .ig-feed-frame {
    padding: 0;
    overflow: hidden;
}

.ig-profile-link {
    display: block;
    text-decoration: none;
}

.ig-profile-preview {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(45deg, rgba(240,148,51,0.1), rgba(220,39,67,0.1), rgba(188,24,136,0.1));
    cursor: pointer;
    transition: var(--transition);
}

.ig-profile-preview:hover {
    background: linear-gradient(45deg, rgba(240,148,51,0.2), rgba(220,39,67,0.2), rgba(188,24,136,0.2));
}

.ig-icon-big {
    font-size: 3rem;
    color: #E1306C;
    margin-bottom: 1rem;
}

.ig-profile-preview p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ig-profile-preview span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.platform-widget .btn {
    display: flex;
    margin: 15px 20px 20px;
    justify-content: center;
}

.btn-facebook {
    background: #1877F2;
    color: white;
}

.btn-facebook:hover {
    background: #0d63d7;
    color: white;
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.btn-instagram:hover {
    color: white;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ===== VIDEO MODAL ===== */
.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.yt-modal.open {
    opacity: 1;
    visibility: visible;
}

.yt-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
}

.yt-modal-content {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 900px;
    background: var(--dark2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(107,47,160,0.4);
    transform: scale(0.92);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.yt-modal.open .yt-modal-content {
    transform: scale(1);
}

.yt-modal-content.short-modal {
    max-width: 420px;
}

.yt-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.yt-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.yt-modal-frame iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.short-modal .yt-modal-frame iframe {
    aspect-ratio: 9/16;
}

.yt-modal-actions {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    flex-wrap: wrap;
}

/* ===== SKELETON LOADING ===== */
.skeleton-card {
    pointer-events: none;
}

.skeleton-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(90deg, var(--dark3) 25%, rgba(107,47,160,0.1) 50%, var(--dark3) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--dark3) 25%, rgba(107,47,160,0.1) 50%, var(--dark3) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-line.short { width: 60%; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== FEED EMPTY STATE ===== */
.feed-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.feed-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: rgba(107,47,160,0.4);
}

.feed-empty p { font-size: 0.95rem; }

/* ===== SHORTS SECTION BACKGROUND ===== */
#shorts-section { background: var(--dark2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .live-player-wrapper {
        grid-template-columns: 1fr;
    }
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feed-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    .live-banner-inner {
        padding: 8px 15px;
    }
    .live-banner-title {
        display: none;
    }
    .yt-modal-content {
        width: 95vw;
    }
    .live-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .feed-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .feed-card-title { font-size: 0.8rem; }
    .short-item { flex: 0 0 130px; }
    .short-item-thumb { width: 130px; height: 231px; }
}
