@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #03011a;
  --bg-soft: #0b0f2f;
  --surface: rgba(6, 9, 33, 0.94);
  --surface-alt: rgba(16, 11, 46, 0.88);
  --surface-card: rgba(255, 255, 255, 0.08);
  --brand-electric: #ff6fd8;
  --brand-violet: #66f6ff;
  --brand-amber: #ff98e4;
  --brand-slate: #7fb2ff;
  --text: #fff9ff;
  --muted: rgba(248, 238, 255, 0.85);
  --muted-soft: rgba(248, 238, 255, 0.64);
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.3);
  --shadow-soft: 0 35px 90px rgba(2, 4, 24, 0.7);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font-display: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', 'Space Grotesk', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 18%, rgba(255, 111, 216, 0.28), transparent 58%),
              radial-gradient(circle at 78% 16%, rgba(102, 246, 255, 0.25), transparent 55%),
              linear-gradient(135deg, #020018 0%, #05062c 55%, #050319 100%);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background: radial-gradient(680px 480px at 12% 82%, rgba(255, 111, 216, 0.22), transparent 65%);
}

body::after {
  background: radial-gradient(820px 620px at 82% 75%, rgba(102, 246, 255, 0.24), transparent 70%);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-amber);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover,
a:focus-visible {
  opacity: 0.7;
}

p {
  margin: 0;
  color: var(--muted);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.5rem;
}

ul, ol {
  padding-left: 1.2rem;
  color: var(--muted);
}

blockquote {
  border-left: 3px solid var(--brand-electric);
  margin: 1.5rem 0;
  padding-left: 1rem;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translate(-50%, -200%);
  background: var(--text);
  color: #05060e;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  z-index: 999;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 18, 0.75);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.site-disclaimer {
  background: linear-gradient(120deg, rgba(255, 111, 130, 0.95), rgba(255, 174, 89, 0.9));
  color: #0a0404;
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.site-disclaimer p {
  margin: 0;
  color: inherit;
}

.site-disclaimer a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: 192px;
  height: 76px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background-image: linear-gradient(135deg, rgba(4, 2, 24, 0.85), rgba(19, 6, 40, 0.4)), url('/public/images/logobackground.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff9ff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 55px rgba(3, 2, 24, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 111, 216, 0.55), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(102, 246, 255, 0.4), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.75;
}

.brand__logo span {
  position: relative;
  z-index: 1;
  text-shadow: 0 8px 18px rgba(2, 0, 10, 0.65);
}

.brand:hover .brand__logo,
.brand:focus-visible .brand__logo {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(4, 2, 20, 0.78);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text);
  padding: 0.55rem 0.2rem;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--brand-electric);
  color: var(--brand-electric);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn--primary {
  background: linear-gradient(130deg, var(--brand-electric), var(--brand-violet));
  color: #05050b;
  box-shadow: 0 25px 50px rgba(255, 111, 216, 0.25);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text);
  background: rgba(5, 7, 18, 0.65);
  box-shadow: 0 18px 35px rgba(5, 7, 18, 0.45);
}

.btn--soft {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--muted);
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 4rem);
}

.hero--simple {
  background-image: url('/public/images/herobackground.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  position: relative;
  isolation: isolate;
}

.hero--simple::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 18, 0.55);
  z-index: -2;
}

.hero--simple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(7, 1, 26, 0.9) 0%, rgba(17, 6, 48, 0.65) 45%, rgba(28, 8, 58, 0.5) 100%);
  z-index: -1;
}

.hero__simple {
  display: block;
}

.hero__layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.hero__content {
  display: grid;
  gap: 1.2rem;
}

.hero__lede {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 5, 16, 0.6);
  box-shadow: 0 25px 55px rgba(3, 2, 18, 0.55);
}

.hero__lede h1,
.hero__lede p {
  text-shadow: 0 8px 24px rgba(2, 3, 8, 0.65);
}

.hero__lede .pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero__panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: clamp(1.5rem, 3vw, 2.8rem);
  background: linear-gradient(140deg, rgba(255, 111, 216, 0.18), rgba(102, 246, 255, 0.12))
              , rgba(4, 5, 26, 0.85);
  box-shadow: 0 45px 90px rgba(2, 3, 18, 0.65);
  display: grid;
  gap: 1.5rem;
}

.hero__panel h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-slate);
}

.hero__stats {
  display: grid;
  gap: 0.9rem;
}

.hero__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.hero__stat small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--muted-soft);
}

.hero__stat strong {
  font-size: 1.5rem;
  color: var(--text);
}

.hero__notes {
  display: grid;
  gap: 0.9rem;
}

.hero-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 20px 40px rgba(3, 2, 18, 0.35);
}

.hero-note__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--brand-electric);
  font-size: 0.95rem;
  flex: none;
}

.hero-note__body {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
}

.hero-note__body strong {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.hero__game {
  margin-top: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 2, 28, 0.9);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 25px 60px rgba(2, 3, 18, 0.55);
  display: grid;
  gap: 0.6rem;
}

.hero__game h4 {
  margin: 0;
  font-size: 1.1rem;
}

.hero__game small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  color: var(--muted-soft);
}

.embedded-game {
  margin-top: 2.5rem;
}

.embedded-game__shell {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 4, 18, 0.9);
  box-shadow: 0 45px 95px rgba(2, 3, 18, 0.65);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.embedded-game__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  background: #050510;
  box-shadow: 0 35px 80px rgba(2, 3, 18, 0.55);
}

.embedded-game__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.embedded-game__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.embedded-game__actions button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.embedded-game__actions button:hover,
.embedded-game__actions button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.5rem;
}

.stat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  box-shadow: 0 18px 45px rgba(5, 7, 18, 0.45);
}

.stat small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--muted-soft);
  margin-bottom: 0.4rem;
}

.stat strong {
  font-size: 1.7rem;
}

.section {
  padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.section--contrast {
  background: linear-gradient(120deg, rgba(4, 5, 28, 0.95), rgba(9, 14, 42, 0.82));
  border-block: 1px solid var(--border);
}

.section__header {
  margin-bottom: 2.2rem;
  max-width: 760px;
}

.section__header p {
  margin-top: 0.8rem;
}

.feature-grid,
.content-grid,
.support-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card,
.content-card,
.support-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
}

.spark-panel {
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 111, 216, 0.22), rgba(102, 246, 255, 0.18))
              , radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.15), transparent 55%)
              , rgba(8, 4, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
  box-shadow: 0 45px 90px rgba(3, 2, 24, 0.55);
}

.spark-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 380px at 85% 10%, rgba(102, 246, 255, 0.25), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.spark-panel > * {
  position: relative;
  z-index: 1;
}

.spark-panel h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.spark-panel__summary {
  font-size: 1.05rem;
  color: var(--text);
}

.spark-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.spark-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spark-panel__list {
  display: grid;
  gap: 0.8rem;
}

.spark-panel__list li {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--muted);
}

.spark-panel__list svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--brand-electric);
}

.phase-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .phase-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.phase-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 6, 28, 0.85);
  box-shadow: 0 25px 70px rgba(3, 2, 24, 0.45);
  display: grid;
  gap: 0.6rem;
}

.phase-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-amber);
}

.phase-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--brand-violet);
  font-size: 1.2rem;
}

.team-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.moderator-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(5, 7, 18, 0.45);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  display: grid;
  place-items: center;
  color: var(--brand-electric);
  font-size: 1.4rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.list-inline li {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callout {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(120deg, rgba(248, 207, 93, 0.18), rgba(63, 226, 214, 0.18));
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
}

.grid-split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.checklist svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--brand-electric);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: rgba(2, 7, 24, 0.92);
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer small {
  color: var(--muted-soft);
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer__logos a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.5rem;
}

.footer__logos img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer__logos a:hover img,
.footer__logos a:focus-visible img {
  opacity: 1;
}

.hero--sub {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.hero--sub .hero__grid {
  align-items: flex-start;
}

.hero--sub h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
}

.content-card--wide {
  grid-column: span 2;
}

.table-stack {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--surface-alt);
  box-shadow: var(--shadow-soft);
  width: 100%;
  border-collapse: collapse;
}

.table-stack th,
.table-stack td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--border);
}

.table-stack thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-soft);
}

.table-stack tr:last-child td {
  border-bottom: none;
}

.table-stack dl {
  display: grid;
  gap: 0.6rem;
}

dt {
  font-weight: 600;
  color: var(--text);
}

dd {
  margin: 0 0 0.6rem;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
}

textarea {
  min-height: 140px;
}

@media (max-width: 900px) {
  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .site-nav {
    flex-direction: column;
    gap: 0.4rem;
  }

  .button-row {
    flex-direction: column;
  }

}

