@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  font-family: "Manrope", system-ui, sans-serif;
  color: #f8fafc;
  background: #09111f;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #0b1020;
  --navy: #09111f;
  --navy-soft: #111827;
  --blue: #38bdf8;
  --cyan: #67e8f9;
  --gold: #f8c96b;
  --mint: #8ef2c4;
  --rose: #fb7185;
  --paper: #f8fafc;
  --muted: #bfd3e7;
  --line: rgba(255, 255, 255, 0.16);
  --card: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--paper);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 32rem),
    radial-gradient(circle at top right, rgba(248, 201, 107, 0.2), transparent 30rem),
    linear-gradient(135deg, #09111f 0%, #10172a 48%, #102336 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #f8fafc;
  color: #111827;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topbar i {
  color: #0f766e;
}

.navbar {
  background: rgba(9, 17, 31, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #111827;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(56, 189, 248, 0.25);
}

.brand-text {
  font-size: clamp(1.08rem, 2.4vw, 1.34rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #dbeafe;
  padding: 12px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #06121f;
  background: var(--cyan);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  padding: clamp(64px, 10vw, 108px) 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Inter Tight", system-ui, sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.8vw, 4.8rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.7vw, 3rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #06121f;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 18px 32px rgba(103, 232, 249, 0.22);
}

.btn-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
}

.hero-panel {
  padding: clamp(20px, 4vw, 30px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(9, 17, 31, 0.72);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #e0f2fe;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-card,
.mini-card,
.feature-card,
.game-card,
.cta-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.large-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 26px;
}

.large-card i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #111827;
  background: var(--gold);
  border-radius: 18px;
  font-size: 1.35rem;
}

.large-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.large-card p,
.feature-card p,
.game-card p,
.intro-grid p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-card {
  display: grid;
  gap: 12px;
  min-height: 120px;
  padding: 18px;
  border-radius: 22px;
}

.mini-card i {
  color: var(--cyan);
  font-size: 1.35rem;
}

.mini-card span {
  align-self: end;
  font-weight: 900;
}

.intro-section,
.feature-section,
.about-section,
.games-section,
.disclaimer-section,
.page-section,
.play-section,
.cta-section {
  padding: clamp(54px, 8vw, 92px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.card-grid,
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.game-card {
  padding: 26px;
  border-radius: 28px;
}

.feature-card {
  min-height: 250px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  background:
    radial-gradient(circle at top left, rgba(142, 242, 196, 0.14), transparent 22rem),
    rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-list {
  display: grid;
  gap: 12px;
}

.about-game-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #06121f;
  background: #e0f2fe;
  border-radius: 18px;
  font-weight: 900;
}

.about-game-link i {
  color: #0f766e;
}

.feature-icon,
.game-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: #06121f;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  border-radius: 18px;
  font-size: 1.3rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.game-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(103, 232, 249, 0.12), rgba(248, 201, 107, 0.08)),
    var(--card);
}

.game-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -72px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.34), transparent 64%);
  pointer-events: none;
}

.game-image-link {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 22px;
  background: #0f172a;
  aspect-ratio: 16 / 10;
}

.game-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card h3,
.game-card p,
.game-card .tone,
.game-card .btn-game {
  position: relative;
  z-index: 1;
}

.game-card h3 a:hover,
.game-card h3 a:focus-visible {
  color: var(--cyan);
}

.game-card p {
  flex: 1;
  margin-bottom: 22px;
}

.tone {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #06121f;
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.btn-game {
  align-self: flex-start;
  color: #06121f;
  background: var(--cyan);
}

.page-hero,
.game-detail-hero {
  padding: clamp(54px, 8vw, 90px) 0 clamp(34px, 5vw, 58px);
}

.page-hero-card {
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.16), transparent 24rem),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.page-hero-card h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
}

.page-hero-card p:last-child,
.game-detail-grid p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card-grid .feature-card:nth-child(4) {
  grid-column: span 3;
  min-height: auto;
}

.policy-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 40px);
  color: #0f172a;
  background: #f8fafc;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.policy-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: #e2e8f0;
  border-radius: 18px;
}

.policy-item i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #06121f;
  background: var(--mint);
  border-radius: 13px;
}

.policy-item p {
  margin-bottom: 0;
  color: #1e293b;
  line-height: 1.65;
}

.game-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  background:
    radial-gradient(circle at top left, rgba(248, 201, 107, 0.14), transparent 24rem),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.game-detail-grid h1 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
}

.game-detail-grid img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.studio {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 5vw, 40px);
  background:
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.18), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(248, 201, 107, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.studio-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: #dbeafe;
}

.studio-header span {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.studio-header strong {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.studio-message {
  color: #e0f2fe;
  font-weight: 800;
  line-height: 1.6;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: clamp(12px, 3vw, 22px);
  margin-bottom: 24px;
}

.slot-reel {
  display: grid;
  min-height: clamp(120px, 18vw, 190px);
  place-items: center;
  color: #06121f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(103, 232, 249, 0.72)),
    #f8fafc;
  border: 2px solid rgba(248, 201, 107, 0.8);
  border-radius: 28px;
  box-shadow: inset 0 0 28px rgba(6, 18, 31, 0.18), 0 18px 42px rgba(103, 232, 249, 0.2);
}

.slot-reel i {
  color: #be123c;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  filter: drop-shadow(0 12px 18px rgba(190, 18, 60, 0.32));
}

.slot-reels.is-spinning .slot-reel i {
  animation: reelPulse 700ms ease-in-out infinite;
}

.card-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.hand-block {
  padding: 18px;
  background: rgba(8, 47, 73, 0.52);
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 24px;
}

.hand-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #e0f2fe;
  font-weight: 900;
}

.hand-label strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #06121f;
  background: var(--gold);
  border-radius: 15px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.play-card {
  display: grid;
  width: 72px;
  min-height: 96px;
  align-content: space-between;
  padding: 12px;
  color: #06121f;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.play-card span {
  font-weight: 900;
}

.play-card i {
  color: #0f766e;
  font-size: 1.3rem;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.roulette-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(240px, 1fr);
  gap: clamp(22px, 5vw, 48px);
  align-items: center;
}

.roulette-wheel-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(270px, 38vw, 420px);
}

.roulette-wheel {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  border: 12px solid #f8c96b;
  border-radius: 50%;
  background: conic-gradient(#0e7490 0 45deg, #fb7185 45deg 90deg, #0f172a 90deg 135deg, #67e8f9 135deg 180deg, #f8c96b 180deg 225deg, #22c55e 225deg 270deg, #be123c 270deg 315deg, #38bdf8 315deg 360deg);
  box-shadow: 0 0 38px rgba(103, 232, 249, 0.34), inset 0 0 34px rgba(0, 0, 0, 0.38);
  transition: transform 900ms cubic-bezier(0.22, 0.84, 0.35, 1);
}

.roulette-wheel.is-spinning {
  filter: drop-shadow(0 0 28px rgba(103, 232, 249, 0.48));
}

.wheel-core {
  position: absolute;
  inset: 34%;
  background: radial-gradient(circle, #f8fafc, #67e8f9 55%, #0f172a 56%);
  border: 8px solid #f8c96b;
  border-radius: 50%;
}

.wheel-pointer {
  position: absolute;
  top: 10px;
  color: #f8fafc;
  font-size: 2rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.wheel-panel {
  padding: 24px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 26px;
}

.wheel-panel p {
  color: #e0f2fe;
  font-weight: 900;
  line-height: 1.7;
}

.game-disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: clamp(22px, 4vw, 32px);
  color: #0f172a;
  background: #f8fafc;
  border-radius: 28px;
}

.game-disclaimer i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #06121f;
  background: var(--cyan);
  border-radius: 16px;
}

.game-disclaimer p {
  margin-bottom: 0;
  color: #1e293b;
  line-height: 1.65;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(18px);
}

.age-modal {
  width: min(100%, 560px);
  padding: clamp(24px, 5vw, 38px);
  color: #0f172a;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.2), transparent 16rem),
    #f8fafc;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.modal-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  color: #06121f;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-radius: 20px;
}

.age-modal h2 {
  color: #0f172a;
  margin-bottom: 12px;
}

.age-modal p,
.check-row span {
  color: #334155;
  line-height: 1.65;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 22px 0;
  padding: 16px;
  background: #e2e8f0;
  border-radius: 18px;
  font-weight: 800;
}

.check-row input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #0f766e;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  width: min(620px, calc(100% - 36px));
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 1.1rem;
}

.cookie-banner p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.55;
}

@keyframes reelPulse {
  0% {
    transform: translateY(-8px) scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: translateY(8px) scale(1.08);
    opacity: 1;
  }

  100% {
    transform: translateY(-8px) scale(0.96);
    opacity: 0.72;
  }
}

.disclaimer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 5vw, 42px);
  color: #0f172a;
  background: #f8fafc;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.disclaimer-card .section-kicker {
  color: #0f766e;
}

.disclaimer-card h2 {
  color: #0f172a;
}

.notice-grid {
  display: grid;
  gap: 14px;
}

.notice-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: #e2e8f0;
  border-radius: 20px;
}

.notice-item i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #06121f;
  background: var(--cyan);
  border-radius: 14px;
}

.notice-item p {
  margin-bottom: 0;
  color: #1e293b;
  line-height: 1.6;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(248, 201, 107, 0.24), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
}

.cta-card h2 {
  max-width: 760px;
}

.footer {
  padding: 44px 0;
  background: rgba(3, 7, 18, 0.62);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-main {
  gap: 14px;
}

.footer-brand {
  font-size: 1rem;
}

.footer-brand i {
  color: var(--gold);
}

.footer-column h3 {
  margin-bottom: 4px;
  color: #f8fafc;
  font-size: 1rem;
}

.footer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer a:not(.footer-brand) {
  color: #dbeafe;
  font-weight: 700;
}

.footer a:not(.footer-brand):hover,
.footer a:not(.footer-brand):focus-visible {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .topbar-inner,
  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .disclaimer-card,
  .info-card-grid,
  .game-detail-grid,
  .card-table,
  .roulette-layout,
  .card-grid,
  .game-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-card-grid .feature-card:nth-child(4) {
    grid-column: auto;
  }

  .hero {
    padding-top: 54px;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 118px;
    z-index: 20;
    display: grid;
    gap: 10px;
    padding: 16px;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    color: #0f172a;
    padding: 14px 16px;
    background: #e2e8f0;
    border-radius: 16px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: #06121f;
    background: var(--cyan);
  }

  .brand-text {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .studio-header,
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .slot-reels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .topbar-inner {
    font-size: 0.74rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-panel,
  .feature-card,
  .game-card,
  .studio,
  .page-hero-card,
  .game-detail-grid,
  .cta-card {
    border-radius: 24px;
  }

  .large-card {
    grid-template-columns: 1fr;
  }

  .game-disclaimer,
  .notice-item,
  .policy-item {
    grid-template-columns: 1fr;
  }
}
