@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #080810;
  --ink-soft: #12121c;
  --ink-card: #181824;
  --ink-line: rgba(255, 255, 255, 0.08);
  --gold: #fbbf24;
  --gold-soft: #fde68a;
  --rose: #f472b6;
  --rose-deep: #db2777;
  --violet: #6366f1;
  --cyan: #22d3ee;
  --text: #f1f5f9;
  --text-dim: #94a3b8;
  --text-faint: #64748b;
  --grad-warm: linear-gradient(120deg, var(--gold) 0%, var(--rose) 55%, var(--violet) 100%);
  --grad-soft: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(244, 114, 182, 0.15) 100%);
  --shadow-warm: 0 20px 60px rgba(251, 191, 36, 0.12);
  --ease: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-fluid {
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

.topbar {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--ink-line);
}

.topbar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.topbar-age {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  background: var(--grad-soft);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 6px;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.topbar-age i {
  font-size: 0.6875rem;
  color: var(--gold);
}

.topbar-text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.topbar-text strong {
  color: var(--text);
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(8, 8, 16, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-line);
}

.header-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.brand-hex {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-hex svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.35));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-domain {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav-pill {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
}

.nav-list li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: all var(--ease);
}

.nav-list li a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-list li a.active {
  color: var(--ink);
  background: var(--grad-warm);
  font-weight: 600;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.08);
  transition: all var(--ease);
}

.header-cta i {
  font-size: 0.75rem;
  transition: transform var(--ease);
}

.header-cta:hover {
  background: rgba(251, 191, 36, 0.16);
  border-color: var(--gold);
  color: var(--text);
}

.header-cta:hover i {
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}

.menu-toggle.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--ink-soft);
  border-left: 1px solid var(--ink-line);
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform var(--ease);
  display: flex;
  flex-direction: column;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  color: var(--text);
  font-size: 1.125rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: all var(--ease);
}

.drawer-close:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.drawer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.drawer-nav li {
  border-bottom: 1px solid var(--ink-line);
}

.drawer-nav li a {
  display: block;
  padding: 1rem 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--ease);
}

.drawer-nav li a:hover,
.drawer-nav li a.active {
  color: var(--gold-soft);
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem;
  background: var(--grad-warm);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 14px;
  margin-top: 1rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(251, 191, 36, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(244, 114, 182, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-a {
  width: 400px;
  height: 400px;
  background: rgba(251, 191, 36, 0.15);
  top: 10%;
  left: -5%;
  animation: drift-a 12s ease-in-out infinite;
}

.hero-glow-b {
  width: 350px;
  height: 350px;
  background: rgba(244, 114, 182, 0.12);
  bottom: 5%;
  right: 10%;
  animation: drift-b 14s ease-in-out infinite;
}

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}

@keyframes drift-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25px, -15px); }
}

.hero-shell {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 1rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.hero-headline {
  margin: 0 0 1.5rem;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 0.95;
}

.hero-headline .line-muted {
  display: block;
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: var(--text);
  font-style: italic;
}

.hero-headline .line-accent {
  display: block;
  font-size: clamp(3rem, 8vw, 5.75rem);
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 0 2rem;
  font-weight: 400;
}

.hero-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  background: var(--grad-warm);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 14px;
  border: none;
  box-shadow: var(--shadow-warm);
  transition: all var(--ease);
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(251, 191, 36, 0.25);
  color: var(--ink);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--ease);
}

.btn-ghost i {
  font-size: 0.75rem;
  transition: transform var(--ease);
}

.btn-ghost:hover {
  border-color: rgba(244, 114, 182, 0.4);
  background: rgba(244, 114, 182, 0.08);
  color: var(--text);
}

.btn-ghost:hover i {
  transform: translateX(3px);
}

.hero-metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  max-width: fit-content;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold-soft);
}

.metric-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: var(--ink-line);
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-outer {
  width: 100%;
  height: 100%;
  animation: spin-slow 40s linear infinite;
}

.orbit-ring-inner {
  width: 68%;
  height: 68%;
  border-color: rgba(251, 191, 36, 0.15);
  animation: spin-slow 30s linear infinite reverse;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--ink-card);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-warm);
  z-index: 5;
}

.orbit-core::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--grad-warm);
  z-index: -1;
}

.orbit-core-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink-card);
  border-radius: 50%;
}

.orbit-core-inner i {
  font-size: 1.5rem;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.orbit-core-inner span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.orbit-core-inner small {
  font-size: 0.625rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.orbit-card {
  position: absolute;
  width: 148px;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform var(--ease), box-shadow var(--ease);
  z-index: 4;
}

.orbit-card:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
  z-index: 6;
}

.orbit-card-1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation: float-card 6s ease-in-out infinite;
}

.orbit-card-2 {
  bottom: 18%;
  left: 0;
  animation: float-card 6s ease-in-out infinite 2s;
}

.orbit-card-3 {
  bottom: 18%;
  right: 0;
  animation: float-card 6s ease-in-out infinite 4s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.orbit-card-1:hover {
  animation-play-state: paused;
  transform: translateX(-50%) scale(1.06);
}

.orbit-card-2:hover,
.orbit-card-3:hover {
  animation-play-state: paused;
  transform: scale(1.06);
}

.orbit-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.orbit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-card-info {
  padding: 0.75rem;
}

.orbit-card-info h3 {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.orbit-card-info span {
  font-size: 0.6875rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.orbit-card-info span i {
  color: var(--cyan);
  font-size: 0.5625rem;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: var(--text-faint);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-track {
  width: 48px;
  height: 2px;
  background: var(--ink-line);
  border-radius: 2px;
  overflow: hidden;
}

.scroll-thumb {
  width: 50%;
  height: 100%;
  background: var(--grad-warm);
  border-radius: 2px;
  animation: scroll-slide 2s ease-in-out infinite;
}

@keyframes scroll-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(100%); }
}

.hero-footer-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--ink-line);
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dim);
  flex-shrink: 0;
}

.strip-inner span i {
  color: var(--gold);
  font-size: 0.75rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.games-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-line);
}

.games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: var(--grad-warm);
  opacity: 0.5;
}

.games-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

.games-header-copy {
  max-width: 560px;
}

.games-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.games-desc {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.0625rem;
  max-width: 480px;
}

.games-view-all {
  flex-shrink: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.game-tile {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.game-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: var(--shadow-warm);
}

.game-tile-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.game-tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.game-tile:hover .game-tile-visual img {
  transform: scale(1.05);
}

.game-tile-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  background: rgba(8, 8, 16, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-tile-tag i {
  font-size: 0.625rem;
  color: var(--gold);
}

.game-tile-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 1rem;
  align-items: center;
}

.game-tile-name {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--ease);
}

.game-tile-name:hover {
  color: var(--gold-soft);
}

.game-tile-type {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.game-tile-play {
  grid-column: 2;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--grad-warm);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all var(--ease);
  align-self: center;
}

.game-tile-play i {
  font-size: 0.6875rem;
}

.game-tile-play:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.25);
  color: var(--ink);
}

.content-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.about-section {
  background: var(--ink);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.section-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.section-lead.centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-text {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.about-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-panel-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  transition: border-color var(--ease);
}

.about-panel-item:hover {
  border-color: rgba(251, 191, 36, 0.25);
}

.about-panel-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-soft);
  border-radius: 12px;
  color: var(--gold);
  font-size: 1.125rem;
}

.about-panel-item h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.about-panel-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.values-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-line);
}

.values-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  transition: transform var(--ease), border-color var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 114, 182, 0.3);
}

.value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 114, 182, 0.12);
  border-radius: 14px;
  color: var(--rose);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.value-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.disclaimer-section {
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
}

.disclaimer-box {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--ink-card);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.disclaimer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-warm);
}

.disclaimer-icon-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-soft);
  border-radius: 18px;
  font-size: 1.75rem;
  color: var(--gold);
}

.disclaimer-content {
  flex: 1;
}

.disclaimer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.disclaimer-badge i {
  font-size: 0.6875rem;
  color: var(--gold);
}

.site-footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-line);
}

.footer-disclaimer-bar {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ink-line);
  background: rgba(251, 191, 36, 0.05);
}

.footer-disclaimer-bar p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer-bar strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--ink-line);
}

.footer-brand-col {
  max-width: 360px;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 0.625rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
}

.footer-links-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.footer-links-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-col ul li {
  margin-bottom: 0.625rem;
}

.footer-links-col ul li a {
  font-size: 0.9375rem;
  color: var(--text-dim);
  transition: color var(--ease);
}

.footer-links-col ul li a:hover {
  color: var(--gold-soft);
}

.footer-legal-note {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--ink-line);
}

.footer-legal-note p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-faint);
  line-height: 1.75;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--text-faint);
  transition: color var(--ease);
}

.footer-bottom-links a:hover {
  color: var(--text-dim);
}

.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--ink-soft);
  border-bottom: 1px solid var(--ink-line);
}

.page-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.0625rem;
  max-width: 640px;
  line-height: 1.7;
}

.page-content {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.page-content-inner {
  max-width: 820px;
}

.page-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.page-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-dim);
}

.page-content ul li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--gold-soft);
  transition: color var(--ease);
}

.page-content a:hover {
  color: var(--gold);
}

.page-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-faint);
  margin-bottom: 2rem;
}

.page-updated i {
  color: var(--gold);
}

@media (max-width: 991.98px) {
  .section-split {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disclaimer-box {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .games-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .games-view-all {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1199.98px) {
  .nav-list li a {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 991.98px) {
  .nav-pill,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-controls {
    justify-content: center;
  }

  .hero-metrics {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stage {
    max-width: 400px;
  }

  .orbit-card {
    width: 130px;
  }

  .hero-scroll {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .topbar-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    padding-top: 2rem;
  }

  .hero-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-glow,
  .btn-ghost {
    justify-content: center;
  }

  .hero-metrics {
    width: 100%;
    justify-content: center;
  }

  .hero-stage {
    max-width: 320px;
  }

  .orbit-card {
    width: 110px;
    border-radius: 12px;
  }

  .orbit-core {
    width: 110px;
    height: 110px;
  }

  .orbit-core-inner span {
    font-size: 0.875rem;
  }

  .orbit-card-2 {
    left: -2%;
  }

  .orbit-card-3 {
    right: -2%;
  }
}

@media (max-width: 575.98px) {
  .brand-domain {
    display: none;
  }

  .metric-divider {
    display: none;
  }

  .hero-metrics {
    gap: 1rem;
  }
}
