@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pitch-green: #16a34a;
    --stadium-dark: #0f172a;
    --gold-trophy: #eab308;
    --clean-white: #f8fafc;
    --match-red: #ef4444;
    --goal-blue: #3b82f6;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--stadium-dark);
    color: var(--clean-white);
    min-height: 100vh;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

a {
    color: var(--gold-trophy);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--pitch-green);
}

.stadium-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--pitch-green);
}

.stadium-header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--clean-white);
    letter-spacing: 3px;
}

.team-logo span {
    color: var(--pitch-green);
}

.whistle-btn {
    display: none;
    background: none;
    border: 2px solid var(--pitch-green);
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
}

.whistle-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pitch-green);
    margin: 5px 0;
}

.match-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.match-nav a {
    color: var(--clean-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.match-nav a:hover {
    color: var(--gold-trophy);
}

.kickoff-hero {
    padding: 170px 2rem 90px;
    text-align: center;
    background: linear-gradient(135deg, var(--stadium-dark) 0%, #1e293b 100%);
    position: relative;
}

.kickoff-hero::before {
    content: '⚽';
    position: absolute;
    right: 10%;
    top: 40%;
    font-size: 8rem;
    opacity: 0.1;
}

.kickoff-hero h1 {
    font-size: 4rem;
    color: var(--clean-white);
    margin-bottom: 1rem;
}

.kickoff-hero h1 span {
    color: var(--pitch-green);
}

.kickoff-hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.trophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.trophy-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(22, 163, 74, 0.3);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trophy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pitch-green);
}

.trophy-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trophy-card h3 {
    color: var(--gold-trophy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.trophy-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.pitch-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pitch-section h2 {
    font-size: 2.5rem;
    color: var(--clean-white);
    text-align: center;
    margin-bottom: 2rem;
}

.pitch-frame {
    background: #000;
    border: 4px solid var(--pitch-green);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(22, 163, 74, 0.2);
}

.pitch-frame iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

.halftime-section {
    padding: 4rem 2rem;
    background: #1e293b;
}

.halftime-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.halftime-inner h2 {
    font-size: 2.5rem;
    color: var(--clean-white);
    margin-bottom: 1.5rem;
}

.halftime-inner p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.tactics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tactic-box {
    background: var(--stadium-dark);
    padding: 2rem;
    border-left: 4px solid var(--gold-trophy);
}

.tactic-box h4 {
    color: var(--pitch-green);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.tactic-box p {
    text-align: left;
}

.fulltime-footer {
    background: #0a0f1a;
    padding: 3rem 2rem;
    border-top: 3px solid var(--pitch-green);
}

.fulltime-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: #94a3b8;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.support-box {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(22, 163, 74, 0.3);
}

.support-box span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.support-box a {
    margin: 0 0.6rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.copyright-line {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #475569;
}

.gate-check {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gate-check.hidden {
    display: none;
}

.gate-box {
    background: linear-gradient(145deg, #1e293b, var(--stadium-dark));
    border: 3px solid var(--pitch-green);
    padding: 3rem;
    text-align: center;
    max-width: 460px;
    box-shadow: 0 20px 80px rgba(22, 163, 74, 0.2);
}

.gate-box h2 {
    color: var(--clean-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gate-box p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.gate-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gate-btns button {
    padding: 1rem 2.5rem;
    border: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-goal {
    background: var(--pitch-green);
    color: var(--clean-white);
}

.btn-goal:hover {
    background: #22c55e;
    transform: scale(1.05);
}

.btn-offside {
    background: transparent;
    color: var(--clean-white);
    border: 2px solid #64748b !important;
}

.btn-offside:hover {
    border-color: var(--clean-white) !important;
}

.page-banner {
    padding: 160px 2rem 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--stadium-dark), #1e293b);
}

.page-banner h1 {
    font-size: 3rem;
    color: var(--clean-white);
}

.page-text {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-text h2 {
    color: var(--pitch-green);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.page-text p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.page-text ul {
    padding-left: 2rem;
    margin: 1rem 0 1.5rem;
}

.page-text li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.match-tip {
    background: #1e293b;
    padding: 1.5rem 2rem;
    border-left: 5px solid var(--gold-trophy);
    margin-bottom: 2rem;
}

.match-tip h3 {
    color: var(--gold-trophy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.match-tip p {
    margin: 0;
}

@media (max-width: 768px) {
    .whistle-btn {
        display: block;
    }
    
    .match-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--stadium-dark);
        display: none;
        padding: 1rem;
        border-bottom: 2px solid var(--pitch-green);
    }
    
    .match-nav.active {
        display: block;
    }
    
    .match-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .match-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .kickoff-hero h1 {
        font-size: 2.5rem;
    }
    
    .kickoff-hero::before {
        display: none;
    }
    
    .team-logo {
        font-size: 1.5rem;
    }
    
    .pitch-frame iframe {
        height: 400px;
    }
    
    .gate-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .gate-btns {
        flex-direction: column;
    }
}
