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

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

:root {
    --field-green: #16a34a;
    --grass: #22c55e;
    --stadium-dark: #0f172a;
    --stadium-mid: #1e293b;
    --goal-white: #ffffff;
    --ball-yellow: #facc15;
    --text-light: #f1f5f9;
    --text-gray: #94a3b8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--stadium-dark);
    color: var(--text-light);
    line-height: 1.7;
}

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

a {
    color: var(--grass);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--ball-yellow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--field-green);
}

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

.site-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--goal-white);
    letter-spacing: 4px;
}

.site-title span {
    color: var(--grass);
}

.main-menu {
    display: flex;
    gap: 2rem;
}

.main-menu a {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.main-menu a:hover {
    color: var(--ball-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--grass);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--stadium-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-light);
    letter-spacing: 3px;
}

.close-mobile {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--ball-yellow);
    cursor: pointer;
}

/* Hero */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    background: 
        linear-gradient(to bottom, rgba(22, 163, 74, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(22, 163, 74, 0.2) 0%, transparent 60%),
        var(--stadium-dark);
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--goal-white);
}

.hero-content h1 span {
    color: var(--grass);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.kickoff-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--field-green);
    color: var(--goal-white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    border-radius: 0;
    transition: all 0.3s;
}

.kickoff-btn:hover {
    background: var(--grass);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4);
    color: var(--goal-white);
}

/* Info Boxes */
.info-row {
    padding: 4rem 2rem;
    background: var(--stadium-mid);
}

.info-boxes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box {
    background: var(--stadium-dark);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 4px solid var(--field-green);
}

.info-box .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--ball-yellow);
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Game Section */
.game-section {
    padding: 5rem 2rem;
    background: var(--stadium-dark);
}

.game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--grass);
}

.game-screen {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--stadium-mid);
    padding: 1rem;
    border: 3px solid var(--field-green);
}

.game-screen iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Features */
.features-area {
    padding: 5rem 2rem;
    background: var(--stadium-mid);
}

.features-area h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--goal-white);
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--stadium-dark);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    border-left: 4px solid var(--ball-yellow);
}

.feature-card .sym {
    font-size: 2.5rem;
    flex-shrink: 0;
}

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

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Page Content */
.page-wrapper {
    min-height: 100vh;
    padding: 100px 2rem 4rem;
    background: var(--stadium-dark);
}

.content-box {
    max-width: 850px;
    margin: 0 auto;
    background: var(--stadium-mid);
    padding: 3rem;
    border-top: 4px solid var(--field-green);
}

.content-box h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--grass);
}

.content-box h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--ball-yellow);
}

.content-box p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.content-box ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

.content-box li {
    margin-bottom: 0.5rem;
}

/* Play Page */
.play-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.match-info {
    background: rgba(22, 163, 74, 0.15);
    border: 2px solid rgba(22, 163, 74, 0.3);
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.match-info p {
    margin: 0;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background: var(--stadium-mid);
    padding: 4rem 2rem;
    border-top: 2px solid var(--field-green);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--goal-white);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.footer-title span {
    color: var(--grass);
}

.support-section {
    margin-bottom: 1.5rem;
}

.support-section p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.support-section a {
    color: var(--text-light);
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-menu a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-box {
    background: var(--stadium-mid);
    border: 3px solid var(--field-green);
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    margin: 1rem;
}

.age-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--grass);
}

.age-box p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons button {
    padding: 0.9rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.enter-btn {
    background: var(--field-green);
    color: var(--goal-white);
}

.enter-btn:hover {
    background: var(--grass);
}

.exit-btn {
    background: transparent;
    border: 2px solid var(--text-gray) !important;
    color: var(--text-gray);
}

.exit-btn:hover {
    border-color: var(--text-light) !important;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar-inner {
        padding: 1rem;
    }
    
    .site-title {
        font-size: 1.6rem;
    }
    
    .hero-banner {
        padding: 100px 1rem 60px;
    }
    
    .game-screen iframe {
        height: 400px;
    }
    
    .content-box {
        padding: 2rem 1.5rem;
    }
    
    .age-box {
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .support-section a {
        display: block;
        margin: 0.5rem 0;
    }
}
