:root {
    --primary-gold: #F0C850;
    --primary-dark: #1a1a1a;
    --secondary-dark: #2A2A2A;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --accent-glow: rgba(240, 200, 80, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #2a2a2a 0%, #111111 100%);
    z-index: -1;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
}

.logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.league-name {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary-gold);
    background: none;
    -webkit-text-fill-color: var(--primary-gold);
    text-shadow: 0 0 10px var(--accent-glow);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
}

/* About Section */
.about-container {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    width: 100%;
}

.card {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(240, 200, 80, 0.1);
    border-color: rgba(240, 200, 80, 0.3);
}

.card h2 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(240, 200, 80, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

/* Footer */
footer {
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .league-name {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }
}
