:root {
    --primary: #c42727;
    --primary-glow: rgba(196, 39, 39, 0.45);
    --bg-darker: #06070a;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.65);

    /* Frosted Crystal 5.0 (Steel Frame Tuning) */
    --glass-bg: rgba(10, 11, 16, 0.78);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(65px);

    /* Global Layout Metrics */
    --container-max: 1400px;
    --radius-lg: 35px;
    --radius-md: 22px;
    --transition: cubic-bezier(0.19, 1, 0.22, 1);

    /* GTA V Signature Style */
    --gta-font: 'Anton', sans-serif;
    --gta-outline: 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 4px 4px 15px rgba(0, 0, 0, 0.8);
}

/* --- CORE RESET: PREVENTING OVERFLOW CATASTROPHE --- */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background-color: transparent;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    cursor: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* ELITE SHIELDING: Disable global text selection */
}

/* Allow selection for players on informative parts */
#rules,
#guide,
.news-ticker-container,
.copyright {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    /* Prevent easy image scraping */
}

/* --- GTA CUSTOM CURSOR --- */
a,
button,
.btn,
.media-btn,
.video-poster-link,
.playlist-item-small,
.nav-links a,
.social-card {
    cursor: url('../assets/cursor_finger.webp') 16 0, pointer !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- SEAMLESS BACKGROUND ENGINE --- */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 110%;
    height: 110vh;
    z-index: -1;
    transform: translate(-5%, -5%);
    transition: transform 0.1s linear;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    animation: floatingOrb 30s infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(82, 107, 255, 0.25);
    bottom: -100px;
    right: 10%;
}

@keyframes floatingOrb {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(150px, 150px);
    }
}

/* --- EFFECT OVERLAYS --- */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.015) 51%, transparent 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
}

.scan-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.1;
    z-index: 9998;
    animation: scanBar 12s infinite linear;
}

@keyframes scanBar {
    0% {
        top: -5%;
    }

    100% {
        top: 105%;
    }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9000;
}

/* --- ELITE NAVBAR: ABSOLUTE CENTERING FIX --- */
.navbar {
    position: fixed;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    padding: 15px 50px;
    width: max-content;
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(45px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    z-index: 10000;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 900;
    -webkit-user-select: none;
    user-select: none;
}

.navbar .logo img {
    height: 38px;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.menu-toggle {
    display: none;
    cursor: url('../assets/cursor_finger.webp') 16 0, pointer !important;
    font-size: 1.8rem;
    color: white;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- STRUCTURAL CONTAINERS --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 50px;
}

section {
    width: 100%;
    padding: 140px 0;
    background: transparent;
    position: relative;
}

/* --- HERO SECTION: ALIGNMENT REPAIR --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 900px;
}

.hero-text h1 {
    font-family: var(--gta-font);
    font-size: 7.5rem;
    font-weight: 400;
    /* Anton is naturally bold */
    line-height: 0.85;
    letter-spacing: -2px;
    margin-bottom: 25px;
    text-shadow: var(--gta-outline);
    font-style: italic;
}

.hero-text h1 span {
    color: var(--primary);
    text-shadow: var(--gta-outline);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

/* --- GRID SYSTEM: COLUMN STABILITY FIX --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* --- PREMIUM COMPONENTS --- */
.glass-card,
.premium-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--transition), box-shadow 0.5s;
    transform-style: preserve-3d;
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glass-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    display: block;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.glass-card h3,
.glass-card h4,
.glass-card h5 {
    font-family: var(--gta-font);
    text-shadow: var(--gta-outline);
    font-style: italic;
    margin-bottom: 15px;
}

/* STATUS DASHBOARD BAR (Centered) */
.live-status-bar {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 45px;
    border-radius: 100px;
    backdrop-filter: blur(25px);
    width: fit-content;
    margin: 0 auto;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* SOCIAL CARDS (Sober Style) */
.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s var(--transition);
    color: var(--primary);
}

.social-card h6 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.social-card span {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-card.discord:hover {
    border-color: #5865F2;
}

.social-card.youtube:hover {
    border-color: #FF0000;
}

.social-card.facebook:hover {
    border-color: #1877F2;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff00;
    animation: pulseOnline 2s infinite;
}

@keyframes pulseOnline {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.status-item .value {
    font-weight: 1000;
    font-size: 1.2rem;
}

.status-item .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: 2px;
    font-weight: 800;
}

/* --- TYPOGRAPHY DETAILS --- */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-family: var(--gta-font);
    font-size: 5.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: var(--gta-outline);
    font-style: italic;
}

.section-header h2 span {
    color: var(--primary);
    text-shadow: var(--gta-outline);
}

.subtitle {
    font-family: var(--gta-font);
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    text-shadow: 2px 2px 0 #000;
}

/* --- BUTTONS --- */
.btn {
    padding: 22px 60px;
    border-radius: 100px;
    font-weight: 950;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s var(--transition);
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 20px 45px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    filter: brightness(1.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* --- INTERACTIVE --- */
#cursor-aura {
    position: fixed;
    width: 450px;
    height: 450px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(196, 39, 39, 0.3) 0%, transparent 70%);
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

/* --- REVEAL EFFECTS --- */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: 1.4s var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#presentation-video {
    padding: 100px 0;
}

.video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border: 10px solid var(--glass-bg);
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.9);
    background: black;
    position: relative;
    cursor: pointer;
}

.video-poster-link {
    display: flex;
    position: relative;
    width: 100%;
    height: 600px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
    z-index: 1;
}

.video-poster-link:hover .poster-img {
    transform: scale(1.08);
}

.play-overlay {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: 0.5s var(--transition);
}

.play-overlay i {
    font-size: 4rem;
    background: var(--primary);
    color: white;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 50px var(--primary-glow);
    padding-left: 10px;
    transition: 0.3s;
}

.play-overlay span {
    font-family: var(--gta-font);
    font-size: 1.8rem;
    color: white;
    text-shadow: var(--gta-outline);
    letter-spacing: 3px;
}

.video-poster-link:hover .play-overlay {
    transform: scale(1.15);
}

.video-poster-link:hover .play-overlay i {
    background: white;
    color: var(--primary);
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.4);
}

.video-poster-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: 0.5s;
}

.video-poster-link:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

/* --- COMMUNITY GRID FIX --- */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 50px;
    align-items: stretch;
}

/* --- TICKER FINISH --- */
.news-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(5, 6, 8, 0.98);
    backdrop-filter: blur(35px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    z-index: 10002;
}

.ticker-label {
    background: var(--primary);
    height: 100%;
    padding: 0 45px;
    font-weight: 1000;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

/* --- GANG LIST & ILLEGAL STYLING --- */
.gang-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gang-list>div {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.gang-list>div:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

/* --- TECH SECTION SPECIALS --- */
#tech {
    background: linear-gradient(to bottom, transparent, rgba(196, 39, 39, 0.05), transparent);
}

#tech h4 {
    font-family: var(--gta-font);
    text-shadow: var(--gta-outline);
    font-style: italic;
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 4.5rem;
    }
}

/* --- ULTRA-PREMIUM TACTICAL HUB PLAYER --- */
.full-music-player.mini-player {
    max-width: 850px;
    margin: 40px auto 80px auto;
    background: linear-gradient(145deg, #0f0f12 0%, #050506 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.9),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 97% 100%, 3% 100%, 0 85%);
    /* Tactical Angled Corners */
}

/* Red Neon Top Bar */
.full-music-player.mini-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    z-index: 5;
}

.mini-player .player-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

/* Recessed Track Screen */
.track-info {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

#current-track-name {
    font-family: var(--gta-font);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(196, 39, 39, 0.4);
    letter-spacing: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

/* CSS Visualizer Bars */
.visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
    min-width: 40px;
}

.v-bar {
    width: 4px;
    background: var(--primary);
    height: 10%;
    border-radius: 2px;
    transition: 0.2s;
}

.playing .v-bar {
    animation: barAnim 0.8s infinite ease-in-out;
}

@keyframes barAnim {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 90%;
    }
}

.v-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.v-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.v-bar:nth-child(4) {
    animation-delay: 0.3s;
}

.v-bar:nth-child(5) {
    animation-delay: 0.4s;
}

/* Tactical Controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.volume-control i {
    font-size: 0.8rem;
    color: var(--primary);
}

#volumeSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
    transition: 0.2s;
}

#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.media-btn {
    width: 50px;
    height: 50px;
    background: #151518;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #666;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.media-btn:hover {
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(196, 39, 39, 0.2);
    transform: translateY(-2px);
}

.media-btn.play-btn {
    width: 75px;
    height: 75px;
    background: var(--primary);
    color: white;
    font-size: 1.8rem;
    border: none;
    box-shadow: 0 10px 30px rgba(196, 39, 39, 0.4);
}

.media-btn.play-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 45px rgba(196, 39, 39, 0.6);
}

@media (max-width: 900px) {
    .full-music-player.mini-player {
        margin: 20px;
        padding: 25px;
    }

    .player-main-row {
        flex-direction: column;
        gap: 25px;
    }

    #current-track-name {
        font-size: 1.4rem;
    }

    .track-info {
        width: 100%;
    }

    .volume-control {
        display: none;
    }

    /* Hide volume on mobile for space */
}

/* --- FOOTER & REFERENCE LINKS --- */
.footer-links-row {
    padding: 80px 0 140px 0;
    /* Huge bottom padding to stay above fixed ticker */
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.links-wrapper a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    transition: 0.4s var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-icon {
    height: 22px;
    width: auto;
    transition: 0.4s var(--transition);
}

/* Brand Specific Glows */
.links-wrapper a:nth-child(1) .footer-icon {
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.5));
}

/* FiveM Orange */
.links-wrapper a:nth-child(3) .footer-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

/* Rockstar Yellow */
.links-wrapper a:nth-child(5) .footer-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* QBox */

.links-wrapper a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.links-wrapper a:hover .footer-icon {
    transform: scale(1.2) rotate(5deg);
    filter: brightness(1.2) drop-shadow(0 0 15px currentColor);
}

.sep {
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.6rem;
}

.copyright {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

/* --- CSP Extracted Styles --- */
.lsu-style-1 {
    font-size: 0.7rem;
    margin: 0;
}

.lsu-style-2 {
    margin: 0;
    font-size: 0.7rem;
}

.lsu-style-3 {
    font-weight: 950;
    color: white;
}

.lsu-style-4 {
    font-size: 0.75rem;
}

.lsu-style-5 {
    width: 4px;
    height: 40px;
    background: #8B00FF;
}

.lsu-style-6 {
    background: rgba(196, 39, 39, 0.05);
}

.lsu-style-7 {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.lsu-style-8 {
    font-size: 1.5rem;
}

.lsu-style-9 {
    margin-top: 25px;
    padding: 15px;
    background: rgba(196, 39, 39, 0.1);
    border-left: 3px solid var(--primary);
}

.lsu-style-10 {
    gap: 20px;
}

.lsu-style-11 {
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.lsu-style-12 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.lsu-style-13 {
    font-size: 0.6rem;
    color: var(--primary);
}

.lsu-style-14 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.lsu-style-15 {
    color: var(--primary);
    margin-bottom: 20px;
}

.lsu-style-16 {
    letter-spacing: 5px;
    font-size: 0.6rem;
}

.lsu-style-17 {
    text-align: center;
    border-bottom: 4px solid #ffffff;
}

.lsu-style-18 {
    padding: 25px;
}

.lsu-style-19 {
    color: var(--primary);
    font-size: 1.8rem;
}

.lsu-style-20 {
    padding: 70px;
}

.lsu-style-21 {
    display: grid;
    gap: 12px;
}

.lsu-style-22 {
    margin-top: 40px;
}

.lsu-style-23 {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.lsu-style-24 {
    margin-left: auto;
}

.lsu-style-25 {
    gap: 15px;
}

.lsu-style-26 {
    margin: 0;
}

.lsu-style-27 {
    margin-bottom: 50px;
}

.lsu-style-28 {
    font-size: 0.7rem;
}

.lsu-style-29 {
    margin-bottom: 15px;
}

.lsu-style-30 {
    width: 4px;
    height: 40px;
    background: #2E8B57;
}

.lsu-style-31 {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.lsu-style-32 {
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.lsu-style-33 {
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.lsu-style-34 {
    color: #666;
    font-size: 0.8rem;
    margin-left: 8px;
}

.lsu-style-35 {
    font-size: 0.75rem;
    color: white;
}

.lsu-style-36 {
    color: var(--primary);
    margin-top: 15px;
    display: block;
    font-weight: 900;
}

.lsu-style-37 {
    font-size: 0.55rem;
    letter-spacing: 5px;
}

.lsu-style-38 {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lsu-style-39 {
    width: 4px;
    height: 40px;
    background: #FFFFFF;
}

.lsu-style-40 {
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.lsu-style-41 {
    text-align: center;
    margin-top: 25px;
    opacity: 0.5;
}

.lsu-style-42 {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.lsu-style-43 {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 10px;
}

.lsu-style-44 {
    margin-top: 60px;
    margin-bottom: 40px;
}

.lsu-style-45 {
    color: white;
}

.lsu-style-46 {
    color: var(--primary);
    margin-right: 8px;
}

.lsu-style-47 {
    margin-bottom: 45px;
    color: var(--text-dim);
}

.lsu-style-48 {
    margin-bottom: 25px;
}

.lsu-style-49 {
    margin-top: 20px;
    color: var(--text-dim);
}

.lsu-style-50 {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.lsu-style-51 {
    margin-top: 100px;
    margin-bottom: 50px;
}

.lsu-style-52 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lsu-style-53 {
    color: white;
    margin-bottom: 25px;
}

.lsu-style-54 {
    color: white;
    font-weight: 800;
}

.lsu-style-55 {
    width: 4px;
    height: 40px;
    background: #FFD700;
}

/* --- RESPONSIVE OVERHAUL (MOBILE & TABLET) --- */
@media (max-width: 1024px) {
    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .community-grid {
        grid-template-columns: 1fr !important;
    }
    .navbar {
        width: 90%;
        padding: 15px 30px;
        gap: 20px;
        overflow-x: auto;
        white-space: nowrap;
        background: rgba(10, 11, 16, 0.98);
    }
    .nav-links {
        flex-wrap: nowrap;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links { -ms-overflow-style: none; scrollbar-width: none; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .container { padding: 0 20px; }
    
    .grid-4, .grid-3, .grid-2 { 
        grid-template-columns: 1fr !important; 
    }
    
    .hero-text h1 { font-size: 3.5rem; line-height: 0.9; }
    .section-header h2 { font-size: 3rem; }
    .section-header { margin-bottom: 50px; }
    
    .hero-btns { flex-direction: column; width: 100%; gap: 15px; margin-bottom: 25px; }
    .hero-btns .btn { width: 100%; text-align: center; }

    .live-status-bar { flex-direction: column; gap: 15px; padding: 25px; width: 100%; align-items: center; }
    .lsu-style-42 { width: 100%; height: 1px; }

    .navbar {
        position: fixed !important;
        top: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 30px) !important;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 20px;
        padding: 15px 25px;
        background: rgba(10, 11, 16, 0.95);
        z-index: 10000;
        overflow: visible !important;
        white-space: normal !important;
    }
    .navbar .logo {
        flex-direction: row;
        gap: 10px;
        width: auto;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 11, 16, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(40px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .navbar .logo img {
        height: 25px;
    }
    .navbar .logo span {
        font-size: 0.9rem;
    }
    
    .play-overlay span { font-size: 1.2rem; text-align: center; }
    .play-overlay i { width: 70px; height: 70px; font-size: 2.5rem; }
    .video-poster-link { height: 350px; }
    
    #cursor-aura { display: none !important; }
}