/* cardspinzone.com — Electric Bento Arcade (full redesign) */

:root {
  --bg: #030014;
  --surface: #0c0820;
  --surface-2: #151030;
  --surface-3: #1e1840;
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --coral: #ff4757;
  --mint: #2ee6a6;
  --amber: #ffb800;
  --text: #f4f0ff;
  --muted: #8b82a8;
  --line: rgba(124, 58, 237, 0.28);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 92px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-neon: 0 0 40px rgba(124, 58, 237, 0.35);
  --shadow-card: 8px 8px 0 rgba(255, 71, 87, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--mint); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--violet-light); }

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* ── Mesh background ── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: var(--bg);
  overflow: hidden;
}

.mesh-bg::before,
.mesh-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: mesh-drift 18s ease-in-out infinite alternate;
}

.mesh-bg::before {
  width: 55vw;
  height: 55vw;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent 70%);
}

.mesh-bg::after {
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 71, 87, 0.35), transparent 70%);
  animation-delay: -6s;
}

.mesh-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
}

.mesh-orb--mint {
  width: 320px;
  height: 320px;
  background: rgba(46, 230, 166, 0.35);
  top: 40%;
  left: 35%;
  animation: orb-float 14s ease-in-out infinite;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
}

@keyframes mesh-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 6%) scale(1.08); }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.bg-layer { display: none; }
.coins-layer { display: none; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(3, 0, 20, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--coral), var(--mint), var(--violet));
  background-size: 200% 100%;
  animation: gradient-slide 6s linear infinite;
}

@keyframes gradient-slide {
  to { background-position: 200% 0; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  min-width: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(340px, 48vw);
}

.logo-link .site-logo {
  height: 54px;
  width: auto;
  max-width: 100%;
  display: block;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--surface-2);
  padding: 0.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}

.nav-main a {
  color: var(--muted);
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--text);
  background: rgba(124, 58, 237, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.coin-badge {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: var(--surface-2);
  border: 2px solid var(--amber);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.coin-badge.visible { display: flex; }

.menu-toggle {
  display: none;
  background: var(--surface-2);
  border: 2px solid var(--line);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  line-height: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
}

.btn:active { transform: translate(2px, 2px); box-shadow: none !important; }

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  background: #ff6b7a;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--violet);
  box-shadow: 4px 4px 0 rgba(124, 58, 237, 0.5);
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.15);
  color: var(--violet-light);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
  box-shadow: none;
  font-family: var(--font-body);
  text-transform: none;
  font-size: inherit;
  font-weight: 600;
}

.btn-ghost:hover { color: var(--mint); }

.btn-lg { padding: 0.9rem 1.75rem; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* ── Ticker ── */
.info-ticker {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 2.5rem;
}

.info-ticker-inner {
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.info-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-run 45s linear infinite;
}

.info-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.75rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.info-ticker-item > span:last-child {
  background: linear-gradient(90deg, var(--violet-light), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.info-ticker-icon { font-size: 0.9rem; }

.info-ticker-item::after {
  content: "◆";
  margin-left: 1.75rem;
  color: var(--violet);
  font-size: 0.45rem;
}

@keyframes ticker-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero zone ── */
.hero-zone {
  padding: 3.5rem 0 4rem;
  position: relative;
}

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-left { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  background: var(--surface-2);
  border: 2px solid var(--mint);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse-dot 1.5s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-zone h1,
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-zone h1 span,
.hero h1 em {
  display: block;
  font-style: normal;
  background: linear-gradient(135deg, var(--coral), var(--violet-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-lead strong { color: var(--text); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.bento-tile {
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.bento-tile:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
}

.bento-game {
  grid-column: 1 / -1;
  box-shadow: var(--shadow-neon);
}

.bento-game img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bento-game-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: var(--surface-3);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bento-game-label span:last-child {
  color: var(--mint);
  font-size: 0.62rem;
}

.bento-stat {
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
}

.bento-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.bento-stat--violet strong { color: var(--violet-light); }
.bento-stat--coral strong { color: var(--coral); }
.bento-stat--mint strong { color: var(--mint); }

.bento-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Legacy hero classes (inner pages) */
.hero { padding: 3rem 0 2rem; }
.hero-split { padding: 3.5rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.hero-copy { max-width: none; }
.hero-badge {
  display: inline-flex;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--mint);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
}
.hero-stats { display: none; }
.hero-visual { display: none; }
.hero-compact { padding: 2.5rem 0 1.5rem; text-align: center; }

.stat-card { display: none; }

/* ── Pillars strip ── */
.pillars-strip,
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.pillars-row,
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.pillar-pill,
.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.pillar-pill:hover,
.trust-logo:hover {
  border-color: var(--violet);
  color: var(--text);
}

.trust-icon { display: none; }
.trust-logo span { font-size: inherit; text-transform: none; letter-spacing: 0; }

/* ── Sections ── */
section { padding: 4rem 0; }

.section-label {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.75rem;
  background: rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.spotlight-zone {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.06), transparent);
}

/* ── Game cards ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.games-grid-single {
  max-width: 400px;
  margin: 0 auto;
}

.game-card {
  position: relative;
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 6px 6px 0 rgba(124, 58, 237, 0.4);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.game-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(255, 71, 87, 0.5);
  border-color: var(--coral);
}

.game-card-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.game-card-thumb.fire-joker { background: linear-gradient(135deg, #4a1010, #e84a10); }
.game-card-thumb.lady-of-fortune { background: linear-gradient(135deg, #2a1048, #8040a8); }
.game-card-thumb.wild-north { background: linear-gradient(135deg, #102838, #4080a0); }
.game-card-thumb.big-win-cat { background: linear-gradient(135deg, #3d2818, #d4a040); }
.game-card-thumb.rise-of-olympus { background: linear-gradient(135deg, #1a2848, #4080c8); }
.game-card-thumb.eye-of-the-kraken { background: linear-gradient(135deg, #0a2840, #2080a0); }
.game-card-thumb.hot-triple-sevens { background: linear-gradient(135deg, #5a1010, #e82020); }
.game-card-thumb.european-roulette { background: linear-gradient(135deg, #0a3818, #1a8040); }
.game-card-thumb.basketball { background: linear-gradient(135deg, #8a4010, #d08020); }
.game-card-thumb.crazy-cows { background: linear-gradient(135deg, #3a4820, #90b040); }
.game-card-thumb.moon-princess { background: linear-gradient(135deg, #2a1848, #9060c0); }
.game-card-thumb.star-joker { background: linear-gradient(135deg, #4a1040, #c04080); }
.game-card-thumb.legend-of-ra { background: linear-gradient(135deg, #4a3510, #c09820); }
.game-card-thumb.24k-dragon { background: linear-gradient(135deg, #4a3810, #c89820); }

.game-card-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-thumb .gradient-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.game-card-thumb--fallback::after {
  content: attr(data-emoji);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  z-index: 1;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 0, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.play-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--coral);
  background: rgba(255, 71, 87, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.25s, background 0.25s;
}

.game-card:hover .play-btn-circle {
  transform: scale(1.1);
  background: var(--coral);
}

.game-card-body { padding: 1.15rem 1.25rem; }

.game-card-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.game-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.game-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.tag {
  font-size: 0.62rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--violet-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Perks / Features ── */
.perks-zone { padding: 4rem 0; }

.perks-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.perk-card,
.feature-card {
  padding: 2rem 1.75rem;
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.perk-card::before,
.feature-card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.15em;
  right: 0.25em;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.08);
  line-height: 1;
  pointer-events: none;
}

.perk-card:hover,
.feature-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.perk-icon,
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.perk-card h3,
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.perk-card p,
.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Launch CTA ── */
.launch-zone,
.cta-spin-section {
  padding: 3rem 0 5rem;
}

.launch-card,
.cta-spin-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--surface-2);
  border: 2px solid var(--violet);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-neon);
}

.launch-card::before,
.cta-spin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(255, 71, 87, 0.08));
  pointer-events: none;
}

.launch-card > *,
.cta-spin-content { position: relative; z-index: 1; }

.launch-card .section-title,
.cta-spin-content .section-title {
  margin-bottom: 0.65rem;
}

.launch-card .section-subtitle,
.cta-spin-content .section-subtitle {
  margin-bottom: 1.75rem;
}

.cta-emblem { display: none; }

/* ── Lock banner ── */
.lock-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 71, 87, 0.1);
  border: 2px dashed var(--coral);
  border-radius: var(--radius);
  text-align: center;
}

.lock-banner-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.lock-banner-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.lock-banner-text strong {
  color: var(--coral);
  font-weight: 700;
}

.lock-banner .btn {
  flex-shrink: 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
}

/* ── Footer ── */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 2px solid var(--line);
  background: var(--surface);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--coral), var(--mint));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--muted); font-size: 0.88rem; }
.footer-col a:hover { color: var(--text); }

.disclaimer {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 900px;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-bottom a { color: var(--mint); }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(3, 0, 20, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface-2);
  border: 2px solid var(--violet);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-neon), var(--shadow-card);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.modal-close {
  background: var(--surface-3);
  border: 2px solid var(--line);
  color: var(--muted);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s;
}

.modal-close:hover {
  border-color: var(--coral);
  color: var(--text);
}

.modal-tabs { display: none; }
.form-panel { display: block; }

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-group input:not([type="checkbox"]) {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--surface-3);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:not([type="checkbox"]):focus {
  outline: none;
  border-color: var(--violet);
}

.form-group input:not([type="checkbox"]).error { border-color: var(--coral); }

.form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--coral);
  margin-top: 0.3rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s, max-height 0.2s;
}

.form-error.visible {
  opacity: 1;
  max-height: 3rem;
}

.form-group.form-checkbox { margin-bottom: 1.25rem; }

.checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  cursor: pointer;
  font-size: clamp(0.72rem, 2.2vw, 0.82rem);
  color: var(--muted);
  line-height: 1.3;
}

.checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  min-height: auto;
  accent-color: var(--violet);
  margin: 0 0.7rem 0 0;
  padding: 0;
  border: none;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  align-self: center;
}

.checkbox-label > span {
  display: inline;
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.checkbox-label strong { color: var(--violet-light); font-weight: 600; }

.welcome-bonus {
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  border: 2px solid var(--amber);
  border-radius: var(--radius-sm);
  background: rgba(255, 184, 0, 0.08);
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.welcome-bonus strong { color: var(--amber); }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: 1rem;
  background: var(--surface-2);
  border-top: 2px solid var(--violet);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 400;
  padding: 0.75rem 1.5rem;
  background: var(--surface-2);
  border: 2px solid var(--mint);
  color: var(--text);
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Play page ── */
.page-play .info-ticker { display: none; }

.play-page { padding: 2rem 0 3rem; }

.play-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.play-header h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 400px;
  border: 2px solid var(--violet);
  border-radius: var(--radius-lg);
  background: #000;
  overflow: hidden;
  box-shadow: var(--shadow-neon);
}

.game-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.frame-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg);
  z-index: 1;
}

.frame-loading.hidden { display: none; }

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--line);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.auth-gate {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(3, 0, 20, 0.95);
  text-align: center;
  padding: 2rem;
}

.auth-gate.hidden { display: none; }

.auth-gate h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.auth-gate p { color: var(--muted); max-width: 360px; }

.auth-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Legal / FAQ / Contact ── */
.legal-page { padding: 0 0 4rem; }

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--violet-light);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-callout {
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border: 2px solid var(--violet);
  border-radius: var(--radius);
  background: rgba(124, 58, 237, 0.08);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.faq-section { padding-top: 0; padding-bottom: 4rem; }
.faq-container { max-width: 720px; margin: 0 auto; }

.faq-item {
  margin-bottom: 0.65rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--coral);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.contact-cards,
.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.contact-card,
.help-card {
  padding: 1.5rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}

.contact-card h3,
.help-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-card p,
.help-card p { font-size: 0.88rem; color: var(--muted); }

.contact-card-email a,
.help-card-phone a { color: var(--mint); font-weight: 600; }

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ── Button row (Why Us, How It Works, etc.) ── */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  margin-top: 2.5rem;
}

/* ── Homepage highlights slider ── */
.highlights-slider {
  padding: 1rem 0 0;
  position: relative;
  z-index: 2;
}

.hero-slides-viewport {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  box-shadow: var(--shadow-neon);
}

.hero-slides-track {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  min-height: 7.5rem;
}

.hero-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 2rem;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  animation: icon-bob 3s ease-in-out infinite;
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.hero-slide-text {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 520px;
}

.hero-slides-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

.hero-slides-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-slides-dot,
.why-slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--violet);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.hero-slides-dot.active,
.why-slideshow-dot.active {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(1.15);
}

.hero-slides-prev,
.hero-slides-next {
  min-width: 2.75rem;
  padding: 0.55rem 0.85rem;
}

/* ── Generic hero visual (no single-game accent) ── */
.hero-visual-block {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arcade-ring {
  position: absolute;
  inset: 10%;
  border: 2px dashed rgba(124, 58, 237, 0.45);
  border-radius: 50%;
  animation: logo-spin 18s linear infinite;
}

.hero-arcade-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 2.5rem;
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-arcade-icon {
  font-size: 3.5rem;
  animation: icon-bob 4s ease-in-out infinite;
}

.hero-arcade-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet-light);
}

.hero-stat-float {
  position: absolute;
  padding: 0.55rem 0.85rem;
  background: var(--surface-3);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  animation: float-drift 6s ease-in-out infinite;
}

.hero-stat-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--mint);
}

.hero-stat-float span { color: var(--muted); font-size: 0.65rem; text-transform: uppercase; }

.hero-stat-float--1 { top: 8%; right: 5%; animation-delay: 0s; }
.hero-stat-float--2 { bottom: 12%; left: 0; animation-delay: 1.5s; }
.hero-stat-float--3 { top: 40%; right: -2%; animation-delay: 3s; }

@keyframes icon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes logo-spin {
  to { transform: rotate(360deg); }
}

.logo-spin-ring {
  transform-origin: 22px 24px;
  animation: logo-spin 12s linear infinite;
}

/* ── Game of the Month ── */
.gotm-zone {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent, rgba(255, 71, 87, 0.04), transparent);
}

.gotm-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  opacity: 1;
  transform: none;
}

.gotm-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(124, 58, 237, 0.45);
  border-color: var(--violet);
}

.gotm-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  animation: badge-pulse 2.5s ease infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 71, 87, 0); }
}

.gotm-thumb {
  position: relative;
  aspect-ratio: 16/10;
  min-height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-3), #2a1040);
}

.gotm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gotm-thumb .gotm-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.gotm-card:hover .gotm-thumb img { transform: scale(1.05); }

.gotm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 0, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gotm-card:hover .gotm-overlay { opacity: 1; }

.gotm-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gotm-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.gotm-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

/* ── Why Us slideshow ── */
.page-why-us .why-hero { padding: 3rem 0 1.5rem; }

.why-slideshow-wrap { padding: 0 0 4rem; }

.why-slideshow {
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  overflow: hidden;
  box-shadow: var(--shadow-neon);
  margin-bottom: 0.5rem;
}

.why-slideshow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-3);
}

.why-slideshow-counter {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.08em;
}

.why-slideshow-nav {
  display: flex;
  gap: 0.65rem;
}

.why-slideshow-stage {
  position: relative;
  min-height: 280px;
}

.why-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.why-slide--violet.active { background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.2), transparent 60%); }
.why-slide--coral.active { background: radial-gradient(circle at 70% 30%, rgba(255, 71, 87, 0.15), transparent 60%); }
.why-slide--mint.active { background: radial-gradient(circle at 50% 80%, rgba(46, 230, 166, 0.12), transparent 60%); }
.why-slide--amber.active { background: radial-gradient(circle at 20% 70%, rgba(255, 184, 0, 0.12), transparent 60%); }

.why-slide-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.why-slide-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: icon-bob 3.5s ease-in-out infinite;
}

.why-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.why-slide-text {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.55;
}

.why-slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
}

/* ── Floating background shapes ── */
.float-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-shape {
  position: absolute;
  color: var(--violet-light);
  animation: float-drift linear infinite;
  will-change: transform;
}

@keyframes float-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(12px, -20px) rotate(90deg); }
  50% { transform: translate(-8px, -35px) rotate(180deg); }
  75% { transform: translate(-15px, -15px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.perk-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.perk-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.feature-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --header-h: 72px; }

  .hero-bento { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual-block { min-height: 240px; order: -1; }
  .gotm-card { grid-template-columns: 1fr; }
  .why-slideshow-stage { min-height: 260px; }
  .bento-stat--mint[style] { max-width: 100% !important; }
  .hero-bento-grid { order: -1; }
  .perks-grid, .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .logo-link {
    max-width: min(200px, 42vw);
  }

  .logo-link .site-logo {
    height: 42px;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .header-actions .btn-primary {
    padding: 0.5rem 0.75rem;
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .coin-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
  }

  .header-inner > .nav-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    padding: 0.75rem;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    z-index: 260;
  }

  .nav-main.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-main a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .header-actions .btn-secondary { display: none; }

  .game-frame-wrap {
    min-height: 55vh;
    aspect-ratio: auto;
    height: 65vh;
  }

  .form-group input:not([type="checkbox"]) { font-size: 16px; min-height: 2.75rem; }

  .form-group.form-checkbox .checkbox-label input[type="checkbox"] {
    width: 1.05rem;
    height: 1.05rem;
    min-width: 1.05rem;
    margin-right: 0.65rem;
  }
}

@media (max-width: 480px) {
  :root { --header-h: 64px; }

  .logo-link {
    max-width: min(150px, 38vw);
  }

  .logo-link .site-logo {
    height: 36px;
  }

  .header-inner {
    gap: 0.35rem;
  }

  .header-actions .btn-primary {
    padding: 0.45rem 0.6rem;
    font-size: 0.58rem;
  }

  .coin-badge .coin-icon { display: none; }

  .coin-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
  }

  .hero-bento-grid { grid-template-columns: 1fr; }
  .bento-game { grid-column: 1; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { justify-content: center; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .why-slide, .reveal, .float-shape, .hero-arcade-ring, .logo-spin-ring { animation: none !important; transition: none !important; }
  .hero-slide { opacity: 1; transform: none; }
  .hero-slide:not(.active) { display: none; }
  .reveal { opacity: 1; transform: none; }
  .mesh-bg::before, .mesh-bg::after, .mesh-orb--mint { animation: none; }
}
