/* ===========================================
   ACID ESPORTS - ULTRA DARK PREMIUM DESIGN
   Multi-Color Accents with Gradient UI
   =========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Green Theme */
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --primary-subtle: rgba(0, 255, 136, 0.08);
    
    /* Accent Colors for variety */
    --accent-cyan: #00d4ff;
    --accent-purple: #a855f7;
    --accent-orange: #ff6b35;
    --accent-pink: #ff3d7f;
    --accent-yellow: #ffd93d;
    
    /* Ultra Dark Background */
    --bg-primary: #050505;
    --bg-secondary: #080808;
    --bg-card: #0c0c0c;
    --bg-card-hover: #121212;
    --bg-elevated: #141414;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #555555;
    
    /* Borders */
    --border-color: #1a1a1a;
    --border-glow: rgba(0, 255, 136, 0.2);
    
    /* Gradients */
    --gradient-header: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(5, 5, 5, 0.95) 100%);
    --gradient-footer: linear-gradient(180deg, var(--bg-secondary) 0%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    --gradient-card: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===========================================
   PAGE LOADER - Premium Dark
   =========================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--primary-glow));
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.loader-subtext {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.loader-bar {
    width: 250px;
    height: 4px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.1s ease;
}

/* ===========================================
   SCROLLING TICKER - Colorful
   =========================================== */
.ticker-wrapper {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(0, 0, 0, 0.95) 100%);
    overflow: hidden;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.ticker-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-cyan), var(--accent-purple), transparent);
    opacity: 0.5;
}

.ticker {
    display: flex;
    animation: ticker 40s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    padding-right: 60px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-item .emoji {
    font-size: 1rem;
}

.ticker-item.green { color: var(--primary); }
.ticker-item.cyan { color: var(--accent-cyan); }
.ticker-item.purple { color: var(--accent-purple); }
.ticker-item.orange { color: var(--accent-orange); }
.ticker-item.white { color: var(--text-primary); }
.ticker-item.gray { color: var(--text-secondary); }

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

/* ===========================================
   HEADER - Gradient Glass
   =========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-header);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

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

/* Logo with Name */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 44px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo:hover img {
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
}

.nav-link.active::after {
    display: none;
}

/* Header Social Icons */
.header-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.header-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.header-social:hover {
    color: var(--primary);
    background: rgba(0, 255, 136, 0.08);
}

.header-social svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Mobile Sidebar */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #000 100%);
    border-left: 1px solid var(--border-color);
    padding: 100px 30px 30px;
    transition: var(--transition);
    z-index: 999;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 998;
    opacity: 0;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
}

@media (max-width: 950px) {
    .nav-links, .header-socials {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-sidebar {
        display: block;
    }
    
    .mobile-sidebar .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .sidebar-overlay {
        display: block;
        pointer-events: none;
    }
    
    .sidebar-overlay.active {
        pointer-events: all;
    }
}

/* ===========================================
   HERO SECTION - Banner Background
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 30px 80px;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(5, 5, 5, 0.8) 50%, var(--bg-primary) 100%),
        url('/logos/Acid%20Banner.png') center top / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Hero Container Box */
.hero-container {
    max-width: 1000px;
    width: 100%;
    padding: 50px 60px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent-purple));
}

.hero-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 50px var(--primary-glow));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title .line1 {
    display: block;
    color: var(--text-primary);
}

.hero-title .line2 {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #e8e8e8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    color: var(--bg-primary);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

.scroll-indicator::before,
.scroll-indicator::after {
    content: '—';
    color: var(--text-muted);
}

/* ===========================================
   STATS SECTION - With Images & Animation
   =========================================== */
.stats-section {
    padding: 90px 30px;
    background: var(--bg-primary);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 255, 136, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

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

/* Stat card image backgrounds */
.stat-card .stat-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.stat-card:hover .stat-bg {
    opacity: 0.1;
    transform: scale(1.05);
}

.stat-card:nth-child(1) { --stat-accent: var(--accent-cyan); }
.stat-card:nth-child(2) { --stat-accent: var(--primary); }
.stat-card:nth-child(3) { --stat-accent: var(--accent-purple); }
.stat-card:nth-child(4) { --stat-accent: var(--accent-orange); }

.stat-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: var(--radius-md);
    color: var(--stat-accent, var(--text-secondary));
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--stat-accent, var(--primary)), transparent);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ===========================================
   SECTION HEADERS
   =========================================== */
.section {
    padding: 100px 30px;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===========================================
   FEATURED TEAMS
   =========================================== */
.teams-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
    transform: scaleX(0);
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

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

.team-logo-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(25, 25, 25, 0.9) 100%);
    border-radius: var(--radius-md);
    padding: 15px;
    transition: var(--transition);
}

.team-card:hover .team-logo-wrapper {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.team-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.team-card:hover .team-logo {
    transform: scale(1.1);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.team-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.team-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-link svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.team-card:hover .team-link svg {
    transform: translateX(4px);
}

/* More Teams Button */
.more-teams {
    text-align: center;
    margin-top: 50px;
}

/* ===========================================
   FEATURES SECTION
   =========================================== */
.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) .feature-icon { color: var(--accent-cyan); }
.feature-card:nth-child(2) .feature-icon { color: var(--primary); }
.feature-card:nth-child(3) .feature-icon { color: var(--accent-purple); }

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    padding: 100px 30px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ===========================================
   FOOTER - Gradient Dark
   =========================================== */
footer {
    background: var(--gradient-footer);
    border-top: 1px solid var(--border-color);
    padding: 55px 30px 25px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-cyan), var(--accent-purple), transparent);
    opacity: 0.5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    height: 42px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    border-color: var(--primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.developer-credit {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.developer-credit p {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.developer-name {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.developer-credit:hover .developer-name {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

@media (max-width: 600px) {
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================================
   PAGE HEADER
   =========================================== */
.page-header {
    padding: 150px 30px 60px;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        var(--bg-primary);
}

.teams-controls {
    max-width: 700px;
    margin: 30px auto 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.sort-buttons {
    display: flex;
    gap: 8px;
}

.sort-btn {
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sort-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.sort-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    border-color: var(--primary);
    color: var(--bg-primary);
}

/* ===========================================
   TEAM DETAIL PAGE
   =========================================== */
.team-detail {
    padding: 150px 30px 80px;
}

.team-detail-header {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 40px;
    transition: var(--transition-fast);
}

.back-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.back-btn svg {
    width: 16px;
    height: 16px;
}

.team-detail-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 25px;
}

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

.team-detail-name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.team-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.team-badge.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-color: rgba(0, 255, 136, 0.2);
    color: var(--primary);
}

.roster-section {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 50px;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roster-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.roster-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.roster-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-green);
}

.roster-coming {
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 40px;
}

/* Roster Division */
.roster-division {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.roster-division:last-child {
    margin-bottom: 0;
}

.division-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.division-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-green);
    margin: 0;
    padding: 12px 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.player-count {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Roster Grid */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

/* Player Card */
.player-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9), rgba(30, 30, 40, 0.9));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.15);
}

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

.player-avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: 50%;
    color: var(--bg-primary);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.player-avatar svg {
    width: 24px;
    height: 24px;
}

.player-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    flex: 1;
}

.player-card:hover .player-name {
    color: var(--accent-green);
}

.no-players {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    grid-column: 1 / -1;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

/* Player count badge */
.roster-division::after {
    content: '';
}

/* Staggered animation for player cards */
.player-card {
    animation: playerCardIn 0.5s ease forwards;
    opacity: 0;
}

.player-card:nth-child(1) { animation-delay: 0.05s; }
.player-card:nth-child(2) { animation-delay: 0.1s; }
.player-card:nth-child(3) { animation-delay: 0.15s; }
.player-card:nth-child(4) { animation-delay: 0.2s; }
.player-card:nth-child(5) { animation-delay: 0.25s; }
.player-card:nth-child(6) { animation-delay: 0.3s; }
.player-card:nth-child(7) { animation-delay: 0.35s; }
.player-card:nth-child(8) { animation-delay: 0.4s; }
.player-card:nth-child(9) { animation-delay: 0.45s; }
.player-card:nth-child(10) { animation-delay: 0.5s; }
.player-card:nth-child(11) { animation-delay: 0.55s; }
.player-card:nth-child(12) { animation-delay: 0.6s; }

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

/* Responsive */
@media (max-width: 768px) {
    .roster-section {
        padding: 30px 20px;
        margin: 30px 15px 0;
    }
    
    .roster-division {
        padding: 20px 15px;
    }
    
    .roster-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .roster-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .division-name {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .player-card {
        padding: 15px 18px;
    }
    
    .player-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

/* ===========================================
   NEW TEAM PAGE DESIGN - Pro Esports Style
   =========================================== */

.team-page {
    background: var(--bg-primary);
}

/* Team Hero Section */
.team-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 30px 80px;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.9) 70%, var(--bg-primary) 100%),
        radial-gradient(ellipse at 50% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 60%);
}

.team-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
}

/* Team Logo Showcase */
.team-logo-showcase {
    position: relative;
    flex-shrink: 0;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    animation: logoGlowPulse 3s ease-in-out infinite;
}

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

.team-logo-showcase img {
    position: relative;
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

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

/* Team Info */
.team-info {
    flex: 1;
}

.team-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-green);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
}

.team-name-hero {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-green) 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 500px;
}

/* Team Stats */
.team-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Gaming Strip */
.gaming-strip {
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-purple), var(--accent-green));
    background-size: 300% 100%;
    animation: stripGradient 10s linear infinite;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

@keyframes stripGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.strip-track {
    display: flex;
    width: max-content;
    animation: stripScrollInfinite 25s linear infinite;
}

.strip-content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    padding-right: 30px;
}

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

.strip-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.strip-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Roster Container */
.roster-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: 50%;
    color: var(--bg-primary);
}

.title-icon svg {
    width: 26px;
    height: 26px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Division Section */
.division-section {
    margin-bottom: 60px;
}

.division-banner {
    position: relative;
    height: 140px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.division-banner:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 20px 50px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 212, 255, 0.2);
}

.division-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.division-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.5);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.division-banner:hover .division-bg-img {
    transform: scale(1.1);
    filter: brightness(0.4) saturate(1.8);
}

.division-banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.4) 0%, 
        rgba(0, 212, 255, 0.3) 25%,
        rgba(138, 43, 226, 0.3) 50%,
        rgba(255, 107, 107, 0.3) 75%,
        rgba(255, 215, 0, 0.3) 100%);
    z-index: 1;
    animation: bannerGradientShift 8s ease infinite;
}

@keyframes bannerGradientShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.division-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.3) 30%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.division-banner-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 25px;
}

.division-team-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 30px rgba(0, 255, 136, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

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

.division-info {
    flex: 1;
}

.division-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 700;
}

.division-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 255, 136, 0.3);
}

.division-player-count {
    text-align: center;
    padding: 18px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.division-player-count::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: countShine 3s infinite;
}

@keyframes countShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.count-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
}

.count-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Pro Player Card */
.player-card-pro {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(30, 30, 45, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: playerCardFadeIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes playerCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.player-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.player-card-pro:hover .player-card-bg {
    opacity: 1;
}

/* Team Logo Backdrop for Roster Cards */
.player-card-backdrop {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 150px;
    height: 150px;
    transform: translate(-20%, -50%) scale(0.8) rotate(5deg);
    opacity: 0.1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    pointer-events: none;
}

.player-card-backdrop::before {
    content: '';
    position: absolute;
    inset: -25px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.3) 0%,
        rgba(0, 212, 255, 0.25) 30%,
        rgba(168, 85, 247, 0.15) 60%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(20px);
}

.player-card-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.4) saturate(1.8) contrast(1.2);
    mix-blend-mode: screen;
}

.player-card-pro:hover .player-card-backdrop {
    transform: translate(-30%, -50%) scale(1.2) rotate(18deg);
    opacity: 0.22;
}

.player-card-pro:hover .player-card-backdrop::before {
    opacity: 1;
}

.player-card-pro:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 255, 136, 0.2);
}

.player-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
}

.player-team-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

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

.player-card-pro:hover .player-team-logo {
    opacity: 0.7;
}

.player-avatar-pro {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: 50%;
    color: var(--bg-primary);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.player-avatar-pro svg {
    width: 28px;
    height: 28px;
}

.player-avatar-pro .player-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.player-card-pro:hover .player-avatar-pro {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.player-details {
    flex: 1;
    min-width: 0;
}

.player-name-pro {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.player-card-pro:hover .player-name-pro {
    color: var(--accent-green);
}

.player-role {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 4px;
}

.player-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.player-card-pro:hover .player-card-accent {
    transform: scaleX(1);
}

/* No Players Card */
.no-players-card {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.no-players-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
}

.no-players-icon svg {
    width: 40px;
    height: 40px;
}

.no-players-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.no-players-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.join-team-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: 50px;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.join-team-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.join-team-btn svg {
    width: 16px;
    height: 16px;
}

/* Team CTA Section */
.team-cta {
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, var(--bg-primary) 0%, transparent 30%, transparent 70%, var(--bg-primary) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.2) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

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

.btn-lg {
    padding: 16px 35px;
    font-size: 1rem;
}

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

.btn-outline:hover {
    background: var(--accent-green);
    color: var(--bg-primary);
}

/* Division Badge in Team Badges */
.division-badge {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--accent-blue);
}

/* Responsive Team Page */
@media (max-width: 900px) {
    .team-intro {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .team-logo-showcase img {
        width: 180px;
        height: 180px;
    }
    
    .team-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .team-description {
        text-align: center;
    }
    
    .team-stats {
        justify-content: center;
    }
    
    .division-banner {
        height: auto;
        min-height: 120px;
    }
    
    .division-banner-content {
        flex-wrap: wrap;
        padding: 20px;
        gap: 15px;
    }
    
    .division-team-logo {
        width: 50px;
        height: 50px;
    }
    
    .division-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .team-hero {
        padding: 100px 20px 60px;
        min-height: 60vh;
    }
    
    .team-logo-showcase img {
        width: 140px;
        height: 140px;
    }
    
    .team-name-hero {
        font-size: 2.5rem;
    }
    
    .team-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .roster-container {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
    
    .player-card-content {
        padding: 15px 20px;
    }
    
    .player-avatar-pro {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .division-player-count {
        display: none;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   DEVELOPMENT PAGE - Like Partners
   =========================================== */
.dev-page {
    min-height: 100vh;
    padding: 100px 30px;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
        var(--bg-primary);
}

.dev-hero {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    padding-top: 60px;
}

.dev-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 3rem;
    animation: devPulse 3s ease-in-out infinite;
}

@keyframes devPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 255, 136, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0, 255, 136, 0.2); }
}

.dev-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.dev-features {
    max-width: 1000px;
    margin: 0 auto;
}

/* Development Cards */
.dev-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.dev-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
    opacity: 0;
    transition: var(--transition);
}

.dev-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

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

.dev-card:nth-child(1) .dev-card-icon { color: var(--accent-cyan); }
.dev-card:nth-child(2) .dev-card-icon { color: var(--primary); }
.dev-card:nth-child(3) .dev-card-icon { color: var(--accent-purple); }

.dev-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.dev-card-icon svg {
    width: 28px;
    height: 28px;
}

.dev-card:hover .dev-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.dev-card-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.dev-card-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 800px) {
    .dev-cards {
        grid-template-columns: 1fr;
    }
}

/* Dev CTA */
.dev-cta {
    text-align: center;
    padding: 50px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.dev-cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

.dev-cta-text {
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   404 PAGE
   =========================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        var(--bg-primary);
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.error-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal - Fast */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   NO RESULTS
   =========================================== */
#noResults {
    display: none;
    text-align: center;
    padding: 50px 30px;
    color: var(--text-muted);
}

#noResults h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* ===========================================
   PARTNERS PAGE ENHANCEMENTS
   =========================================== */
.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.partner-slot {
    background: var(--gradient-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
}

.partner-slot:hover {
    border-style: solid;
    border-color: rgba(0, 255, 136, 0.2);
}

.partner-slot-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   CUSTOM SCROLLBAR
   =========================================== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===========================================
   GLOWING ANIMATIONS
   =========================================== */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.4); }
}

.glow {
    animation: glow 3s ease-in-out infinite;
}

/* ===========================================
   TWITCH INTEGRATION STYLES
   =========================================== */

/* Twitch Purple Accent */
:root {
    --twitch-purple: #9146FF;
    --twitch-purple-dark: #7c3aed;
    --twitch-purple-glow: rgba(145, 70, 255, 0.4);
}

/* Live Indicator (Header - Small) */
.live-indicator-wrapper {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.live-indicator-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

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

.live-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-indicator .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all 0.3s ease;
}

.live-indicator.live .status-dot {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes viewerPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.live-indicator .status-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.live-indicator.live .status-text {
    color: #ff0000;
}

.live-indicator .channel-name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-primary);
}

.live-indicator-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(145, 70, 255, 0.1);
    border: 1px solid var(--twitch-purple);
    border-radius: var(--radius-sm);
    color: var(--twitch-purple);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.live-indicator-link:hover {
    background: var(--twitch-purple);
    color: white;
}

.live-indicator-link svg {
    width: 14px;
    height: 14px;
}

/* Twitch Icon */
.twitch-icon {
    width: 16px;
    height: 16px;
    color: var(--twitch-purple);
}

/* Purple Button */
.btn-purple {
    background: linear-gradient(135deg, var(--twitch-purple) 0%, var(--twitch-purple-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px var(--twitch-purple-glow);
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--twitch-purple-glow);
}

.btn-purple svg {
    width: 18px;
    height: 18px;
}

/* Twitch Badge */
.twitch-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--twitch-purple) 0%, var(--twitch-purple-dark) 100%);
    color: white !important;
}

.twitch-badge svg {
    width: 14px;
    height: 14px;
}

/* ===========================================
   STREAMS PAGE STYLES
   =========================================== */
.streams-main {
    padding-top: 75px;
}

.streams-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 30px 60px;
    background: 
        linear-gradient(180deg, rgba(145, 70, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(145, 70, 255, 0.15) 0%, transparent 60%),
        var(--bg-primary);
    position: relative;
}

.streams-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--twitch-purple), transparent);
    opacity: 0.5;
}

.streams-hero-content {
    max-width: 800px;
}

.streams-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(145, 70, 255, 0.1);
    border: 1px solid var(--twitch-purple);
    border-radius: var(--radius-xl);
    color: var(--twitch-purple);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.streams-hero-badge svg {
    width: 16px;
    height: 16px;
}

.streams-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.streams-hero-title span {
    background: linear-gradient(135deg, var(--twitch-purple) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.streams-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Large Status Indicator */
.stream-status-large {
    margin-bottom: 20px;
}

.stream-status-large .status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.stream-status-large .status-indicator.live {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}

.stream-status-large .status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.stream-status-large .status-indicator.live .status-dot {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    animation: livePulse 1.5s ease-in-out infinite;
}

.stream-status-large .status-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.stream-status-large .status-indicator.live .status-text {
    color: #ff0000;
}

/* Notify Button */
.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.notify-btn.enabled {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
}

.notify-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   STREAM SECTION
   =========================================== */
.stream-section {
    padding: 40px 30px 80px;
    background: var(--bg-secondary);
}

.stream-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Stream Tabs */
.stream-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    background: var(--bg-card);
    padding: 5px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    width: fit-content;
}

.stream-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stream-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.stream-tab.active {
    background: linear-gradient(135deg, var(--twitch-purple) 0%, var(--primary) 100%);
    color: white;
}

.stream-tab svg {
    width: 16px;
    height: 16px;
}

/* Stream Content */
.stream-content {
    display: grid;
    gap: 20px;
    transition: all 0.3s ease;
}

.stream-content.with-chat {
    grid-template-columns: 1fr 400px;
}

.stream-content.chat-only {
    max-width: 450px;
}

@media (max-width: 1000px) {
    .stream-content.with-chat {
        grid-template-columns: 1fr;
    }
}

/* Stream Player Wrapper */
.stream-player-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stream-player {
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
}

.stream-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Stream Offline State */
.stream-offline {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at center, rgba(145, 70, 255, 0.1) 0%, transparent 60%),
        var(--bg-card);
}

.offline-content {
    text-align: center;
    padding: 40px;
}

.offline-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    opacity: 0.5;
    filter: grayscale(50%);
}

.offline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* Stream Info Bar */
.stream-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-color);
}

.stream-info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stream-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--twitch-purple);
}

.stream-meta h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.stream-meta p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.stream-info-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff0000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.viewer-count svg {
    width: 18px;
    height: 18px;
}

.watch-on-twitch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--twitch-purple);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.watch-on-twitch:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--twitch-purple-glow);
}

.watch-on-twitch svg {
    width: 16px;
    height: 16px;
}

/* Chat Wrapper */
.stream-chat-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 700px;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(145, 70, 255, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.chat-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--twitch-purple);
}

.stream-chat-wrapper iframe {
    width: 100%;
    height: calc(100% - 55px);
    border: none;
}

/* ===========================================
   PAST STREAMS / VODs SECTION
   =========================================== */
.past-streams-section {
    padding: 80px 30px;
    background: var(--bg-primary);
}

.vods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.vods-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--twitch-purple);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

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

/* VOD Card */
.vod-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vod-card:hover {
    transform: translateY(-5px);
    border-color: var(--twitch-purple);
    box-shadow: 0 10px 40px rgba(145, 70, 255, 0.2);
}

.vod-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.vod-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vod-card:hover .vod-thumbnail img {
    transform: scale(1.05);
}

.vod-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
}

.vod-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(145, 70, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vod-card:hover .vod-play-overlay {
    opacity: 1;
}

.vod-play-overlay svg {
    width: 50px;
    height: 50px;
    color: white;
}

.vod-info {
    padding: 18px;
}

.vod-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vod-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.vod-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* No VODs State */
.no-vods {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
}

.no-vods svg {
    width: 60px;
    height: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-vods h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.no-vods p {
    color: var(--text-secondary);
}

/* Load More Button */
.vods-load-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ===========================================
   SCHEDULE SECTION
   =========================================== */
.schedule-section {
    padding: 80px 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.schedule-container {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.schedule-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.schedule-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===========================================
   HOME PAGE STREAM SECTION
   =========================================== */
.home-stream-section {
    padding: 80px 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.home-stream-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-stream-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .home-stream-content {
        grid-template-columns: 1fr;
    }
}

.home-stream-player-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.home-stream-player {
    aspect-ratio: 16/9;
    background: #000;
}

.home-stream-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.home-stream-offline {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at center, rgba(145, 70, 255, 0.1) 0%, transparent 60%),
        var(--bg-card);
    text-align: center;
}

.home-stream-offline .offline-content {
    padding: 30px;
}

.home-chat-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.home-chat-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Home VODs */
.home-vods-section {
    margin-top: 40px;
}

.home-vods-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.home-vods-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-vods-header h3 svg {
    width: 20px;
    height: 20px;
    color: var(--twitch-purple);
}

.home-vods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .home-vods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-vods-grid {
        grid-template-columns: 1fr;
    }
}

.no-vods-home {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

/* View More Streams Button */
.view-more-streams {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* ===========================================
   TOAST NOTIFICATIONS
   =========================================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.toast-success {
    border-color: var(--primary);
}

.toast-notification.toast-error {
    border-color: #ff4444;
}

.toast-notification.toast-info {
    border-color: var(--accent-cyan);
}

.toast-notification span {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: var(--text-primary);
}

/* ===========================================
   NAV LIVE DOT INDICATOR
   =========================================== */
.nav-link {
    position: relative;
}

.nav-live-dot {
    width: 6px;
    height: 6px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
    transition: all 0.3s ease;
}

.nav-live-dot.live {
    background: #ff0000;
    box-shadow: 0 0 6px #ff0000;
    animation: livePulse 1.5s ease-in-out infinite;
}

/* Header Twitch Social Icon */
.header-social.twitch-social:hover {
    color: var(--twitch-purple);
    background: rgba(145, 70, 255, 0.1);
}

/* ===========================================
   PLAYER DIRECTORY PAGE
   =========================================== */
.players-page {
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Players Hero */
.players-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 30px 80px;
}

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

.players-hero-bg .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
}

.players-hero-bg .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.4) 0%, 
        rgba(10, 10, 15, 0.7) 50%,
        var(--bg-primary) 100%);
}

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

@keyframes gridMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px; }
}

.players-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge .badge-icon {
    font-size: 1.2rem;
}

.hero-badge span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-green);
}

.players-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.players-title .title-line {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--text-muted);
}

.players-title .title-main {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #fff, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.players-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
}

.hero-stat .stat-text {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--accent-green), transparent);
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    filter: blur(80px);
    opacity: 0.3;
}

.hero-decor-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.hero-decor-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
}

/* Filter Section */
.players-filter-section {
    padding: 40px 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.02), transparent);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(30, 30, 45, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 30px 40px;
}

.filter-header {
    margin-bottom: 25px;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.filter-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.filter-controls {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 2;
}

.player-search-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 50px;
}

.player-search-input::placeholder {
    color: var(--text-muted);
}

.player-search-input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.filter-select {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.filter-stats {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.filter-stats span {
    font-weight: 700;
    color: var(--accent-green);
}

/* Gaming Showcase */
.gaming-showcase {
    padding: 40px 30px;
}

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

.showcase-item {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.5) saturate(1.2);
}

.showcase-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7) saturate(1.5);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.showcase-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-green);
}

/* Players Grid */
.players-grid-section {
    padding: 40px 30px 80px;
}

.players-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Player Directory Card */
.player-directory-card {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(30, 30, 45, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    animation: cardFadeUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

@keyframes cardFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pdc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%, rgba(0, 212, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.player-directory-card:hover .pdc-bg {
    opacity: 1;
}

.pdc-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-blue));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.player-directory-card:hover .pdc-accent {
    transform: scaleY(1);
}

/* Team Logo Backdrop - Visible by Default, Expands on Hover */
.pdc-team-backdrop {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 180px;
    height: 180px;
    transform: translate(-20%, -50%) scale(0.8) rotate(5deg);
    opacity: 0.12;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    pointer-events: none;
}

.pdc-team-backdrop::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.4) 0%,
        rgba(0, 212, 255, 0.3) 30%,
        rgba(168, 85, 247, 0.2) 60%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(25px);
}

.pdc-team-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.4) saturate(1.8) contrast(1.2);
    mix-blend-mode: screen;
}

.player-directory-card:hover .pdc-team-backdrop {
    transform: translate(-30%, -50%) scale(1.3) rotate(20deg);
    opacity: 0.28;
}

.player-directory-card:hover .pdc-team-backdrop::before {
    opacity: 1;
}

.player-directory-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 255, 136, 0.15);
}

.pdc-team-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.pdc-team-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player-directory-card:hover .pdc-team-badge {
    opacity: 0.8;
}

.pdc-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
}

.pdc-avatar {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pdc-avatar svg {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
}

.pdc-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.player-directory-card:hover .pdc-avatar {
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.pdc-info {
    flex: 1;
    min-width: 0;
}

.pdc-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

.pdc-team {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-green);
    margin-bottom: 3px;
}

.pdc-division {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdc-hover-arrow {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.pdc-hover-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.player-directory-card:hover .pdc-hover-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 30px;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.no-results-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
}

.no-results h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-muted);
}

/* Players CTA */
.players-cta {
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
}

/* ===========================================
   PLAYER DETAIL PAGE
   =========================================== */
.player-detail-page {
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Player Hero */
.player-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 30px 60px;
}

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

.player-hero-bg .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) saturate(1.3);
}

.player-hero-bg .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.5) 0%, 
        rgba(10, 10, 15, 0.8) 50%,
        var(--bg-primary) 100%);
}

.player-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.player-profile {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

/* Player Avatar Section */
.player-avatar-section {
    position: relative;
    flex-shrink: 0;
}

.avatar-frame {
    position: relative;
    width: 180px;
    height: 180px;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.avatar-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: ringRotate 8s linear infinite;
}

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

.avatar-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(30, 30, 45, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-inner svg {
    width: 70px;
    height: 70px;
    color: var(--accent-green);
}

.avatar-inner .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-logo-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: 50%;
    padding: 8px;
    border: 3px solid var(--accent-green);
}

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

/* Player Info Section */
.player-info-section {
    flex: 1;
}

.player-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.player-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-tag.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    color: var(--accent-green);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

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

.player-tag.game-tag {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--accent-blue);
}

.player-name-large {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    line-height: 1.1;
}

.player-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.player-team-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.player-team-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
}

.player-team-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.player-team-link span {
    font-weight: 600;
    font-size: 0.95rem;
}

.meta-divider {
    color: var(--text-muted);
}

.player-division-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-purple);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 85%; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 8s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(20px, -30px); opacity: 0.8; }
    50% { transform: translate(-10px, -50px); opacity: 0.5; }
    75% { transform: translate(30px, -20px); opacity: 0.7; }
}

/* Player Details Section */
.player-details-section {
    padding: 60px 30px;
}

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

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(30, 30, 45, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: all 0.4s ease;
}

.info-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon svg {
    width: 22px;
    height: 22px;
}

.info-card-icon.team-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    color: var(--accent-green);
}

.info-card-icon.division-icon {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
    color: var(--accent-purple);
}

.info-card-icon.game-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
    color: var(--accent-blue);
}

.info-card-icon.status-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    color: var(--accent-green);
}

.info-card-header h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 0;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.team-info-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    margin: -10px;
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.team-info-link:hover {
    background: rgba(0, 255, 136, 0.1);
}

.team-info-link img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.team-info-link .team-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.team-info-link .team-org {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.division-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-purple);
}

.division-desc,
.game-desc,
.status-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.game-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-weight: 600;
    color: var(--accent-green);
    width: fit-content;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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

/* Roles Section */
.roles-section {
    margin-bottom: 50px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.section-heading svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.roles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.role-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(30, 30, 45, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    animation: badgeFadeIn 0.5s ease forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

@keyframes badgeFadeIn {
    to {
        opacity: 1;
    }
}

.role-badge:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
}

.role-icon {
    font-size: 1.2rem;
}

.role-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Player Showcase */
.player-showcase {
    margin-bottom: 50px;
}

.showcase-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.showcase-img-wrapper {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(1.3);
    transition: all 0.5s ease;
}

.showcase-img-wrapper:hover img {
    filter: brightness(0.7) saturate(1.5);
    transform: scale(1.05);
}

.showcase-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent, rgba(0, 212, 255, 0.1));
}

/* Player Team Section */
.player-team-section {
    position: relative;
    padding: 80px 30px;
    text-align: center;
    overflow: hidden;
}

.team-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) saturate(1.3);
}

.team-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-primary), rgba(10, 10, 15, 0.7), var(--bg-primary));
}

.team-section-content {
    position: relative;
    z-index: 1;
}

.team-section-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.team-section-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 5px;
}

/* Player CTA */
.player-cta {
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
    .filter-controls {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .player-profile {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .player-tags {
        justify-content: center;
    }
    
    .player-meta {
        justify-content: center;
    }
    
    .showcase-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 2px;
    }
    
    .avatar-frame {
        width: 140px;
        height: 140px;
    }
    
    .team-logo-badge {
        width: 50px;
        height: 50px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   PLAYER DIRECTORY - ENHANCED STYLES
   =========================================== */

/* Quick Filter Buttons */
.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.quick-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.quick-filter-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    color: var(--primary);
}

.quick-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    border-color: transparent;
    color: var(--bg-primary);
}

.quick-filter-btn.free-agent.active {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
}

.qf-icon {
    font-size: 1rem;
}

.filter-refresh-info {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Player Card Status Badges - Fixed at Bottom */
.pdc-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pdc-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pdc-badge-fa {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    color: white;
    animation: pulseFa 2s ease-in-out infinite;
}

@keyframes pulseFa {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px 3px rgba(255, 107, 53, 0.3); }
}

.pdc-badge-rostered {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    color: var(--bg-primary);
}

.pdc-badge-staff {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
}

.pdc-role-count {
    font-size: 0.7rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-top: 5px;
}

/* Player Detail Page - Enhanced Role Categories */
.all-roles-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.roles-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.role-category {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.role-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent-purple));
}

.role-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.role-category-icon {
    font-size: 1.5rem;
}

.role-category-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.role-category-icon-svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.role-category-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    flex: 1;
}

.role-category-count {
    background: var(--primary);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
}

.role-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
}

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

.role-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.role-item-icon {
    font-size: 1.2rem;
}

.role-item-icon-img {
    width: 28px;
    height: 28px;
    min-width: 28px;
    object-fit: contain;
    filter: brightness(1.2);
}

.role-item-icon-svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: var(--primary);
}

.role-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.role-item-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.role-item-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Role Type Specific Colors */
.role-team {
    border-left: 3px solid var(--primary);
}

.role-staff {
    border-left: 3px solid var(--accent-purple);
}

.role-content {
    border-left: 3px solid var(--accent-pink);
}

.role-special {
    border-left: 3px solid var(--accent-yellow);
}

.role-rank {
    border-left: 3px solid var(--accent-cyan);
}

.role-region {
    border-left: 3px solid var(--accent-orange);
}

.role-platform {
    border-left: 3px solid #00d9ff;
}

.role-gamemode {
    border-left: 3px solid #ff6b9d;
}

.role-other {
    border-left: 3px solid var(--text-muted);
}

/* No Roles Message */
.no-roles-message {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
}

.no-roles-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-roles-message p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Free Agent Notice */
.free-agent-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 61, 127, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.fa-notice-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease infinite;
}

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

.fa-notice-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.fa-notice-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Player Tag Variations */
.player-tag.free-agent-tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 61, 127, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: var(--accent-orange);
}

.player-tag.applicant-tag {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--accent-purple);
}

.player-tag.community-tag {
    background: rgba(100, 100, 100, 0.15);
    border: 1px solid rgba(100, 100, 100, 0.3);
    color: var(--text-secondary);
}

.tag-dot.pulse {
    animation: pulseDot 1.5s ease-in-out infinite;
}

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

/* Status Badge Variations */
.status-badge.free-agent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 61, 127, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: var(--accent-orange);
}

.status-badge.applicant {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-purple);
}

.status-badge.community {
    background: rgba(100, 100, 100, 0.15);
    color: var(--text-secondary);
}

/* Role Count Large Display */
.role-count-large {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.role-count-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.player-role-count {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Info Card Icon for Roles */
.info-card-icon.roles-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    color: var(--accent-cyan);
}

/* No Team Info Style */
.no-team-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.no-team-info .team-name {
    font-weight: 700;
    color: var(--text-primary);
}

.no-team-info .team-org {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .quick-filters {
        justify-content: center;
    }
    
    .role-category-grid {
        grid-template-columns: 1fr;
    }
    
    .free-agent-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .pdc-status-badges {
        flex-direction: column;
    }
}
