/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* GCH T1 Unique Premium Color Palette - Emerald & Amber */
    --primary-emerald: #10B981;
    --primary-emerald-dark: #059669;
    --primary-emerald-light: #34D399;
    --accent-amber: #F59E0B;
    --accent-amber-light: #FBBF24;
    --accent-coral: #F97316;
    --accent-coral-light: #FB923C;
    --accent-teal: #14B8A6;
    --accent-teal-light: #5EEAD4;
    
    /* Deep Dark Theme - Rich Blacks */
    --dark-bg: #0A0E1A;
    --darker-bg: #05070F;
    --light-bg: #111827;
    --card-bg: #1F2937;
    --card-bg-hover: #374151;
    --border-color: #374151;
    --border-glow: #10B981;
    
    /* Text Colors */
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --text-accent: #10B981;
    --text-warm: #F59E0B;
    
    /* Legacy compatibility */
    --lol-gold: #F59E0B;
    --lol-gold-light: #FBBF24;
    --lol-blue: #14B8A6;
    --lol-blue-dark: #0D9488;
    --lol-dark: #0A0E1A;
    --lol-darker: #05070F;
    --lol-card: #1F2937;
    --lol-border: #374151;
    
    /* Primary Colors */
    --primary-color: #10B981;
    --secondary-color: #F59E0B;
    --accent-color: #F97316;
    
    /* Unique Gradients */
    --gradient-1: linear-gradient(135deg, #10B981 0%, #14B8A6 50%, #F59E0B 100%);
    --gradient-2: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    --gradient-3: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, #10B981 0%, #14B8A6 30%, #F59E0B 60%, #F97316 100%);
    --gradient-card: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    --gradient-bg: linear-gradient(180deg, #0A0E1A 0%, #111827 50%, #0A0E1A 100%);
    
    /* Premium Shadows */
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 25px 70px rgba(16, 185, 129, 0.3);
    --shadow-emerald: 0 0 40px rgba(16, 185, 129, 0.6), 0 0 80px rgba(16, 185, 129, 0.3);
    --shadow-amber: 0 0 40px rgba(245, 158, 11, 0.6), 0 0 80px rgba(245, 158, 11, 0.3);
    --shadow-coral: 0 0 40px rgba(249, 115, 22, 0.5);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.4);
    --shadow-cyan: 0 0 25px rgba(16, 185, 129, 0.5);
    --shadow-purple: 0 0 25px rgba(20, 184, 166, 0.5);
}

h1, h2, h3, .hero-title, .section-title, .nav-brand h1 {
    font-family: 'Orbitron', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-bg);
    background-image: 
        radial-gradient(ellipse at 10% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.03) 50%, transparent 100%);
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 200%;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(16, 185, 129, 0.02) 2px, rgba(16, 185, 129, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(245, 158, 11, 0.02) 2px, rgba(245, 158, 11, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Floating Action Button - Scroll to Top */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-emerald), 0 0 30px rgba(16, 185, 129, 0.5);
    cursor: pointer;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-emerald);
    font-size: 1.8rem;
    color: var(--darker-bg);
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.fab.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.fab::before {
    content: '↑';
    position: absolute;
}

.fab:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-emerald), 0 0 50px rgba(16, 185, 129, 0.8);
}

@media (max-width: 768px) {
    .fab {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}


/* Navigation - Asymmetric Design */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, var(--primary-emerald) 20%, var(--accent-amber) 50%, var(--primary-emerald) 80%, transparent 100%) 1;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), inset 0 -1px 0 rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow-x: hidden;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.navbar.scrolled::after {
    transform: scaleX(1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 1rem;
    flex-wrap: nowrap;
}

.nav-brand {
    position: relative;
    padding-left: 20px;
    flex-shrink: 0;
    min-width: fit-content;
}

.nav-brand::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: var(--shadow-emerald);
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.nav-brand .subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: block;
    margin-top: -5px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--primary-emerald);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login, .btn-logout {
    background: var(--gradient-1);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--darker-bg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-login:hover, .btn-logout:hover {
    box-shadow: var(--shadow-emerald), 0 0 30px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px) scale(1.05);
}

.user-info {
    color: var(--primary-emerald);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-emerald);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-emerald);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
    animation: fadeIn 1s ease;
}

/* Fallback background if video doesn't load */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 155, 60, 0.3) 0%, rgba(10, 20, 40, 0.9) 50%, rgba(10, 203, 230, 0.3) 100%),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1920&h=1080&fit=crop') center/cover;
    z-index: 0;
    opacity: 0.6;
}

.hero-video-container:has(video)::before {
    display: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.8) 0%, rgba(16, 185, 129, 0.2) 30%, rgba(245, 158, 11, 0.2) 70%, rgba(249, 115, 22, 0.15) 100%);
    z-index: 1;
}

/* LoL Words Video - Blurred Background */
.hero-lol-words-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-lol-words-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(1) contrast(1.2) saturate(1.4);
    transform: scale(1.15);
    opacity: 0.8;
    animation: fadeIn 2s ease;
    will-change: transform;
}

.hero-lol-words-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(16, 185, 129, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(245, 158, 11, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, rgba(10, 14, 26, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(16, 185, 129, 0.5), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(245, 158, 11, 0.5), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(249, 115, 22, 0.4), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(20, 184, 166, 0.4), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s ease infinite;
    pointer-events: none;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    50% { background-position: 100% 100%, 0% 0%, 50% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: 8px;
    z-index: 3;
    text-transform: uppercase;
    line-height: 1.1;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.6)) drop-shadow(0 0 60px rgba(245, 158, 11, 0.4));
    position: relative;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(20px) opacity(0.5);
    transform: scale(1.1);
}

/* Removed glow animation - replaced with blurred video */

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
    transform: translateY(-50%);
}

.hero-subtitle::before {
    left: -60px;
}

.hero-subtitle::after {
    right: -60px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--darker-bg);
    box-shadow: var(--shadow-emerald), 0 0 40px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 14px 32px;
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-emerald), 0 0 60px rgba(16, 185, 129, 0.6), 0 0 100px rgba(245, 158, 11, 0.4);
    filter: brightness(1.1);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-emerald), var(--accent-amber), var(--primary-emerald), transparent);
    opacity: 0.3;
    animation: lineMove 8s linear infinite;
}

@keyframes lineMove {
    0% {
        left: -50%;
    }
    100% {
        left: 50%;
    }
}

.section-dark {
    background-color: var(--dark-bg);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: var(--shadow-emerald);
}

.section-title::before {
    left: calc(50% - 120px);
    animation: lineExpand 1s ease 0.5s both;
}

.section-title::after {
    right: calc(50% - 120px);
    animation: lineExpand 1s ease 0.7s both;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: float 6s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

/* Team Section */
.team-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.team-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.team-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.team-card:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}

.team-flex::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}

@media (min-width: 1400px) {
    .team-flex {
        gap: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .team-flex {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-card:nth-child(4),
    .team-card:nth-child(5) {
        grid-column: span 1;
        grid-column-start: auto;
    }
}

.team-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--lol-border);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
    border-radius: 20px;
}

.team-card:hover::before {
    left: 0%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.team-role {
    color: var(--primary-emerald);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.team-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.stat-card {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(55, 65, 81, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    transition: all 0.8s ease;
    opacity: 0;
}

.stat-card:hover::before {
    top: -100%;
    left: -100%;
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald), 0 0 60px rgba(16, 185, 129, 0.4);
    background: rgba(31, 41, 55, 0.85);
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(55, 65, 81, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-progress-bar {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    position: relative;
    overflow: hidden;
}

.stat-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Results Timeline Section */
.results-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.results-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    box-shadow: var(--shadow-emerald);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
    box-shadow: var(--shadow-emerald);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: var(--shadow-emerald);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        box-shadow: var(--shadow-emerald), 0 0 30px rgba(16, 185, 129, 0.8);
    }
}

.timeline-content {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    width: calc(50% - 40px);
    border: 2px solid rgba(55, 65, 81, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald), 0 0 50px rgba(16, 185, 129, 0.4);
    background: rgba(31, 41, 55, 0.85);
}

.timeline-date {
    color: var(--primary-emerald);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.result-win {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-emerald);
    padding: 6px 14px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-emerald);
}
.result-lose {
    background: rgba(185, 50, 16, 0.37);
    color: rgba(185, 50, 16, 0.788);;
    padding: 6px 14px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(185, 50, 16, 0.788);
}

.result-draw {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-amber);
    padding: 6px 14px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent-amber);
}

.result-score {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.activities-grid::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, rgba(245, 158, 11, 0.08) 50%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: float 8s ease-in-out infinite, pulseGlow 5s ease-in-out infinite;
}

.activity-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(55, 65, 81, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.activity-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    transition: all 0.8s ease;
    opacity: 0;
}

.activity-card:hover::after {
    top: -100%;
    right: -100%;
    opacity: 1;
}

.activity-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.activity-card:hover::after {
    top: -100%;
    right: -100%;
}

.activity-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-emerald), 0 0 60px rgba(16, 185, 129, 0.5), 0 0 100px rgba(245, 158, 11, 0.3);
    border-color: var(--primary-emerald);
    background: rgba(31, 41, 55, 0.85);
    border-width: 2px;
}

.activity-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
    animation: float 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.8));
}

.activity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.activity-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Announcements Section */
.announcement-form-container {
    background: rgba(30, 35, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 2px solid var(--lol-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.announcement-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.announcement-form-container:hover::before {
    transform: scaleX(1);
}

.announcement-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.announcement-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    padding-left: 50px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input[type="url"] {
    padding-left: 15px;
}

.form-group:has(.input-icon) input,
.form-group:has(.input-icon) textarea {
    padding-left: 50px;
}

.form-group:has(.toggle-password) input {
    padding-right: 55px;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 
        0 0 0 4px rgba(16, 185, 129, 0.2), 
        var(--shadow-emerald),
        inset 0 2px 8px rgba(16, 185, 129, 0.1);
    background: rgba(10, 14, 26, 0.9);
    transform: translateY(-2px);
}

.form-group:has(input:focus) .input-icon {
    color: var(--primary-emerald);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 54%;
    transform: translateY(0);
    font-size: 1.3rem;
    pointer-events: none;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(0);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 6px;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    line-height: 1;
}

.toggle-password:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--primary-emerald);
    color: var(--primary-emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.error-message {
    background: rgba(220, 38, 38, 0.25);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 14px 18px;
    color: #fca5a5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: shake 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.announcement-card {
    background: rgba(30, 35, 40, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid var(--lol-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.announcement-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.6);
}

.announcement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease 0.1s;
}

.announcement-card:hover::before {
    transform: scaleY(1);
}

.announcement-card:hover::after {
    transform: scaleX(1);
}

.announcement-card:hover {
    transform: translateX(10px) translateY(-8px);
    box-shadow: var(--shadow-emerald), 0 0 70px rgba(16, 185, 129, 0.5), 0 0 100px rgba(245, 158, 11, 0.3);
    border-color: var(--primary-emerald);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
    position: relative;
}

.announcement-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s ease;
}

.announcement-card:hover .announcement-header::after {
    width: 100%;
}

.announcement-title {
    font-size: 2rem;
    font-weight: 800;
    flex: 1;
    min-width: 250px;
    line-height: 1.3;
    margin: 0;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
}

.announcement-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 150px;
}

.announcement-author {
    color: var(--primary-emerald);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 18px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-author::before {
    content: '👤';
    font-size: 0.9rem;
}

.announcement-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 10px;
    background: rgba(200, 170, 110, 0.05);
    border-radius: 12px;
}

.announcement-date::before {
    content: '📅';
    font-size: 0.8rem;
}

.announcement-content {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    padding: 1.5rem;
    background: rgba(10, 14, 26, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--primary-emerald);
    position: relative;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.announcement-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(16, 185, 129, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.announcement-content p {
    margin: 0.8rem 0;
}

.announcement-content p:first-child {
    margin-top: 0;
}

.announcement-content p:last-child {
    margin-bottom: 0;
}

.announcement-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 155, 60, 0.1);
}

.delete-btn {
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
    border: 2px solid rgba(220, 38, 38, 0.4);
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.delete-btn::before {
    content: '🗑️';
    font-size: 1rem;
}

.delete-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.delete-btn:hover {
    background: rgba(220, 38, 38, 0.3);
    color: #ffffff;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.delete-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Medal.tv Embed Container */
.medal-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--lol-border);
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
}

.medal-embed-container:hover {
    border-color: var(--primary-emerald);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.6), var(--shadow-emerald);
    transform: translateY(-3px);
}

.medal-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    display: block;
}

/* Loading state for Medal.tv */
.medal-embed-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-emerald);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.medal-embed-container.loading::before {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.medal-link {
    color: var(--primary-emerald);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-emerald);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.medal-link:hover {
    color: var(--primary-emerald-light);
    border-bottom-color: var(--primary-emerald-light);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

/* Local Video Container */
.local-video-container {
    position: relative;
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--lol-border);
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
}

.local-video-container:hover {
    border-color: var(--primary-emerald);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.6), var(--shadow-emerald);
    transform: translateY(-3px);
}

.local-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    background: #000;
    max-height: 600px;
}

.local-video-player::-webkit-media-controls-panel {
    background-color: rgba(10, 20, 40, 0.9);
}

.local-video-player::-webkit-media-controls-play-button {
    background-color: var(--primary-emerald);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 4rem 0 2rem;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary-emerald) 20%, var(--accent-amber) 50%, var(--primary-emerald) 80%, transparent) 1;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: var(--primary-emerald);
    transform: translateY(-2px);
}

.social-link:hover::before {
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 20px !important;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(16, 185, 129, 0.1);
        padding: 2rem 0;
        border-bottom: 2px solid var(--primary-emerald);
        z-index: 999;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 1rem 2rem;
        display: block;
        border-radius: 0;
        border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    }

    .nav-menu .nav-link:hover {
        background: rgba(16, 185, 129, 0.1);
        border-left: 4px solid var(--primary-emerald);
        padding-left: calc(2rem - 4px);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .team-card {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
        padding: 2rem;
    }
    
    .team-avatar {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .team-avatar {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .announcement-header {
        flex-direction: column;
        gap: 1rem;
    }

    .announcement-meta {
        align-items: flex-start;
        width: 100%;
    }
    
    .announcement-title {
        font-size: 1.5rem;
        min-width: 100%;
    }
    
    .announcement-card {
        padding: 1.5rem;
    }
    
    .announcement-content {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
}

/* Smooth Scrolling - already defined above */

/* Selection */
::selection {
    background: var(--primary-emerald);
    color: var(--darker-bg);
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 2px solid var(--primary-emerald);
    border-radius: 30px;
    padding: 3.5rem;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 
        var(--shadow-emerald), 
        0 0 100px rgba(16, 185, 129, 0.6), 
        0 0 150px rgba(245, 158, 11, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.close-modal:hover {
    color: var(--primary-emerald);
    text-shadow: 0 0 20px rgba(16, 185, 129, 1);
    transform: rotate(90deg) scale(1.15);
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--primary-emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.modal-content h2 {
    margin-bottom: 2rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.login-hint {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    padding: 12px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    position: relative;
    z-index: 1;
}

#login-form {
    position: relative;
    z-index: 1;
}

.login-footer {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Hero LoL Background */
.hero-background-lol {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(200, 155, 60, 0.2) 0%, rgba(10, 20, 40, 0.8) 50%, rgba(10, 203, 230, 0.2) 100%),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1920&h=1080&fit=crop') center/cover;
    z-index: 0;
    opacity: 0.4;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--primary-emerald);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--primary-emerald);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.7), 0 0 50px rgba(245, 158, 11, 0.4);
    background: rgba(16, 185, 129, 0.25);
    border-color: var(--primary-emerald-light);
    color: var(--primary-emerald-light);
}

/* LoL Image Container */
.lol-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-emerald);
    border: 2px solid var(--primary-emerald);
}

.lol-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(245, 158, 11, 0.3) 50%, rgba(10, 14, 26, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lol-text {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.9), 0 0 70px rgba(245, 158, 11, 0.7);
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.6));
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* LoL Team Cards */
.lol-card {
    border: 2px solid var(--lol-border);
    background: rgba(30, 35, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lol-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lol-card:hover::before {
    opacity: 0.3;
}

.lol-avatar {
    position: relative;
    border: 3px solid var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
}

.champion-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

/* League of Legends Rank Borders */
.team-avatar.rank-iron {
    border: 5px solid #8C7853;
    box-shadow: 0 0 20px rgba(140, 120, 83, 0.6), inset 0 0 20px rgba(140, 120, 83, 0.2);
}

.team-avatar.rank-bronze {
    border: 5px solid #CD7F32;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.6), inset 0 0 20px rgba(205, 127, 50, 0.2);
}

.team-avatar.rank-silver {
    border: 5px solid #C0C0C0;
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.7), inset 0 0 20px rgba(192, 192, 192, 0.3);
}

.team-avatar.rank-gold {
    border: 5px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), inset 0 0 25px rgba(255, 215, 0, 0.3);
    animation: goldGlow 2s ease-in-out infinite;
}

.team-avatar.rank-platinum {
    border: 5px solid #00D4AA;
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.8), inset 0 0 25px rgba(0, 212, 170, 0.3);
    animation: platinumGlow 2.5s ease-in-out infinite;
}

.team-avatar.rank-emerald {
    border: 5px solid #00A86B;
    box-shadow: 0 0 35px rgba(0, 168, 107, 0.9), inset 0 0 25px rgba(0, 168, 107, 0.3);
    animation: emeraldGlow 2s ease-in-out infinite;
}

.team-avatar.rank-diamond {
    border: 5px solid #B9F2FF;
    box-shadow: 0 0 40px rgba(185, 242, 255, 0.9), 0 0 60px rgba(185, 242, 255, 0.5), inset 0 0 30px rgba(185, 242, 255, 0.3);
    animation: diamondGlow 2s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.1) 0%, rgba(185, 242, 255, 0.05) 100%);
}

.team-avatar.rank-master {
    border: 5px solid #A020F0;
    box-shadow: 0 0 45px rgba(160, 32, 240, 0.9), 0 0 70px rgba(160, 32, 240, 0.6), inset 0 0 30px rgba(160, 32, 240, 0.3);
    animation: masterGlow 1.8s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.15) 0%, rgba(160, 32, 240, 0.05) 100%);
}

.team-avatar.rank-grandmaster {
    border: 5px solid #FF0000;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.9), 0 0 80px rgba(255, 0, 0, 0.6), inset 0 0 35px rgba(255, 0, 0, 0.3);
    animation: grandmasterGlow 1.5s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.05) 100%);
}

.team-avatar.rank-challenger {
    border: 6px solid;
    border-image: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #FF6347 50%, #FFD700 75%, #FFA500 100%) 1;
    box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 165, 0, 0.8), 0 0 140px rgba(255, 99, 71, 0.6), inset 0 0 40px rgba(255, 215, 0, 0.4);
    animation: challengerGlow 1.2s ease-in-out infinite, challengerRotate 3s linear infinite;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 50%, rgba(255, 99, 71, 0.1) 100%);
    position: relative;
}

.team-avatar.rank-challenger::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #FF6347 50%, #FFD700 75%, #FFA500 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    animation: challengerRotate 3s linear infinite;
}

/* Rank Glow Animations */
@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), inset 0 0 25px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 1), inset 0 0 30px rgba(255, 215, 0, 0.4); }
}

@keyframes platinumGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 170, 0.8), inset 0 0 25px rgba(0, 212, 170, 0.3); }
    50% { box-shadow: 0 0 45px rgba(0, 212, 170, 1), inset 0 0 35px rgba(0, 212, 170, 0.4); }
}

@keyframes emeraldGlow {
    0%, 100% { box-shadow: 0 0 35px rgba(0, 168, 107, 0.9), inset 0 0 25px rgba(0, 168, 107, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 168, 107, 1), inset 0 0 35px rgba(0, 168, 107, 0.4); }
}

@keyframes diamondGlow {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(185, 242, 255, 0.9), 0 0 60px rgba(185, 242, 255, 0.5), inset 0 0 30px rgba(185, 242, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 55px rgba(185, 242, 255, 1), 0 0 80px rgba(185, 242, 255, 0.7), inset 0 0 40px rgba(185, 242, 255, 0.4);
    }
}

@keyframes masterGlow {
    0%, 100% { 
        box-shadow: 0 0 45px rgba(160, 32, 240, 0.9), 0 0 70px rgba(160, 32, 240, 0.6), inset 0 0 30px rgba(160, 32, 240, 0.3);
    }
    50% { 
        box-shadow: 0 0 60px rgba(160, 32, 240, 1), 0 0 90px rgba(160, 32, 240, 0.8), inset 0 0 40px rgba(160, 32, 240, 0.4);
    }
}

@keyframes grandmasterGlow {
    0%, 100% { 
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.9), 0 0 80px rgba(255, 0, 0, 0.6), inset 0 0 35px rgba(255, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 70px rgba(255, 0, 0, 1), 0 0 110px rgba(255, 0, 0, 0.8), inset 0 0 45px rgba(255, 0, 0, 0.4);
    }
}

@keyframes challengerGlow {
    0%, 100% { 
        box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 165, 0, 0.8), 0 0 140px rgba(255, 99, 71, 0.6), inset 0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% { 
        box-shadow: 0 0 80px rgba(255, 215, 0, 1), 0 0 130px rgba(255, 165, 0, 1), 0 0 180px rgba(255, 99, 71, 0.8), inset 0 0 50px rgba(255, 215, 0, 0.5);
    }
}

@keyframes challengerRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.rank-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--dark-bg);
    color: var(--primary-emerald);
    padding: 10px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 800;
    border: 2px solid var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.champion-pool {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.champion-tag {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--primary-emerald);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-emerald);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* LoL Activity Cards */
.lol-activity {
    border: 2px solid var(--lol-border);
    background: rgba(30, 35, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lol-activity:hover {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald), 0 0 50px rgba(16, 185, 129, 0.4);
}

.activity-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--primary-emerald);
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 0.85rem;
    color: var(--primary-emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Login Required Message */
.login-required-message {
    background: rgba(30, 35, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--lol-border);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.login-required-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.message-content h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.message-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Updated Hero Section */
.hero {
    background: var(--gradient-lol);
    position: relative;
}

.hero-title {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    color: var(--lol-gold-light);
    text-shadow: 0 0 20px rgba(200, 155, 60, 0.5);
}

/* Updated Section Dark */
.section-dark {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Updated Cards - removed duplicate */

.team-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-emerald), 0 0 50px rgba(16, 185, 129, 0.8), 0 0 80px rgba(245, 158, 11, 0.6);
}

.team-avatar {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Updated navbar scroll */
.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(16, 185, 129, 0.3), inset 0 -1px 0 rgba(16, 185, 129, 0.3);
    padding: 1rem 0;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Loading animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Enhanced hover effects */
.team-card,
.activity-card,
.announcement-card {
    cursor: pointer;
}

.team-card:active,
.activity-card:active {
    transform: translateY(-5px) scale(0.98);
}

/* Gradient text animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-title {
    background-size: 200% 200%;
    animation: fadeInUp 1s ease 0.2s both, gradientFlow 8s ease infinite, pulseGlow 3s ease-in-out infinite;
}

.close-modal {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.6)) drop-shadow(0 0 50px rgba(245, 158, 11, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.9)) drop-shadow(0 0 70px rgba(245, 158, 11, 0.7)) drop-shadow(0 0 100px rgba(249, 115, 22, 0.5));
    }
}

/* Form input readonly */
.form-group input[readonly] {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-emerald);
    cursor: not-allowed;
}

/* Updated section title gradient */
.section-title {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Better card hover effects */
.lol-card:hover .rank-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-emerald), 0 0 30px rgba(16, 185, 129, 0.8);
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: var(--shadow-emerald), 0 0 30px rgba(16, 185, 129, 0.8);
    }
    50% {
        box-shadow: var(--shadow-emerald), 0 0 40px rgba(16, 185, 129, 1), 0 0 60px rgba(245, 158, 11, 0.8);
    }
}

.lol-card:hover .champion-tag {
    background: rgba(16, 185, 129, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.6), 0 0 40px rgba(245, 158, 11, 0.3);
    border-color: var(--primary-emerald-light);
    color: var(--primary-emerald-light);
}

.champion-tag {
    transition: all 0.3s ease;
}

.rank-badge {
    transition: all 0.3s ease;
}

/* Enhanced animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Add shimmer effect to buttons */
.btn-primary::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Enhanced gradient animations */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Schedule Section */
.schedule-container {
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(31, 41, 55, 0.6);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    border-color: var(--primary-emerald);
    color: var(--darker-bg);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-2px);
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-item {
    display: flex;
    gap: 2rem;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-item:hover {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    transform: translateX(10px);
}

.schedule-item:hover::before {
    opacity: 1;
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: var(--gradient-card);
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid var(--primary-emerald);
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-emerald);
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.schedule-content {
    flex: 1;
}

.schedule-type {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.schedule-type.scrim {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-emerald);
    border: 1px solid var(--primary-emerald);
}

.schedule-type.tournament {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-amber);
    border: 1px solid var(--accent-amber);
}

.schedule-type.training {
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    border: 1px solid #8B5CF6;
}

.schedule-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.schedule-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-content i {
    color: var(--primary-emerald);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--text-secondary);
}

/* Leaderboard Section */
.leaderboard-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 60px 1fr 150px 100px 100px 80px;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: 60px 1fr 150px 100px 100px 80px;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.3s ease;
    align-items: center;
}

.leaderboard-item:hover {
    background: rgba(16, 185, 129, 0.05);
    transform: translateX(5px);
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-emerald);
    text-align: center;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.champion-icon-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.rank-challenger-small {
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.rank-grandmaster-small {
    border-color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.rank-master-small {
    border-color: #A020F0;
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.6);
}

.rank-diamond-small {
    border-color: #B9F2FF;
    box-shadow: 0 0 15px rgba(185, 242, 255, 0.6);
}

.rank-emerald-small {
    border-color: #00A86B;
    box-shadow: 0 0 15px rgba(0, 168, 107, 0.6);
}

.player-name {
    font-weight: 600;
    color: var(--text-primary);
}

.rank-tier {
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.rank-tier.challenger {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 1px solid #FFD700;
}

.rank-tier.grandmaster {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    border: 1px solid #FF0000;
}

.rank-tier.master {
    background: rgba(160, 32, 240, 0.2);
    color: #A020F0;
    border: 1px solid #A020F0;
}

.rank-tier.diamond {
    background: rgba(185, 242, 255, 0.2);
    color: #B9F2FF;
    border: 1px solid #B9F2FF;
}

.rank-tier.emerald {
    background: rgba(0, 168, 107, 0.2);
    color: #00A86B;
    border: 1px solid #00A86B;
}

.lp, .wins, .wr {
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

.wr {
    color: var(--primary-emerald);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.partner-card:hover {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-10px);
}

.partner-logo {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
}

.partner-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.partner-card p {
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-emerald);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-emerald);
    font-weight: 900;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Discord Info Section */
.discord-info {
    margin-bottom: 3rem;
}

.discord-info-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-emerald);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-emerald);
}

.discord-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
}

.discord-info-card h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.discord-info-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.discord-info-card code {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-emerald);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.discord-command-example {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
    overflow-x: auto;
}

.discord-command-example code {
    background: transparent;
    color: var(--primary-emerald);
    padding: 0;
    font-size: 0.85rem;
    word-break: break-all;
    display: block;
    white-space: pre-wrap;
}

.discord-params {
    margin-top: 2rem;
    text-align: left;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
}

.discord-params h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.discord-params ul {
    list-style: none;
    padding: 0;
}

.discord-params li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.discord-params li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-emerald);
}

.discord-params strong {
    color: var(--primary-emerald);
}

.announcement-video {
    margin: 1.5rem 0;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-1);
    color: var(--darker-bg);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-emerald);
}

.announcement-video-player {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-top: 1rem;
}

.author-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
    border: 1px solid #5865F2;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0.5rem;
}

/* Newsletter Section */
.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-emerald);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-emerald);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .schedule-date {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .leaderboard-header,
    .leaderboard-item {
        grid-template-columns: 40px 1fr 100px 80px 80px 60px;
        font-size: 0.75rem;
        padding: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Top Champions Section */
.champions-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.champion-stat-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.4s ease;
}

.champion-stat-card:hover {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-5px);
}

.champion-stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    flex-shrink: 0;
}

.champion-stat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.champion-stat-info {
    flex: 1;
}

.champion-stat-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.champion-stat-bar {
    width: 100%;
    height: 8px;
    background: rgba(55, 65, 81, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.champion-stat-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.champion-stat-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Top Plays Section */
.top-plays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.play-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.play-card:hover {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-10px);
}

.play-thumbnail {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: var(--darker-bg);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: var(--darker-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.play-info {
    padding: 1.5rem;
}

.play-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.play-player {
    color: var(--primary-emerald);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.play-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.play-stats {
    display: flex;
    gap: 1.5rem;
}

.play-stat {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Team History Section */
.history-timeline {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
    position: relative;
    padding-left: 3rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.history-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-emerald);
    border: 4px solid var(--darker-bg);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    z-index: 1;
}

.history-year {
    position: absolute;
    left: -6rem;
    top: 0;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 4rem;
    text-align: right;
}

.history-content {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.history-item:hover .history-content {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    transform: translateX(10px);
}

.history-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.history-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Live Stats Section */
.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.live-stat-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.live-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.live-stat-card:hover {
    border-color: var(--primary-emerald);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-10px);
}

.live-stat-card:hover::before {
    opacity: 1;
}

.live-stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
    position: relative;
    z-index: 1;
}

.live-stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.live-stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.live-stat-trend {
    color: var(--primary-emerald);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .champions-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .champion-stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .top-plays-grid {
        grid-template-columns: 1fr;
    }
    
    .history-timeline {
        padding-left: 2rem;
    }
    
    .history-year {
        position: static;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .history-item {
        padding-left: 0;
    }
    
    .history-item::before {
        left: -1rem;
    }
    
    .live-stats-grid {
        grid-template-columns: 1fr;
    }
}


