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

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

:root {
    --pitch-black: #0a0f0d;
    --field-green: #1b4332;
    --grass-bright: #40916c;
    --gold-trophy: #ffd60a;
    --white-line: #f8f9fa;
    --warm-amber: #fb8500;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--pitch-black);
    color: var(--white-line);
    line-height: 1.7;
}

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

a { color: var(--gold-trophy); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--warm-amber); }

.top-header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(10, 15, 13, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(64, 145, 108, 0.2); }
.header-inner { max-width: 1500px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 46px; height: 46px; }
.brand span { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold-trophy); }

.menu-icon { display: none; width: 30px; height: 22px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.menu-icon span { height: 3px; background: var(--gold-trophy); transition: all 0.3s; }
.menu-icon.open span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.menu-icon.open span:nth-child(2) { opacity: 0; }
.menu-icon.open span:last-child { transform: rotate(-45deg) translate(7px, -7px); }

.main-menu ul { display: flex; list-style: none; gap: 2.5rem; }
.main-menu a { font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white-line); }
.main-menu a:hover { color: var(--gold-trophy); }

.stadium-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 2rem 80px; background: radial-gradient(ellipse at 40% 30%, rgba(27, 67, 50, 0.5) 0%, transparent 50%), radial-gradient(ellipse at 60% 70%, rgba(255, 214, 10, 0.1) 0%, transparent 40%), var(--pitch-black); text-align: center; }
.hero-box { max-width: 850px; }
.hero-box h1 { font-size: clamp(3rem, 8vw, 5rem); color: var(--white-line); margin-bottom: 1.5rem; }
.hero-box h1 .accent { color: var(--gold-trophy); }
.hero-desc { font-size: 1.15rem; color: rgba(248, 249, 250, 0.8); margin-bottom: 2.5rem; }
.hero-btn { display: inline-block; background: linear-gradient(135deg, var(--gold-trophy), var(--warm-amber)); color: var(--pitch-black); padding: 1rem 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border-radius: 4px; transition: all 0.3s; }
.hero-btn:hover { color: var(--pitch-black); transform: scale(1.05); box-shadow: 0 10px 40px rgba(255, 214, 10, 0.3); }

.highlights { padding: 5rem 2rem; background: linear-gradient(180deg, var(--pitch-black), var(--field-green)); }
.highlights-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.highlight-card { background: rgba(27, 67, 50, 0.5); border: 1px solid rgba(64, 145, 108, 0.3); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s; }
.highlight-card:hover { border-color: var(--gold-trophy); transform: translateY(-5px); }
.h-icon { font-size: 2.8rem; margin-bottom: 1.5rem; }
.highlight-card h3 { font-size: 1.5rem; color: var(--gold-trophy); margin-bottom: 0.75rem; }
.highlight-card p { color: rgba(248, 249, 250, 0.7); font-size: 0.95rem; }

.game-section { padding: 5rem 2rem; background: var(--pitch-black); }
.game-wrap { max-width: 1400px; margin: 0 auto; }
.game-header { text-align: center; margin-bottom: 3rem; }
.game-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white-line); }
.game-header p { color: var(--grass-bright); }
.game-frame { background: var(--field-green); border: 3px solid var(--gold-trophy); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.game-frame iframe { width: 100%; height: 600px; border: none; display: block; }

.about-section { padding: 6rem 2rem; background: linear-gradient(180deg, var(--pitch-black), rgba(27, 67, 50, 0.4)); }
.about-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.about-wrap h2 { font-size: 3rem; color: var(--gold-trophy); margin-bottom: 2rem; }
.about-wrap p { font-size: 1.1rem; color: rgba(248, 249, 250, 0.85); margin-bottom: 1.5rem; }

.site-footer { background: rgba(10, 15, 13, 0.98); border-top: 1px solid rgba(64, 145, 108, 0.2); padding: 3rem 2rem; }
.footer-wrap { max-width: 1400px; margin: 0 auto; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { color: var(--white-line); font-size: 0.9rem; }
.support { padding-top: 2rem; border-top: 1px solid rgba(64, 145, 108, 0.1); }
.support p { font-size: 0.85rem; color: rgba(248, 249, 250, 0.6); margin-bottom: 1rem; }
.support .links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.support .links a { font-size: 0.85rem; }
.copyright { margin-top: 2rem; font-size: 0.8rem; color: rgba(248, 249, 250, 0.4); }

.age-wall { position: fixed; inset: 0; background: rgba(10, 15, 13, 0.98); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.age-wall.clear { display: none; }
.wall-box { background: linear-gradient(145deg, var(--field-green), var(--pitch-black)); border: 2px solid var(--gold-trophy); border-radius: 16px; padding: 3rem; max-width: 480px; text-align: center; }
.wall-box h2 { font-size: 2.5rem; color: var(--gold-trophy); margin-bottom: 1.5rem; }
.wall-box p { color: var(--white-line); margin-bottom: 2rem; }
.wall-btns { display: flex; gap: 1rem; justify-content: center; }
.wall-btn { padding: 0.9rem 2rem; border: none; border-radius: 6px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; }
.wall-btn.yes { background: var(--gold-trophy); color: var(--pitch-black); }
.wall-btn.yes:hover { transform: scale(1.05); }
.wall-btn.no { background: transparent; color: var(--white-line); border: 2px solid var(--grass-bright); }
.wall-btn.no:hover { background: var(--grass-bright); }

.page-body { padding: 120px 2rem 4rem; max-width: 950px; margin: 0 auto; min-height: calc(100vh - 250px); }
.page-body h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--gold-trophy); margin-bottom: 2.5rem; text-align: center; }
.page-body h2 { font-size: 1.6rem; color: var(--grass-bright); margin: 2.5rem 0 1rem; }
.page-body p { color: rgba(248, 249, 250, 0.9); margin-bottom: 1.2rem; }
.page-body ul { margin: 1rem 0 1.5rem 1.5rem; }
.page-body li { color: rgba(248, 249, 250, 0.85); margin-bottom: 0.5rem; }

.play-body { padding: 120px 2rem 4rem; max-width: 1400px; margin: 0 auto; }
.play-body h1 { text-align: center; font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--gold-trophy); margin-bottom: 1rem; }
.play-body .info { text-align: center; color: rgba(248, 249, 250, 0.6); margin-bottom: 2rem; }

@media (max-width: 900px) { .highlights-grid { grid-template-columns: 1fr; max-width: 500px; } }
@media (max-width: 768px) {
    .menu-icon { display: flex; }
    .main-menu { position: fixed; top: 0; right: -100%; width: 75%; max-width: 300px; height: 100vh; background: var(--pitch-black); transition: right 0.35s; padding: 100px 2rem; border-left: 1px solid rgba(64, 145, 108, 0.2); }
    .main-menu.visible { right: 0; }
    .main-menu ul { flex-direction: column; gap: 2rem; }
    .game-frame iframe { height: 480px; }
    .wall-btns { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) { .brand span { font-size: 1.4rem; } .game-frame iframe { height: 380px; } }
