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

:root {
  --emerald: #2ecc71;
  --emerald-dark: #1a9c4f;
  --charcoal: #1a1a2e;
  --dark-bg: #10101e;
  --lime: #a8e063;
  --text-main: #e8f5e9;
  --text-sub: #7fad8f;
  --border-em: rgba(46, 204, 113, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

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

.site-top {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 62px;
  background: rgba(16, 16, 30, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  border-bottom: 2px solid var(--border-em);
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--emerald);
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name svg { width: 30px; height: 30px; }

.links-row { list-style: none; display: flex; gap: 1.8rem; }
.links-row a { color: var(--text-sub); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.links-row a:hover, .links-row a.act { color: var(--emerald); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span { width: 26px; height: 3px; background: var(--emerald); border-radius: 2px; transition: 0.3s; }
.menu-btn.toggled span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.menu-btn.toggled span:nth-child(2) { opacity: 0; }
.menu-btn.toggled span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

/* Big bold hero with diagonal accent */
.bold-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 5%;
  background:
    linear-gradient(135deg, var(--dark-bg) 50%, var(--charcoal) 50%);
  position: relative;
}

.bold-hero-inner { max-width: 700px; }

.bold-hero h1 {
  font-size: 4rem;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.bold-hero h1 em {
  font-style: normal;
  color: var(--emerald);
  -webkit-text-stroke: 1px var(--emerald);
}

.bold-hero p {
  font-size: 1.05rem;
  color: var(--text-sub);
  margin-bottom: 2rem;
  max-width: 560px;
}

.green-btn {
  display: inline-block;
  padding: 14px 48px;
  background: var(--emerald);
  color: var(--dark-bg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.green-btn:hover {
  background: var(--lime);
  transform: translateY(-2px);
  color: var(--dark-bg);
}

.flag-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 4%;
  background: var(--charcoal);
  flex-wrap: wrap;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--emerald);
}
.flag-item .fi { font-size: 1.3rem; }

.match-zone {
  padding: 4rem 4%;
  text-align: center;
}
.match-zone h2 { font-size: 2.4rem; color: var(--text-main); margin-bottom: 1.5rem; }

.match-frame {
  max-width: 1000px;
  margin: 0 auto;
  border: 2px solid var(--border-em);
  overflow: hidden;
}
.match-frame iframe { width: 100%; height: 600px; border: none; display: block; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  padding: 3rem 2rem;
  background: var(--charcoal);
  border: 1px solid var(--border-em);
  text-align: center;
  transition: 0.3s;
}
.stat-card:hover { background: rgba(46, 204, 113, 0.05); }
.stat-card .sc-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--emerald); }
.stat-card h3 { font-size: 1.1rem; color: var(--text-main); margin: 0.5rem 0; }
.stat-card p { color: var(--text-sub); font-size: 0.9rem; }

.write-up {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 4%;
}
.write-up h2 { font-size: 2rem; text-align: center; color: var(--text-main); margin-bottom: 1.5rem; }
.write-up p { color: var(--text-sub); margin-bottom: 1rem; }

.pg-head {
  padding: 6rem 4% 3rem;
  text-align: center;
  background: var(--charcoal);
}
.pg-head h1 { font-size: 2.8rem; color: var(--text-main); }

.pg-prose {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 4%;
}
.pg-prose h2 { font-size: 1.5rem; color: var(--emerald); margin: 2rem 0 0.8rem; letter-spacing: 1px; }
.pg-prose p, .pg-prose li { color: var(--text-sub); margin-bottom: 0.7rem; }
.pg-prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }

.ground-footer {
  background: #0a0a16;
  border-top: 2px solid var(--border-em);
  padding: 3rem 4% 1.5rem;
  text-align: center;
}
.gf-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.gf-links a { color: var(--text-sub); font-size: 0.88rem; }
.gf-links a:hover { color: var(--emerald); }
.gf-resp { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-em); }
.gf-resp p { font-size: 0.78rem; color: var(--text-sub); margin-bottom: 0.5rem; }
.gf-resp a { margin: 0 0.5rem; }

.age-cover {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 10, 22, 0.97);
  display: flex; align-items: center; justify-content: center;
}
.age-modal {
  background: var(--charcoal);
  border: 2px solid var(--emerald);
  padding: 3rem; text-align: center;
  max-width: 420px; width: 90%;
}
.age-modal h2 { font-size: 1.6rem; color: var(--emerald); margin-bottom: 1rem; }
.age-modal p { color: var(--text-sub); margin-bottom: 2rem; }
.age-modal-btns { display: flex; gap: 1rem; justify-content: center; }
.age-modal-btns button {
  padding: 10px 32px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 2px; border: none; cursor: pointer; transition: 0.2s;
}
.am-yes { background: var(--emerald); color: var(--dark-bg); }
.am-no { background: transparent; border: 2px solid var(--text-sub) !important; color: var(--text-sub); }
.age-modal-btns button:hover { transform: scale(1.05); }
.am-denied { color: #e74c3c; font-weight: 700; margin-top: 1rem; display: none; }

@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .links-row {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; background: rgba(16, 16, 30, 0.98);
    padding: 1.5rem 4%; gap: 1rem;
    border-bottom: 2px solid var(--border-em);
  }
  .links-row.vis { display: flex; }
  .bold-hero { background: var(--dark-bg); }
  .bold-hero h1 { font-size: 2.5rem; }
  .stat-cards { grid-template-columns: 1fr; }
  .match-frame iframe { height: 380px; }
  .flag-bar { flex-direction: column; align-items: center; gap: 0.8rem; }
}
