:root {
    --primary: #028e4f;
    --secondary: #ffffff;
    --tertiary: #ff0000;
    --bg-dark: #050505;
    --bg-card: rgba(18, 18, 18, 0.6);
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode {
    --bg-dark: #f0f2f5;
    --bg-card: rgba(255, 255, 255, 0.7);
    --secondary: #1a1a1a;
    --text-muted: #555555;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

body {
    background-color: transparent;
    color: var(--secondary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism Animated Background */
.glass-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: rotateOrb 20s linear infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00ff88 0%, transparent 70%);
    bottom: -50px;
    right: -100px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--tertiary) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-duration: 35s;
}

@keyframes rotateOrb {
    0% {
        transform: rotate(0deg) translate(150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translate(150px) rotate(-360deg);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--bg-dark);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    opacity: 0.95;
}

body.light-mode header {
    background: rgba(255, 255, 255, 0.8);
}

.theme-toggle {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary);
    color: black;
    transform: rotate(30deg);
}

.lang-toggle {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
    font-weight: 700;
}

.lang-toggle:hover {
    background: var(--primary);
    color: black;
}


.logo {
    height: 60px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

.has-dropdown {
    position: relative;
    padding-bottom: 10px; /* Bridge the gap between header and menu */
    margin-bottom: -10px;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
}

.has-dropdown i {
    transition: transform 0.3s ease;
}

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

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

.dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    min-width: 220px;
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 0.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background: var(--glass);
    padding-left: 2rem;
}

body.light-mode .dropdown-menu {
    background: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.live-btn {
    background: var(--tertiary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transition: var(--transition);
}

.live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateZ(0) scale(1.01);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    opacity: 0.8;
    transition: opacity 0.6s ease;
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.80) 100%
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.3) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    z-index: 0;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-title.changing {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    filter: blur(10px);
}

/* News Ticker/Carousel */
.news-ticker-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: black;
    color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 15px 0 25px rgba(0, 0, 0, 0.5);
}

.news-ticker {
    display: inline-block;
    animation: ticker 120s linear infinite;
}


.news-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ticker-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Latest News Section */
.section {
    padding: 8rem 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-title span {
    color: var(--primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


.news-card {
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(15px);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--primary) 25%,
        transparent 50%,
        var(--tertiary) 75%,
        transparent 100%
    );
    animation: rotateNeon 5s linear infinite;
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.news-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-card);
    border-radius: 18px;
    z-index: 2;
}

.news-card > * {
    position: relative;
    z-index: 3;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(2, 142, 79, 0.25);
}

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

/* Breaking News Card Neon Border */
.breaking-news-card {
    position: relative;
    overflow: hidden;
    border: none !important;
}

.breaking-news-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--primary) 25%,
        transparent 50%,
        var(--tertiary) 75%,
        transparent 100%
    );
    animation: rotateNeon 6s linear infinite;
    z-index: 1;
    opacity: 0.6;
}

.breaking-news-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-card);
    border-radius: 18px;
    z-index: 2;
}

.breaking-news-card > * {
    position: relative;
    z-index: 3;
}

.news-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    display: block;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.news-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.read-more {
    background: var(--primary);
    color: #050505 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 142, 79, 0.3);
    width: fit-content;
    margin-top: auto;
}


.read-more:hover {
    background: white;
    color: #050505 !important;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 142, 79, 0.4);
}

@keyframes bounceContinuous {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}


/* Live Player Floating */
.player-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-bottom: 2px solid var(--primary);
}

body.light-mode .player-bar {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.now-playing-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 63, 0.3);
}

.now-playing-img.playing {
    animation: rotate 10s linear infinite;
}

.now-playing-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.now-playing-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--secondary);
}

.now-playing-text p {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.now-playing-text p::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary);
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.play-btn {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 255, 63, 0.4);
}

.stream-logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hero Section */
.play-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 255, 63, 0.6);
}

.play-btn i {
    transition: transform 0.3s ease;
}

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

.volume-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 1rem;
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-progress {
    width: 80%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    position: relative;
    transition: width 0.1s ease;
}

.volume-progress::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

/* Footer */
footer {
    padding: 5rem 5% 10rem;
    background: #080808;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.footer-about .logo {
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--primary);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Specific Grids */
.about-grid, .belt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-container {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: white;
    padding: 4rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.belt-grid {
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul { gap: 1rem; }
    nav ul li a { font-size: 0.85rem; }
    .header-actions { gap: 1rem; }
}

@media (max-width: 768px) {
    header { 
        padding: 1rem 5%; 
        justify-content: space-between;
    }
    
    .menu-toggle { display: block; order: -1; }
    
    .logo { height: 45px; }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.9);
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 6rem 2rem;
        transition: var(--transition);
        box-shadow: 20px 0 50px rgba(0,0,0,0.5);
        border-right: 1px solid var(--glass-border);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .header-actions {
        gap: 0.6rem;
    }

    .header-actions .live-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .header-actions .theme-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .header-actions i.fa-magnifying-glass {
        display: inline-block;
        font-size: 0.95rem;
        padding: 5px;
    }

    .header-actions .lang-toggle {
        min-width: 32px;
        height: 32px;
        font-size: 0.75rem;
        padding: 0 5px;
    }

    .news-grid {
        gap: 1rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .hero-title { font-size: 3rem; }
    .hero-content p { font-size: 1rem; }

    .section { padding: 4rem 5%; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

    .about-grid, .belt-grid, .staff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-img-container {
        height: 300px;
        padding: 2rem;
    }
    
    /* Player Bar Mobile */
    .player-bar { 
        width: 95%; 
        padding: 0.5rem 1rem; 
        bottom: 1rem;
        border-radius: 20px;
        gap: 0.5rem;
    }

    .now-playing-img { width: 45px; height: 45px; }
    .now-playing-text h4 { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .now-playing-text p { font-size: 0.7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .play-btn { width: 45px; height: 45px; }
    .play-btn i { font-size: 1rem; }

    .volume-container, .player-actions { display: none; }
    
    /* Footer Mobile */
    .footer-content { gap: 2rem; }
    footer { padding-bottom: 8rem; }
    /* Mobile Dropdown Styling */
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        display: none; /* Hidden by default on mobile */
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.mobile-active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 1rem 0 0 1rem;
    }

    .dropdown-menu li a {
        font-size: 1.1rem !important;
        padding: 0.5rem 0;
        opacity: 0.8;
    }

    .dropdown-menu li a:hover {
        padding-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .header-actions .live-btn span { display: none; }
    .player-bar { padding: 0.5rem; }
    .now-playing-text { max-width: 120px; }
    .now-playing-text h4 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.8rem; }
    .news-grid { grid-template-columns: 1fr; }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.search-container-modal {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.search-container-modal input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
    color: white;
    font-size: 2.5rem;
    padding: 1rem 0;
    outline: none;
    font-weight: 700;
}

.search-container-modal input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.close-search {
    position: absolute;
    top: -60px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-search:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.search-hint {
    color: var(--text-muted);
    margin-top: 1rem;
    display: block;
}

body.light-mode .search-overlay {
    background: rgba(255, 255, 255, 0.98);
}

body.light-mode .search-container-modal input {
    color: #1a1a1a;
}

body.light-mode .search-container-modal input::placeholder {
    color: #ccc;
}

body.light-mode .close-search {
    color: #1a1a1a;
}

/* Impact Stats Section */
.impact-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 142, 79, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(2, 142, 79, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(2, 142, 79, 0.3));
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .stat-number { font-size: 2.2rem; }
}

@media (max-width: 1024px) {
    .stat-number { font-size: 2rem; }
    .stat-item { padding: 2rem 1rem; min-height: 220px; }
    .stats-grid { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .stat-number { font-size: 2.8rem; }
    .impact-section { padding: 5rem 5%; }
    .stats-grid { gap: 1.5rem; }
}

.stat-icon.facebook {
    color: #1877F2;
    filter: drop-shadow(0 0 10px rgba(24, 119, 242, 0.3));
}

.stat-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(220, 39, 67, 0.3));
}

.stat-icon.tiktok {
    color: #ff0050;
    filter: drop-shadow(0 0 10px rgba(255, 0, 80, 0.3));
}

/* ==========================================================================
   Swiper Premium Slider & Multi-Section Carousel Custom Styles
   ========================================================================== */

/* Swiper Container Spacing */
.news-swiper {
    position: relative;
    padding: 20px 5px 3.5rem 5px !important;
    overflow: visible !important; /* Allow card scale out bounds to avoid cutting off */
    clip-path: inset(-20px -20px -50px -20px); /* Restrict clips outside active area */
}

/* Skeleton Loading Animation */
.skeleton-shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: shimmerLoading 1.5s infinite linear;
}

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

/* Glowing Custom Navigation Buttons */
.news-swiper-prev,
.news-swiper-next {
    width: 48px !important;
    height: 48px !important;
    background: rgba(10, 10, 10, 0.75) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 50% !important;
    color: white !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 10 !important;
}

.news-swiper-prev::after,
.news-swiper-next::after {
    font-size: 1.15rem !important;
    font-weight: 900 !important;
}

.news-swiper-prev {
    left: -20px !important;
}

.news-swiper-next {
    right: -20px !important;
}

/* Hover Effects on Arrows with Neon Glows */
.news-swiper-prev:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(2, 142, 79, 0.6) !important;
    transform: scale(1.15) !important;
}

.news-swiper-next:hover {
    background: var(--tertiary) !important;
    border-color: var(--tertiary) !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6) !important;
    transform: scale(1.15) !important;
}

/* Hide navigation arrows on smaller touch screens to avoid overlap */
@media (max-width: 768px) {
    .news-swiper-prev,
    .news-swiper-next {
        display: none !important;
    }
}

/* Glowing Dynamic Pagination Bullets */
.news-swiper-pagination {
    bottom: 5px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.news-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 28px !important;
    border-radius: 5px !important;
    box-shadow: 0 0 10px rgba(2, 142, 79, 0.8), 0 0 5px rgba(2, 142, 79, 0.4) !important;
}

/* Red Active bullets for even-numbered category sections for a premium alternating look! */
.news-carousel-section:nth-of-type(even) .news-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--tertiary) !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 5px rgba(255, 0, 0, 0.4) !important;
}

/* Smooth GPU-Accelerated Transition Transformations */
.swiper-slide {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    will-change: transform;
}

/* active state styling when centering (if used) */
.news-swiper .swiper-slide-active article.news-card {
    border-color: rgba(2, 142, 79, 0.4) !important;
}

/* News Cards Hover Enhancements */
.news-card {
    will-change: transform, box-shadow;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* Skeleton Placeholder elements for lazy loading */
.news-img {
    background: rgba(255, 255, 255, 0.02);
}

.news-img img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.news-card:hover .news-img img {
    transform: scale(1.06) rotate(0.5deg);
}

/* Facebook Video Embed Container */
.fb-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}

.fb-video-container.portrait {
    padding-bottom: 125%; /* Portrait aspect ratio for vertical video streams */
}

.fb-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}




