@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=Manrope:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap");

:root {
  --background: hsl(230 24% 6%);
  --foreground: hsl(30 18% 96%);
  --card: hsl(230 22% 9%);
  --primary: hsl(22 95% 60%);
  --primary-foreground: hsl(230 30% 6%);
  --accent: hsl(220 12% 78%);
  --pearl: hsl(30 35% 92%);
  --pearl-warm: hsl(28 60% 88%);
  --secondary: hsl(230 18% 13%);
  --muted: hsl(230 14% 14%);
  --muted-foreground: hsl(225 10% 66%);
  --border: hsl(225 18% 20%);
  --gradient-pearl: linear-gradient(135deg, hsl(30 35% 92%) 0%, hsl(220 12% 78%) 50%, hsl(28 60% 88%) 100%);
  --gradient-ember: linear-gradient(135deg, hsl(22 95% 60%) 0%, hsl(14 90% 52%) 100%);
  --gradient-silver: linear-gradient(135deg, hsl(220 14% 82%) 0%, hsl(225 10% 60%) 100%);
  --gradient-night: linear-gradient(160deg, hsl(230 30% 8%) 0%, hsl(230 20% 12%) 100%);
  --shadow-ember: 0 18px 48px -16px hsl(22 95% 60% / 0.5);
  --shadow-pearl: 0 18px 48px -16px hsl(30 60% 88% / 0.25);
  --shadow-card: 0 12px 36px -16px hsl(230 60% 2% / 0.8);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, monospace;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foreground);
  font-family: var(--font-body);
  background-color: var(--background);
  background-image:
    radial-gradient(ellipse 70% 45% at 50% 0%, hsl(22 80% 22% / 0.35), transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 80%, hsl(30 40% 50% / 0.1), transparent 60%),
    radial-gradient(ellipse 50% 35% at 0% 100%, hsl(220 30% 30% / 0.2), transparent 60%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.surface,
.surface-pearl,
.surface-ember {
  backdrop-filter: blur(14px);
}

.surface {
  background: linear-gradient(180deg, hsl(230 22% 11% / 0.85), hsl(230 26% 7% / 0.85));
  border: 1px solid hsl(225 18% 22% / 0.7);
  box-shadow: var(--shadow-card);
}

.surface-pearl {
  background: linear-gradient(180deg, hsl(30 30% 94% / 0.06), hsl(220 14% 70% / 0.04));
  border: 1px solid hsl(30 30% 80% / 0.18);
}

.surface-ember {
  background: linear-gradient(180deg, hsl(22 70% 22% / 0.4), hsl(230 26% 7% / 0.6));
  border: 1px solid hsl(22 80% 50% / 0.35);
}

.text-ember,
.text-pearl,
.text-silver {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-ember {
  background-image: var(--gradient-ember);
}

.text-pearl {
  background-image: var(--gradient-pearl);
}

.text-silver {
  background-image: var(--gradient-silver);
}

.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.muted {
  color: var(--muted-foreground);
}

.bg-ember {
  background: var(--gradient-ember);
  color: var(--primary-foreground);
}

.rounded-2xl {
  border-radius: 24px;
}

.rounded-3xl {
  border-radius: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.pill:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-ember);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-ember);
  font-weight: 700;
}

.btn-secondary {
  background: linear-gradient(180deg, hsl(230 22% 11% / 0.85), hsl(230 26% 7% / 0.85));
  color: var(--foreground);
  border: 1px solid hsl(225 18% 22% / 0.7);
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-shell {
  padding-top: 16px;
}

.header-bar {
  height: 64px;
  border-radius: 22px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-bar.is-scrolled {
  background: linear-gradient(180deg, hsl(230 22% 11% / 0.9), hsl(230 26% 7% / 0.9));
  border: 1px solid hsl(225 18% 22% / 0.7);
  box-shadow: var(--shadow-card);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: var(--gradient-night);
  box-shadow: inset 0 1px 0 hsl(30 60% 90% / 0.18), 0 0 0 1px hsl(225 18% 22%);
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  background: var(--gradient-pearl);
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gradient-ember);
  box-shadow: 0 0 14px hsl(22 95% 60% / 0.85);
}

.logo-wordmark {
  line-height: 1;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}

.logo-sub {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted-foreground);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.header-nav a.active {
  color: var(--foreground);
}

.header-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gradient-ember);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-locale {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, hsl(230 22% 11% / 0.85), hsl(230 26% 7% / 0.85));
  border: 1px solid hsl(225 18% 22% / 0.7);
  color: var(--foreground);
}

.mobile-nav {
  margin-top: 10px;
  padding: 12px;
  border-radius: 22px;
  display: none;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--muted-foreground);
}

.mobile-nav a.active {
  background: var(--secondary);
  color: var(--foreground);
}

.hero {
  padding: 48px 0 112px;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}

.hero-title {
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  line-height: 0.95;
  font-weight: 800;
}

.hero-title .hero-subline {
  display: block;
  margin-top: 22px;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 0.55em;
  line-height: 1.55;
  letter-spacing: normal;
  color: hsl(225 10% 66% / 0.85);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 420px;
}

.hero-stat {
  padding: 18px;
  border-radius: 22px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
}

.hero-stat-label {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.hero-visual {
  position: relative;
}

.orb-shell {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin-left: auto;
}

.orb-blob,
.orb-crescent,
.orb-ring,
.orb-dots {
  position: absolute;
}

.orb-blob {
  inset: 24px;
  background: var(--gradient-pearl);
  box-shadow: 0 30px 80px -20px hsl(30 60% 80% / 0.35);
  animation: blob 18s ease-in-out infinite;
}

.orb-crescent {
  left: -8px;
  bottom: -16px;
  width: 176px;
  height: 176px;
  border-radius: 999px;
  background: var(--gradient-ember);
  box-shadow: 0 30px 80px -20px hsl(22 95% 50% / 0.6);
  animation: float 6s ease-in-out infinite;
}

.orb-ring {
  inset: 8px;
  border-radius: 999px;
  border: 1px solid hsl(30 35% 92% / 0.3);
  box-shadow: inset 0 0 60px hsl(220 12% 78% / 0.25);
  animation: spin 22s linear infinite;
}

.orb-dots {
  inset: 0;
  border-radius: 999px;
  opacity: 0.6;
  background-image: radial-gradient(hsl(30 30% 80% / 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hero-tile {
  position: absolute;
  width: 132px;
  padding: 10px;
  border-radius: 22px;
  animation: float 9s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-tile:hover {
  transform: scale(1.05);
}

.hero-tile:nth-child(5) {
  top: 8px;
  right: 0;
  transform: rotate(-6deg);
}

.hero-tile:nth-child(6) {
  left: -16px;
  bottom: 40px;
  transform: rotate(8deg);
}

.hero-tile:nth-child(7) {
  top: 34%;
  right: -24px;
  transform: rotate(3deg);
}

.hero-tile:nth-child(5),
.hero-tile:nth-child(6),
.hero-tile:nth-child(7) {
  background: linear-gradient(180deg, hsl(230 22% 11% / 0.85), hsl(230 26% 7% / 0.85));
  border: 1px solid hsl(225 18% 22% / 0.7);
  box-shadow: var(--shadow-card);
}

.hero-tile-media {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--secondary);
}

.hero-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tile-label {
  margin-top: 8px;
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-center-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-center-mark > span {
  width: 80px;
  height: 80px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, hsl(230 22% 11% / 0.9), hsl(230 26% 7% / 0.9));
  border: 1px solid hsl(225 18% 22% / 0.7);
  box-shadow: var(--shadow-ember);
}

.hero-live {
  position: absolute;
  right: 8px;
  bottom: -24px;
  padding: 14px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-avatars {
  display: flex;
  margin-right: 4px;
}

.hero-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid var(--background);
  background: var(--gradient-pearl);
  margin-left: -8px;
}

.hero-avatars span:first-child {
  margin-left: 0;
}

.ticker-mask {
  margin-top: 80px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  animation: marquee 32s linear infinite;
}

.ticker-group {
  display: flex;
  gap: 32px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section-kicker {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.section-title {
  margin-top: 12px;
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.section-copy {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-pill {
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-foreground);
  background: linear-gradient(180deg, hsl(230 22% 11% / 0.85), hsl(230 26% 7% / 0.85));
  border: 1px solid hsl(225 18% 22% / 0.7);
}

.filter-pill.active {
  color: var(--primary-foreground);
  background: var(--gradient-ember);
  box-shadow: var(--shadow-ember);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-ember);
}

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

.game-card-shine {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  opacity: 0.6;
  background: linear-gradient(90deg, transparent, hsl(30 30% 80% / 0.6), transparent);
  z-index: 2;
}

.game-card-media {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, hsl(22 60% 35% / 0.45), transparent 60%), var(--gradient-night);
}

.game-card.default .game-card-media {
  aspect-ratio: 5 / 6;
}

.game-card.wide .game-card-media {
  aspect-ratio: 16 / 9;
}

.game-card-media img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.7s ease;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.6));
}

.game-card:hover .game-card-media img {
  transform: scale(1.1) rotate(-2deg);
}

.game-chip,
.game-category {
  position: absolute;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 10px;
  z-index: 2;
}

.game-chip {
  left: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.game-category {
  right: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--gradient-ember);
  color: var(--primary-foreground);
}

.game-hover {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.game-card:hover .game-hover {
  transform: translateY(0);
  opacity: 1;
}

.game-hover-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.game-hover-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-ember);
  color: var(--primary-foreground);
}

.game-card-body {
  padding: 20px;
}

.game-card-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.game-card-title {
  font-size: 20px;
  line-height: 1.15;
}

.game-card-vibe {
  padding: 4px 8px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-card-copy {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.7;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.game-tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--muted-foreground);
  font-size: 10px;
}

.promo-grid,
.features-head,
.reviews-grid,
.faq-grid,
.games-page-head,
.detail-grid,
.contact-grid,
.about-grid,
.legal-wrap,
.mobile-block {
  display: grid;
  gap: 24px;
}

.promo-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
}

.promo-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
}

.promo-decor,
.promo-decor-two {
  position: absolute;
  width: 288px;
  height: 288px;
  opacity: 0.22;
  animation: blob 18s ease-in-out infinite;
}

.promo-decor {
  top: -96px;
  right: -96px;
  background: var(--gradient-ember);
}

.promo-decor-two {
  left: -96px;
  bottom: -96px;
  background: var(--gradient-pearl);
  animation-delay: 4s;
}

.promo-items {
  display: grid;
  gap: 16px;
}

.promo-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
}

.promo-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-ember);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-ember);
  flex: 0 0 auto;
}

.promo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.promo-item h3 {
  font-size: 20px;
}

.promo-tag {
  padding: 4px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.promo-item p {
  margin-top: 8px;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 14px;
}

.features-head {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.features-grid > article {
  padding: 28px;
  background: var(--card);
}

.features-index {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.features-icon {
  width: 44px;
  height: 44px;
  margin: 20px 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.features-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.features-grid p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 14px;
}

.reviews-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.review-spotlight {
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.quote-mark {
  position: absolute;
  left: -12px;
  top: -24px;
  width: 176px;
  height: 176px;
  color: hsl(22 95% 60% / 0.1);
  transform: rotate(-12deg);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-tag {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--gradient-ember);
  color: var(--primary-foreground);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--primary);
}

.review-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.3;
}

.review-bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px hsl(22 95% 60% / 0.4);
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.review-dot.active {
  width: 32px;
  background: var(--gradient-ember);
}

.ratings-card,
.live-note {
  padding: 28px;
}

.ratings-score {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-bottom: 20px;
}

.ratings-score strong {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.9;
}

.distribution {
  display: grid;
  gap: 10px;
}

.distribution-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}

.distribution-bar {
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--secondary);
}

.distribution-bar span {
  display: block;
  height: 100%;
  background: var(--gradient-ember);
}

.mobile-block {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.mobile-copy {
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.mobile-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-foreground);
}

.mobile-copy li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.mobile-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: radial-gradient(ellipse at center, hsl(22 80% 35% / 0.35), transparent 60%);
}

.mobile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(hsl(30 30% 80% / 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}

.phone-frame {
  position: relative;
  width: 256px;
  height: 460px;
  padding: 12px;
  border-radius: 44px;
  box-shadow: var(--shadow-ember);
  animation: float 6s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 80px;
  height: 20px;
  margin-left: -40px;
  border-radius: 999px;
  background: var(--background);
  z-index: 2;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--gradient-night);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-card {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  border-radius: 18px;
}

.faq-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
}

.faq-side {
  position: sticky;
  top: 112px;
  align-self: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: start;
  gap: 16px;
  text-align: left;
  background: transparent;
  color: var(--foreground);
}

.faq-number {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-top: 6px;
}

.faq-question {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  padding: 0 24px 24px 56px;
  margin-top: -6px;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 14px;
}

.site-footer {
  position: relative;
  margin-top: 96px;
}

.footer-card {
  overflow: hidden;
}

.footer-top,
.footer-links,
.footer-bottom {
  padding-left: 32px;
  padding-right: 32px;
}

.footer-top {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid hsl(225 18% 20% / 0.6);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.footer-copy {
  max-width: 520px;
  margin-top: 20px;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 14px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid hsl(225 18% 20% / 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: hsl(230 24% 6% / 0.9);
  backdrop-filter: blur(12px);
}

.age-gate {
  position: relative;
  width: min(100%, 540px);
  padding: 40px;
  border-radius: 28px;
  box-shadow: var(--shadow-pearl);
}

.age-gate::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(22 95% 60% / 0.7), transparent);
}

.age-gate-copy {
  margin: 14px 0 28px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 420px;
}

.cookie-card {
  padding: 18px;
  display: flex;
  align-items: start;
  gap: 14px;
  border-radius: 22px;
}

.cookie-copy {
  flex: 1;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  background: hsl(230 18% 13% / 0.8);
  border: 1px solid hsl(225 18% 22% / 0.9);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cookie-close:hover {
  color: var(--foreground);
  background: hsl(230 18% 16% / 0.95);
  border-color: hsl(22 95% 60% / 0.45);
  transform: translateY(-1px);
}

.cookie-close .icon {
  width: 16px;
  height: 16px;
}

.toast {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 80;
  padding: 14px 18px;
  border-radius: 16px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.games-page-head {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.games-page-panel {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.games-page-panel .surface {
  padding: 16px;
  border-radius: 18px;
}

.toolbar {
  margin-bottom: 32px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: 22px;
}

.search-wrap {
  position: relative;
  flex: 1 1 240px;
}

.search-wrap .icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--foreground);
  border: 1px solid transparent;
  outline: none;
}

.search-input:focus {
  border-color: hsl(22 95% 60% / 0.4);
}

.view-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  gap: 4px;
}

.view-toggle button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--muted-foreground);
  background: transparent;
}

.view-toggle button.active {
  background: var(--gradient-ember);
  color: var(--primary-foreground);
}

.games-list {
  display: grid;
  gap: 12px;
}

.game-list-item {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-list-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-ember);
}

.game-list-thumb {
  width: 80px;
  height: 80px;
  padding: 4px;
  border-radius: 14px;
  flex: 0 0 auto;
  background: var(--gradient-night);
}

.game-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game-list-body {
  flex: 1;
  min-width: 0;
}

.game-list-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.game-list-meta span {
  font-size: 10px;
}

.game-list-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.game-list-copy {
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-hero {
  position: relative;
}

.detail-top {
  padding-top: 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.detail-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.detail-banner-media {
  position: relative;
  aspect-ratio: 21 / 8;
  background-size: cover;
  background-position: center;
}

.detail-banner-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, hsl(230 24% 6% / 0.92) 100%),
    linear-gradient(90deg, hsl(230 24% 6% / 0.6) 0%, transparent 60%);
}

.detail-banner-top,
.detail-banner-bottom {
  position: absolute;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 1;
}

.detail-banner-top {
  top: 20px;
}

.detail-banner-bottom {
  bottom: 24px;
  align-items: end;
}

.detail-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
}

.detail-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  margin-top: 48px;
}

.detail-player {
  display: grid;
  gap: 10px;
}

.detail-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
}

.detail-stage iframe,
.detail-launcher {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-launcher {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.detail-launcher::before {
  content: "";
  position: absolute;
  inset: 0;
  background: hsl(230 24% 6% / 0.65);
  transition: background-color 0.25s ease;
}

.detail-launcher:hover::before {
  background: hsl(230 24% 6% / 0.45);
}

.detail-launch-content {
  position: relative;
  text-align: center;
}

.detail-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-foreground);
}

.detail-aside {
  display: grid;
  gap: 16px;
}

.detail-note,
.detail-meta {
  padding: 22px;
}

.detail-note {
  display: flex;
  align-items: start;
  gap: 12px;
}

.detail-meta h2 {
  font-size: 28px;
}

.detail-meta p,
.detail-note p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 14px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.detail-fact {
  padding: 14px;
  border-radius: 14px;
}

.detail-fact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(30 18% 96% / 0.6);
}

.detail-fact-value {
  margin-top: 4px;
  font-weight: 600;
}

.detail-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.detail-feature-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--muted-foreground);
  font-size: 12px;
}

.detail-token {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-foreground);
  font-size: 12px;
}

.related-head {
  margin-top: 48px;
}

.legal-wrap,
.contact-grid,
.about-grid {
  margin-top: 36px;
}

.legal-main,
.contact-main,
.about-main {
  padding: 56px 0 0;
}

.legal-wrap {
  width: min(760px, 100%);
  gap: 24px;
}

.legal-article {
  padding: 28px 36px;
}

.legal-article section + section {
  margin-top: 28px;
}

.legal-article h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.legal-article p {
  color: var(--muted-foreground);
  line-height: 1.8;
  font-size: 14px;
}

.legal-article p + p {
  margin-top: 12px;
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  padding: 24px;
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--gradient-pearl);
  color: hsl(220 12% 38%);
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.about-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 14px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-card,
.contact-form {
  padding: 24px;
}

.contact-card {
  display: flex;
  align-items: start;
  gap: 12px;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(220 12% 78% / 0.2);
  color: var(--accent);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-foreground);
  font-size: 12px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: hsl(230 18% 13% / 0.6);
  color: var(--foreground);
  outline: none;
}

.form-control:focus {
  border-color: hsl(220 12% 78% / 0.4);
}

.not-found {
  padding: 96px 0 0;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(3rem, 9vw, 5rem);
}

.fade-up {
  animation: fadeUp 0.6s ease-out both;
}

[hidden] {
  display: none !important;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes blob {
  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 30% 70% 55%;
  }
  33% {
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
  }
  66% {
    border-radius: 30% 70% 35% 65% / 70% 40% 60% 30%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .promo-grid,
  .reviews-grid,
  .faq-grid,
  .games-page-head,
  .detail-grid,
  .contact-grid,
  .mobile-block,
  .footer-top,
  .features-head {
    grid-template-columns: 1fr;
  }

  .games-grid,
  .features-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-card.wide {
    grid-column: span 1;
  }

  .faq-side {
    position: static;
  }

  .hero-live {
    position: static;
    margin-top: 24px;
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .header-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-bottom: 88px;
  }

  .hero-stats,
  .games-grid,
  .features-grid,
  .footer-links,
  .about-grid,
  .contact-form-grid,
  .detail-facts {
    grid-template-columns: 1fr;
  }

  .games-page-panel {
    grid-template-columns: 1fr;
  }

  .toolbar {
    align-items: stretch;
  }

  .detail-banner-top,
  .detail-banner-bottom {
    left: 16px;
    right: 16px;
  }

  .detail-banner-media {
    aspect-ratio: 21 / 11;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero,
  .legal-main,
  .contact-main,
  .about-main {
    padding-top: 32px;
  }

  .promo-card,
  .review-spotlight,
  .mobile-copy,
  .footer-top,
  .footer-links,
  .footer-bottom,
  .legal-article,
  .contact-card,
  .contact-form,
  .about-card,
  .detail-note,
  .detail-meta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .age-gate {
    padding: 28px 24px;
  }

  .cookie-bar {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .cookie-card {
    flex-wrap: wrap;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}
