@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ink: #121a16;
  --ink-soft: #2f3d36;
  --mute: #6b7a72;
  --birch: #eef2ef;
  --birch-deep: #dce4de;
  --paper: #f7f9f7;
  --pine: #14201c;
  --signal: #b8f255;
  --signal-ink: #1a2e0e;
  --slate: #3d524a;
  --line: rgba(20, 32, 28, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Karla', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(184, 242, 85, 0.12), transparent 55%),
    linear-gradient(165deg, var(--paper) 0%, var(--birch) 48%, #e4ebe6 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.shell {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  background: var(--pine);
  color: var(--birch);
  border-bottom: 3px solid var(--signal);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  padding: 0.55rem 0;
  font-size: 0.8rem;
  font-weight: 500;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--signal);
  color: var(--signal-ink);
  padding: 0.28rem 0.55rem;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.topbar-copy {
  text-align: center;
  opacity: 0.92;
}

.topbar-year {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--signal);
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(247, 249, 247, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}

.brand-mark::after {
  content: '';
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 14px;
  height: 14px;
  background: var(--signal);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--pine);
  line-height: 1;
}

.brand-name em {
  font-style: normal;
  color: var(--slate);
  font-weight: 600;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 0.5rem 0.7rem;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--pine);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--pine);
  background: transparent;
  color: var(--pine);
  font-size: 1.15rem;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-toggle:hover,
.nav-toggle.is-open {
  background: var(--pine);
  color: var(--signal);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.25rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.nav-mobile.is-open {
  display: flex;
  animation: panelDrop 0.4s var(--ease);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-soft);
  padding: 0.95rem 0.2rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mobile a span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.1em;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--pine);
}

.nav-mobile a.active span,
.nav-mobile a:hover span {
  color: var(--signal-ink);
  background: var(--signal);
  padding: 0.15rem 0.4rem;
}

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--pine);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(18, 26, 22, 0.88) 0%, rgba(18, 26, 22, 0.55) 42%, rgba(18, 26, 22, 0.25) 68%, rgba(18, 26, 22, 0.45) 100%),
    linear-gradient(0deg, rgba(18, 26, 22, 0.75) 0%, transparent 42%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 242, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 85, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 75%, transparent);
  animation: gridPulse 6s ease-in-out infinite;
}

.hero-rail {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(238, 242, 239, 0.55);
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 4.5rem;
  max-width: min(720px, 100%);
  margin-left: max(1rem, calc((100% - 1240px) / 2 + 1rem));
  overflow-wrap: anywhere;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 8.5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin-bottom: 1.35rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: none;
}

.hero-brand .line {
  display: block;
  max-width: 100%;
}

.hero-brand .accent {
  color: var(--signal);
  position: relative;
  display: inline-block;
}

.hero-brand .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: var(--signal);
  opacity: 0.35;
  animation: underlineGrow 1.2s var(--ease) 0.6s both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 3.4vw, 1.55rem);
  line-height: 1.35;
  color: var(--birch);
  max-width: min(22ch, 100%);
  margin-bottom: 0.85rem;
}

.hero-text {
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  color: rgba(238, 242, 239, 0.82);
  max-width: min(36ch, 100%);
  margin-bottom: 2.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.6rem;
  background: var(--signal);
  color: var(--signal-ink);
  border: none;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
  cursor: pointer;
}

.btn-signal:hover {
  transform: translateY(-3px);
  background: #c8ff6a;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 1.6rem;
  color: var(--paper);
  border: 1.5px solid rgba(238, 242, 239, 0.4);
  background: transparent;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--signal);
  color: var(--signal);
  transform: translateY(-3px);
}

.hero-slash {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 42%;
  height: 120%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(160deg, transparent 40%, rgba(184, 242, 85, 0.08) 50%, transparent 60%);
  transform: skewX(-18deg);
  animation: slashSweep 8s ease-in-out infinite;
}

.games-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  overflow: hidden;
}

.games-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -8%;
  width: 280px;
  height: 280px;
  background: rgba(184, 242, 85, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none;
}

.games-head {
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.games-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.7rem;
}

.games-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--pine);
  margin-bottom: 0.85rem;
  overflow-wrap: anywhere;
}

.games-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 42ch;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.game-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 32, 28, 0.28);
}

.game-visual {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--pine);
}

.game-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.game-card:hover .game-visual img {
  transform: scale(1.06);
}

.game-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.game-type {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.game-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.game-name a {
  color: var(--pine);
}

.game-name a:hover {
  color: var(--slate);
}

.game-play {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.2rem;
  background: var(--pine);
  color: var(--signal);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 92% 100%, 0 100%);
}

.game-play:hover {
  background: var(--signal);
  color: var(--signal-ink);
  transform: translateY(-2px);
}

.content-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.section-kicker.signal {
  color: var(--signal);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.85rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--pine);
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-heading.light {
  color: var(--paper);
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 48ch;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pine);
  border-bottom: 2px solid var(--signal);
  padding-bottom: 0.2rem;
}

.text-link:hover {
  color: var(--slate);
}

.about-section {
  background:
    linear-gradient(135deg, rgba(184, 242, 85, 0.08), transparent 40%),
    var(--paper);
  border-block: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.experience-section {
  background: transparent;
}

.experience-head {
  max-width: 620px;
  margin-bottom: 2.75rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.experience-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem 1.85rem;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
  min-height: 100%;
}

.experience-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--signal-ink);
  background: var(--signal);
  padding: 0.3rem 0.55rem;
  margin-bottom: 1.1rem;
}

.experience-item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--pine);
  margin-bottom: 0.75rem;
}

.experience-item p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.disclaimer-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.disclaimer-panel {
  background: var(--pine);
  color: var(--birch);
  padding: clamp(2rem, 5vw, 3.5rem);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 98% 100%, 0 100%);
  border-top: 3px solid var(--signal);
}

.disclaimer-intro {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.disclaimer-block {
  background: rgba(247, 249, 247, 0.05);
  border: 1px solid rgba(238, 242, 239, 0.12);
  padding: 1.6rem 1.45rem;
}

.disclaimer-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--signal);
  color: var(--signal-ink);
  margin-bottom: 1rem;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
  font-size: 1.1rem;
}

.disclaimer-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--paper);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.disclaimer-block p {
  color: rgba(238, 242, 239, 0.84);
  margin-bottom: 0.9rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.disclaimer-block p:last-child {
  margin-bottom: 0;
}

.disclaimer-note {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(238, 242, 239, 0.14);
  color: rgba(238, 242, 239, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.values-section {
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(184, 242, 85, 0.1), transparent 55%),
    var(--birch);
  border-top: 1px solid var(--line);
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.value-row:first-child {
  padding-top: 0;
}

.value-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-row h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--pine);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: -0.02em;
}

.value-row h3 i {
  color: var(--slate);
  font-size: 1rem;
}

.value-row p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.site-footer {
  background: var(--pine);
  color: var(--birch-deep);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 3px solid var(--signal);
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 2rem 1.75rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(238, 242, 239, 0.12);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.footer-brand span {
  color: var(--signal);
}

.footer-about {
  color: rgba(238, 242, 239, 0.78);
  line-height: 1.75;
  max-width: 42ch;
  font-size: 0.98rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: rgba(238, 242, 239, 0.82);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--signal);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(238, 242, 239, 0.12);
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  background: rgba(247, 249, 247, 0.06);
  border: 1px solid rgba(238, 242, 239, 0.14);
  padding: 0.65rem 0.85rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.footer-badge-link:hover {
  border-color: var(--signal);
  background: rgba(184, 242, 85, 0.08);
}

.footer-badge-link img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-disclaimers {
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid rgba(238, 242, 239, 0.12);
}

.footer-disclaimers p {
  color: rgba(238, 242, 239, 0.76);
  line-height: 1.75;
  font-size: 0.95rem;
  max-width: 95ch;
}

.footer-disclaimers strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: rgba(238, 242, 239, 0.65);
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-bottom-links a {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(238, 242, 239, 0.78);
}

.footer-bottom-links a:hover {
  color: var(--signal);
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.2%, 0.8%); }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

@keyframes slashSweep {
  0%, 100% { opacity: 0.4; transform: skewX(-18deg) translateX(0); }
  50% { opacity: 0.9; transform: skewX(-18deg) translateX(-3%); }
}

@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes panelDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-body > * {
  animation: rise 0.9s var(--ease) both;
}

.hero-body .hero-brand { animation-delay: 0.08s; }
.hero-body .hero-title { animation-delay: 0.22s; }
.hero-body .hero-text { animation-delay: 0.36s; }
.hero-body .hero-actions { animation-delay: 0.5s; }

@media (max-width: 1099px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-rail {
    display: none;
  }

  .hero-body {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout,
  .values-layout,
  .disclaimer-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.45rem;
  }

  .topbar-badge,
  .topbar-year {
    justify-self: center;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tag {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-body {
    padding: 2.75rem 0 3rem;
    width: calc(100% - 1.5rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-brand {
    font-size: clamp(1.85rem, 11vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
  }

  .hero-brand .line:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 0.12em;
  }

  .hero-title {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-signal,
  .btn-outline {
    justify-content: center;
  }

  .section-heading,
  .games-heading {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .games-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero-brand {
    font-size: clamp(1.65rem, 10.5vw, 2.1rem);
  }

  .hero-brand .line:last-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero-brand .accent {
    line-height: 1;
  }
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10, 18, 15, 0.82);
  backdrop-filter: blur(8px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate-card {
  width: min(520px, 100%);
  background: linear-gradient(160deg, #1a2b24 0%, #14201c 100%);
  border: 1px solid rgba(184, 242, 85, 0.35);
  border-top: 3px solid var(--signal);
  padding: 2rem 1.75rem 1.75rem;
  color: var(--birch);
  box-shadow: 0 0 40px rgba(184, 242, 85, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 97% 100%, 0 100%);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  background: var(--signal);
  color: var(--signal-ink);
  padding: 0.35rem 0.7rem;
  margin-bottom: 1rem;
}

.age-gate-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 0.85rem;
}

.age-gate-card p {
  color: rgba(238, 242, 239, 0.84);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

.age-gate-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0 1.35rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--birch);
}

.age-gate-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--signal);
  flex-shrink: 0;
}

.age-gate-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.95rem 1.2rem;
  background: var(--signal);
  color: var(--signal-ink);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 96% 100%, 0 100%);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.age-gate-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.age-gate-btn:not(:disabled):hover {
  transform: translateY(-2px);
  background: #c8ff6a;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 99990;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  background: #14201c;
  border: 1px solid rgba(184, 242, 85, 0.3);
  border-left: 4px solid var(--signal);
  padding: 1.15rem 1.25rem;
  color: var(--birch);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.cookie-consent-copy {
  flex: 1 1 280px;
}

.cookie-consent-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--paper);
  margin-bottom: 0.35rem;
}

.cookie-consent-copy p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(238, 242, 239, 0.8);
}

.cookie-consent-copy a {
  color: var(--signal);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1.1rem;
}

.cookie-btn-accept {
  background: var(--signal);
  color: var(--signal-ink);
}

.cookie-btn-essential {
  background: transparent;
  color: var(--birch);
  border: 1px solid rgba(238, 242, 239, 0.35);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(20, 32, 28, 0.94), rgba(20, 32, 28, 0.78)),
    radial-gradient(ellipse at top right, rgba(184, 242, 85, 0.18), transparent 50%);
  color: var(--paper);
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 3px solid var(--signal);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.page-hero h1 span {
  color: var(--signal);
}

.page-hero p {
  max-width: 54ch;
  color: rgba(238, 242, 239, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.page-main {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--pine);
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.prose a {
  color: var(--pine);
  border-bottom: 1px solid var(--signal);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 820px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
}

.faq-item h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--pine);
  margin-bottom: 0.65rem;
}

.faq-item p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  max-width: 900px;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--pine);
  margin-bottom: 0.85rem;
}

.contact-card p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--pine);
  background: rgba(184, 242, 85, 0.2);
  padding: 0.85rem 1.1rem;
  border-left: 3px solid var(--signal);
}

.compliance-strip {
  background: rgba(184, 242, 85, 0.12);
  border: 1px solid rgba(20, 32, 28, 0.12);
  padding: 1rem 1.15rem;
  margin-top: 1.5rem;
  max-width: 760px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

.game-page-wrap {
  padding: clamp(2.5rem, 5vw, 4rem) 0 4rem;
}

.game-page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.035em;
  color: var(--pine);
  margin-bottom: 0.5rem;
}

.game-page-type {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.game-stage {
  background: radial-gradient(circle at top, #1f332c 0%, #0f1815 55%, #0a1210 100%);
  border: 1px solid rgba(184, 242, 85, 0.25);
  border-top: 3px solid var(--signal);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(184, 242, 85, 0.08), inset 0 0 80px rgba(184, 242, 85, 0.04);
}

.game-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 242, 85, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 85, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.game-notice {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
  max-width: 900px;
}

.game-notice h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--pine);
  margin-bottom: 0.7rem;
}

.game-notice p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.game-notice p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }
}
