@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(160deg, #0d2818 0%, #071510 100%);
    color: #e8f5e9;
    min-height: 100vh;
    line-height: 1.75;
}

.stadium-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7, 21, 16, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 4px solid #00e676;
}

.header-stadium {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 28px;
}

.stadium-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00e676;
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.stadium-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.stadium-nav a {
    color: #a5d6a7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.stadium-nav a:hover {
    color: #00e676;
}

.whistle-toggle {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.whistle-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #00e676;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.whistle-toggle.blown span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.whistle-toggle.blown span:nth-child(2) {
    opacity: 0;
}

.whistle-toggle.blown span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.pitch-area {
    padding-top: 88px;
}

.kickoff-zone {
    padding: 95px 28px;
    text-align: center;
    background: 
        radial-gradient(circle at 25% 35%, rgba(0, 230, 118, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(76, 175, 80, 0.08) 0%, transparent 40%);
}

.kickoff-zone h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #00e676;
    letter-spacing: 6px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.kickoff-desc {
    font-size: 1.2rem;
    color: #a5d6a7;
    max-width: 780px;
    margin: 0 auto 45px;
}

.match-badges {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.match-badge {
    background: rgba(0, 230, 118, 0.15);
    border: 2px solid #00e676;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-badge span {
    margin-right: 10px;
}

.game-pitch {
    padding: 75px 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.pitch-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    text-align: center;
    color: #00e676;
    letter-spacing: 4px;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.pitch-container {
    background: linear-gradient(145deg, #0f3d22, #0d2818);
    border-radius: 20px;
    padding: 28px;
    border: 3px solid rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.15);
}

.pitch-frame {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 12px;
}

.trophy-cabinet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 75px 28px;
}

.trophy-card {
    background: rgba(15, 61, 34, 0.7);
    padding: 38px 25px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #00e676;
    transition: transform 0.3s;
}

.trophy-card:hover {
    transform: translateY(-8px);
}

.trophy-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.trophy-card h3 {
    font-family: 'Oswald', sans-serif;
    color: #00e676;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.trophy-card p {
    color: #81c784;
    font-size: 0.95rem;
}

.locker-room {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 28px;
}

.locker-panel {
    background: rgba(13, 40, 24, 0.9);
    padding: 40px;
    border-radius: 15px;
    border-top: 5px solid #00e676;
}

.locker-panel h3 {
    font-family: 'Oswald', sans-serif;
    color: #00e676;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.locker-panel p {
    color: #81c784;
    line-height: 1.9;
}

.stadium-footer {
    background: #040a07;
    padding: 58px 28px 32px;
    margin-top: 85px;
}

.footer-stadium {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.support-stand {
    margin-bottom: 38px;
}

.support-stand h4 {
    font-family: 'Oswald', sans-serif;
    color: #00e676;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.support-stand a {
    color: #81c784;
    margin: 0 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.support-stand a:hover {
    color: #00e676;
}

.footer-links {
    margin-bottom: 28px;
}

.footer-links a {
    color: #4a7c59;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00e676;
}

.final-whistle {
    color: #2e5a3a;
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 7, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.passed {
    display: none;
}

.gate-card {
    background: linear-gradient(145deg, #0f3d22, #0d2818);
    padding: 52px;
    border-radius: 20px;
    text-align: center;
    max-width: 510px;
    border: 3px solid #00e676;
    box-shadow: 0 0 70px rgba(0, 230, 118, 0.3);
}

.gate-card h2 {
    font-family: 'Oswald', sans-serif;
    color: #00e676;
    font-size: 1.9rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.gate-card p {
    color: #81c784;
    margin-bottom: 15px;
    line-height: 1.8;
}

.gate-card .green {
    color: #00e676;
    font-weight: 700;
}

.gate-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gate-btn {
    padding: 15px 42px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
}

.gate-btn.play {
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #071510;
}

.gate-btn.bench {
    background: transparent;
    border: 2px solid #4a7c59;
    color: #81c784;
}

.gate-btn:hover {
    transform: scale(1.05);
}

.page-header {
    padding: 125px 28px 58px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(0, 230, 118, 0.12) 0%, transparent 55%);
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #00e676;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 28px;
}

.page-content h2 {
    font-family: 'Oswald', sans-serif;
    color: #00e676;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 45px 0 18px;
    text-transform: uppercase;
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content p {
    color: #81c784;
    margin-bottom: 16px;
}

.page-content ul {
    color: #81c784;
    margin: 18px 0;
    padding-left: 28px;
}

.page-content li {
    margin-bottom: 12px;
}

.tactics-board {
    background: rgba(0, 230, 118, 0.12);
    border-left: 4px solid #00e676;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .trophy-cabinet {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locker-room {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .whistle-toggle {
        display: block;
    }

    .stadium-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #071510;
        padding: 25px;
        display: none;
        border-bottom: 4px solid #00e676;
    }

    .stadium-nav.open {
        display: block;
    }

    .stadium-nav ul {
        flex-direction: column;
        gap: 18px;
    }

    .kickoff-zone h1 {
        font-size: 2.4rem;
    }

    .match-badges {
        flex-direction: column;
        align-items: center;
    }

    .pitch-frame {
        height: 390px;
    }

    .trophy-cabinet {
        grid-template-columns: 1fr;
    }

    .gate-card {
        margin: 20px;
        padding: 38px 25px;
    }

    .gate-buttons {
        flex-direction: column;
    }
}
