/* ===== ROOT VARIABLES ===== */
:root {
    --primary-red: #C8102E;
    --primary-red-dark: #9B0D24;
    --primary-red-light: #E8354F;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #222222;
    --gradient-red: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,1) 100%);
    --shadow-red: 0 0 30px rgba(200, 16, 46, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --font-primary: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) var(--bg-darker);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

/* ===== COD BACKGROUND EFFECTS ===== */
.cod-bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(200, 16, 46, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 16, 46, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.scanlines-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    opacity: 0.3;
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(200, 16, 46, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(200, 16, 46, 0.8);
    animation: float-particle 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 20s; }
.particle:nth-child(6) { left: 75%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 85%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 95%; animation-delay: 0.5s; animation-duration: 15s; }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* ===== CUSTOM CROSSHAIR CURSOR ===== */
body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: crosshair;
}

a, button, .btn, .nav-link, .player-card, .staff-card, .creator-card, .team-badge, .join-card {
    cursor: crosshair;
}

a:hover, button:hover, .btn:hover {
    cursor: crosshair;
}

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

ul {
    list-style: none;
}

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

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

/* ===== PRELOADER - TACTICAL SCORESTREAK STYLE ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

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

/* Scanlines Effect */
.preloader-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 10;
}

/* Vignette Effect */
.preloader-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

/* HUD Corners */
.hud-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-red);
    opacity: 0.6;
    z-index: 15;
}

.hud-corner-tl {
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
    animation: cornerPulse 2s ease-in-out infinite;
}

.hud-corner-tr {
    top: 30px;
    right: 30px;
    border-left: none;
    border-bottom: none;
    animation: cornerPulse 2s ease-in-out infinite 0.5s;
}

.hud-corner-bl {
    bottom: 30px;
    left: 30px;
    border-right: none;
    border-top: none;
    animation: cornerPulse 2s ease-in-out infinite 1s;
}

.hud-corner-br {
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
    animation: cornerPulse 2s ease-in-out infinite 1.5s;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Main Loader Container */
.loader {
    text-align: center;
    position: relative;
    z-index: 20;
}

/* Tactical Ring */
.tactical-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(200, 16, 46, 0.3);
    border-radius: 50%;
    animation: ringRotate 4s linear infinite;
}

.tactical-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed rgba(200, 16, 46, 0.2);
    border-radius: 50%;
    animation: ringRotate 6s linear infinite reverse;
}

.tactical-ring::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 2px;
    height: 15px;
    background: var(--primary-red);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-red);
}

.tactical-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 1px solid rgba(200, 16, 46, 0.2);
    border-radius: 50%;
}

.tactical-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.tactical-crosshair::before,
.tactical-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(200, 16, 46, 0.4);
}

.tactical-crosshair::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.tactical-crosshair::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Loader Logo */
.loader-logo {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 25;
    animation: logoGlitch 3s ease-in-out infinite;
}

@keyframes logoGlitch {
    0%, 90%, 100% { 
        transform: translate(0); 
        filter: none;
    }
    91% { 
        transform: translate(-2px, 1px); 
        filter: hue-rotate(90deg);
    }
    92% { 
        transform: translate(2px, -1px); 
        filter: hue-rotate(-90deg);
    }
    93% { 
        transform: translate(-1px, 2px); 
        filter: none;
    }
    94% { 
        transform: translate(1px, -2px); 
        filter: hue-rotate(90deg);
    }
    95% { 
        transform: translate(0); 
        filter: none;
    }
}

/* Status Text */
.loader-status {
    margin-top: 40px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--primary-red);
    text-transform: uppercase;
}

.status-label {
    animation: textFlicker 0.1s ease-in-out infinite alternate;
}

.status-dots {
    animation: dotsAnimate 1.5s steps(4, end) infinite;
}

@keyframes textFlicker {
    0% { opacity: 0.9; }
    100% { opacity: 1; }
}

@keyframes dotsAnimate {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: '...'; }
}

/* Progress Bar */
.loader-progress {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.progress-track {
    width: 200px;
    height: 4px;
    background: rgba(200, 16, 46, 0.2);
    border: 1px solid rgba(200, 16, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        rgba(200, 16, 46, 0.1) 8px,
        rgba(200, 16, 46, 0.1) 9px
    );
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    box-shadow: 0 0 15px var(--primary-red), 0 0 30px rgba(200, 16, 46, 0.5);
    animation: progressLoad 2s ease-out forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 2px;
    height: 10px;
    background: white;
    box-shadow: 0 0 10px white;
}

@keyframes progressLoad {
    0% { width: 0%; }
    20% { width: 25%; }
    40% { width: 45%; }
    60% { width: 70%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

.progress-percent {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: var(--primary-red);
    min-width: 40px;
    text-align: left;
}

/* Intel Text */
.loader-intel {
    margin-top: 25px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.intel-prefix {
    color: var(--primary-red);
    margin-right: 8px;
}

.intel-text {
    animation: intelScramble 0.5s steps(1) infinite;
}

/* Bottom HUD */
.hud-bottom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 20;
}

.hud-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.hud-item i {
    color: var(--primary-red);
    font-size: 0.8rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.hud-item:nth-child(2) i {
    animation-delay: 0.3s;
}

.hud-item:nth-child(3) i {
    animation-delay: 0.6s;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

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

.nav-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 15px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--text-primary);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.4;
    filter: saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    height: 70%;
    pointer-events: none;
    z-index: 2;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-red);
}

.frame-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.hero-hud {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    height: 70%;
    pointer-events: none;
    z-index: 2;
}

.hud-label {
    position: absolute;
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    opacity: 0.8;
}

.hud-left {
    top: -25px;
    left: 0;
}

.hud-right {
    top: -25px;
    right: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.hero-content img {
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 12px;
    margin-bottom: 10px;
    color: #FFFFFF;
    text-transform: uppercase;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Call of Duty Style Effect */
.glitch {
    position: relative;
    animation: cod-flicker 8s infinite;
}

.glitch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    animation: cod-shine 4s ease-in-out infinite;
    pointer-events: none;
}

.glitch::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    opacity: 0.5;
}

@keyframes cod-shine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        transform: translateX(100%);
        opacity: 0;
    }
    31%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes cod-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 18px;
    color: #C8102E;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.hero-hashtag {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    display: none;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 16, 46, 0.03) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.about-image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-red);
    opacity: 0.3;
    transform: rotate(5deg);
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.stat:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== STAFF SECTION ===== */
.staff {
    background: var(--bg-darker);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.staff-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), #FFD700);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.staff-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.staff-card:hover::before {
    transform: scaleX(1);
}

.staff-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
}

.staff-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 16, 46, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-normal);
    border-radius: 50%;
}

.staff-image:hover .staff-overlay {
    opacity: 1;
}

.staff-social {
    width: 36px;
    height: 36px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.staff-social:hover {
    background: var(--bg-dark);
    color: var(--text-primary);
    transform: scale(1.1);
}

.staff-card:hover .staff-image {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.4);
}

.staff-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.staff-card:hover .staff-avatar {
    transform: scale(1.1);
}

.staff-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.staff-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.staff-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.staff-real-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.staff-role {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(200, 16, 46, 0.2);
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
}

/* ===== CREATORS SECTION ===== */
.creators {
    background: var(--bg-dark);
}

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

.creator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.creator-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.creator-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.creator-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-normal);
}

.creator-card:hover .creator-avatar {
    transform: scale(1.05);
}

.creator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.9), rgba(255, 215, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-normal);
}

.creator-card:hover .creator-overlay {
    opacity: 1;
}

.creator-social {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    border-radius: 50%;
    color: var(--bg-darker);
    font-size: 1.3rem;
    transition: var(--transition-normal);
}

.creator-social:hover {
    transform: scale(1.15);
    background: #FFD700;
}

.creator-info {
    padding: 25px;
    text-align: center;
}

.creator-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.creator-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.creators-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* ===== ROSTER SECTION ===== */
.teams {
    background: var(--bg-dark);
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.player-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.player-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-normal);
}

.player-card:hover .player-avatar {
    transform: scale(1.05);
}

.player-placeholder {
    width: 120px;
    height: 120px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 16, 46, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.player-card:hover .player-overlay {
    opacity: 1;
}

.player-social {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    border-radius: 50%;
    color: var(--primary-red);
    font-size: 1.3rem;
    transition: var(--transition-normal);
}

.player-social:hover {
    transform: scale(1.1);
}

.player-info {
    padding: 25px;
    text-align: center;
}

.player-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.player-role {
    color: var(--primary-red);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.teams-divider {
    text-align: center;
    margin: 60px 0 40px;
}

.teams-divider h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    display: inline-block;
}

.teams-divider h3::before,
.teams-divider h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: var(--border-color);
}

.teams-divider h3::before {
    right: calc(100% + 20px);
}

.teams-divider h3::after {
    left: calc(100% + 20px);
}

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

.team-badge {
    justify-content: center;
    padding: 18px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
    text-align: center;
}

.team-badge:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.team-badge h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0;
    color: var(--text-primary);
}

.badge-icon {
    display: none;
}

.badge-info {
    display: contents;
}

.badge-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.badge-info a {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.badge-info a:hover {
    text-decoration: underline;
}

.badge-info .team-tag {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(200, 16, 46, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(200, 16, 46, 0.3);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements {
    background: var(--bg-darker);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 40px);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border: 4px solid var(--bg-darker);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 30px;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.timeline-date {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== SPONSORS SECTION ===== */
.sponsors {
    background: var(--bg-darker);
}

.sponsors-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.coming-soon-box {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
    max-width: 600px;
    transition: var(--transition-normal);
}

.coming-soon-box:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-red), #002868);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(200, 16, 46, 0.2);
    }
}

.coming-soon-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #C8102E, #FFFFFF, #002868);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ===== JOIN SECTION ===== */
.join {
    background: var(--bg-dark);
}

.join-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.join-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.join-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.join-card.featured {
    border-color: var(--primary-red);
    position: relative;
    overflow: hidden;
}

.join-card.featured::before {
    content: 'NOW HIRING';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-red);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.join-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    font-size: 2rem;
}

.join-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.join-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.join-requirements {
    text-align: left;
    margin-bottom: 30px;
}

.join-requirements li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.join-requirements li i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.social-link:hover {
    border-color: var(--primary-red);
    transform: translateX(10px);
}

.social-link i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

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

.social-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-handle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-normal);
}

.form-group textarea ~ label {
    top: 20px;
    transform: translateY(0);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background: var(--bg-card);
    padding: 0 8px;
    color: var(--primary-red);
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

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

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hashtag-banner {
    background: var(--gradient-red);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
}

.hashtag-banner span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .stat {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 5px;
    }

    .hero-subtitle {
        letter-spacing: 8px;
    }

    .hero-logo img {
        width: 100px;
        height: 100px;
    }

    .section-title {
        letter-spacing: 1px;
    }

    .contact-form-container {
        padding: 25px;
    }

    .join-card {
        padding: 30px 20px;
    }

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