/* ============================================================
   CRYPTOVAULT v4 — glass + ambient shimmer, casino windows
   monochrome editorial, no red accents
   ============================================================ */

:root {
  --bg:        #040406;
  --bg-1:      #07070a;
  --bg-2:      #0a0a0e;
  --surface:   rgba(255, 255, 255, 0.018);
  --surface-2: rgba(255, 255, 255, 0.035);

  --line:    rgba(255, 255, 255, 0.045);
  --line-2:  rgba(255, 255, 255, 0.075);
  --line-3:  rgba(255, 255, 255, 0.13);

  --ink-0: #efeee9;
  --ink-1: rgba(239, 238, 233, 0.55);
  --ink-2: rgba(239, 238, 233, 0.32);
  --ink-3: rgba(239, 238, 233, 0.18);
  --ink-4: rgba(239, 238, 233, 0.08);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink-0);
  font-family: "Onest", system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* italic accents in any text — grey emphasis used inline */
em {
  font-style: italic;
  font-weight: 600;
  color: var(--ink-2);
}

body {
  position: relative;
  min-height: 100vh;
}

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

/* ============================================================
   Ambient — soft white flickers behind a frosted glass veil
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* frosted glass layer that sits OVER the flickers */
.ambient::after {
  content: "";
  position: absolute; inset: 0;
  backdrop-filter: blur(80px) saturate(120%);
  -webkit-backdrop-filter: blur(80px) saturate(120%);
  background: rgba(4, 4, 6, 0.35);
  pointer-events: none;
}
.ambient .orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.15) 35%, transparent 70%);
  filter: blur(40px);
  mix-blend-mode: screen;
  animation: flicker 7s ease-in-out infinite;
  will-change: opacity;
}
.ambient .orb.a {
  width: 420px; height: 420px;
  top: 8%; left: 12%;
  animation-duration: 6.5s;
  animation-delay: -1.2s;
}
.ambient .orb.b {
  width: 360px; height: 360px;
  top: 40%; right: 14%;
  animation-duration: 8.4s;
  animation-delay: -3.8s;
}
.ambient .orb.c {
  width: 480px; height: 480px;
  bottom: 6%; left: 38%;
  animation-duration: 9.2s;
  animation-delay: -5.4s;
}
.ambient .orb.d {
  width: 300px; height: 300px;
  top: 62%; left: 6%;
  animation-duration: 7.6s;
  animation-delay: -2.6s;
}
@keyframes flicker {
  0%, 100% { opacity: 0.18; }
  35%      { opacity: 0.55; }
  60%      { opacity: 0.28; }
  82%      { opacity: 0.62; }
}

/* shimmer veil — fine moving highlights */
.shimmer-veil {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.018) 45%, transparent 60%),
    linear-gradient(265deg, transparent 20%, rgba(255,255,255,0.012) 38%, transparent 55%);
  background-size: 200% 200%;
  animation: shimmer-move 22s linear infinite;
}
@keyframes shimmer-move {
  0%   { background-position: 0% 0%, 100% 100%; }
  100% { background-position: 100% 100%, 0% 0%; }
}

/* grain */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

main, header, footer { position: relative; z-index: 2; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 40px;
  background: rgba(4, 4, 6, 0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 700; letter-spacing: -0.035em; font-size: 19px;
  color: var(--ink-0);
}
.brand em {
  font-style: italic;
  font-weight: 700;
  color: var(--ink-2);
  margin-left: 2px;
}
.nav-icons { display: flex; gap: 6px; }
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--ink-1);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
}
.icon-btn:hover {
  color: var(--ink-0);
  border-color: var(--line-3);
  background: rgba(255, 255, 255, 0.06);
}
.icon-btn svg { width: 15px; height: 15px; }

/* ============================================================
   Glass buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  color: var(--ink-0);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.018em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.25);
}
.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-3);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 40px rgba(0, 0, 0, 0.35);
}
.btn:active { transform: translateY(0); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-sm { padding: 9px 16px; font-size: 12.5px; }
.btn-sm svg { width: 12px; height: 12px; }

.btn-light {
  background: rgba(244, 243, 239, 0.92);
  color: #0a0a0e;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(255, 255, 255, 0.05);
}
.btn-light:hover {
  background: #fff;
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 16px 44px rgba(255, 255, 255, 0.12);
}

.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); }

/* ============================================================
   Editorial wrapper + ornaments
   ============================================================ */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

.corner-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  pointer-events: none;
}
.corner-ring {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  text-align: left;
}
.hero .hero-copy { max-width: 880px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  font-size: 12.5px; color: var(--ink-1);
  margin-bottom: 36px;
}
.hero-tag .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e6e3da;
  box-shadow: 0 0 12px rgba(255,255,255,0.8);
  animation: pulse 2s ease-in-out infinite;
}
.hero-tag strong { color: var(--ink-0); font-weight: 600; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

h1.display {
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin-bottom: 36px;
  text-wrap: balance;
  color: var(--ink-0);
}
h1.display em {
  font-style: italic;
  font-weight: 700;
  color: var(--ink-2);
  display: inline-block;
}

.hero-lede {
  font-size: 17px;
  color: var(--ink-1);
  max-width: 460px;
  line-height: 1.5;
  margin-bottom: 36px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.hero-cta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   Hero shimmer panel — glass window with light moving behind
   ============================================================ */
.shimmer-panel {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    rgba(10, 10, 14, 0.4);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 80px rgba(0, 0, 0, 0.4);
}
.shimmer-panel .glow {
  position: absolute; inset: -10%;
  filter: blur(60px);
  animation: shimmer-glow 26s ease-in-out infinite alternate;
}
.shimmer-panel .glow.x {
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(80, 100, 160, 0.55), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(140, 90, 130, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 30% at 40% 80%, rgba(150, 130, 100, 0.4), transparent 60%);
}
.shimmer-panel .glow.y {
  background:
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(110, 130, 170, 0.4), transparent 70%),
    radial-gradient(ellipse 30% 30% at 20% 60%, rgba(120, 90, 140, 0.4), transparent 70%);
  animation-delay: -12s;
  animation-duration: 32s;
}
@keyframes shimmer-glow {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(40px, -30px) rotate(20deg); }
  100% { transform: translate(-30px, 50px) rotate(-15deg); }
}
.shimmer-panel .frost {
  position: absolute; inset: 0;
  backdrop-filter: blur(38px) saturate(140%);
  -webkit-backdrop-filter: blur(38px) saturate(140%);
  background: rgba(10, 10, 14, 0.10);
}
.shimmer-panel .label {
  position: absolute; left: 28px; bottom: 28px; right: 28px;
  display: flex; align-items: end; justify-content: space-between;
  gap: 16px;
  font-size: 12px; color: var(--ink-1);
  letter-spacing: 0.02em;
}
.shimmer-panel .label .eyebrow {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 10px;
}
.shimmer-panel .label .title {
  font-size: 28px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink-0);
  line-height: 1.05;
  text-wrap: balance;
}
.shimmer-panel .label .title em { font-style: italic; color: var(--ink-2); font-weight: 700; }
.shimmer-panel .label .meta {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.shimmer-panel .label .meta .k { font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; }
.shimmer-panel .label .meta .v { font-size: 18px; color: var(--ink-0); font-weight: 600; margin-top: 4px; }

.shimmer-panel .top-tag {
  position: absolute; top: 22px; left: 22px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  font-size: 11px; color: var(--ink-1);
  display: inline-flex; align-items: center; gap: 7px;
}
.shimmer-panel .top-tag .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: #d8d4c8; box-shadow: 0 0 8px rgba(255,255,255,0.6);
  animation: pulse 1.6s infinite;
}

/* ============================================================
   Stats row
   ============================================================ */
.stats {
  position: relative;
  padding: 100px 0 80px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat {
  padding: 0 24px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat .v {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink-0);
  text-shadow: 0 0 30px rgba(255,255,255,0.08);
  font-variant-numeric: tabular-nums;
}
.stat .v sup {
  font-size: 0.5em;
  font-style: italic;
  font-weight: 600;
  color: var(--ink-2);
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: -0.02em;
}
.stat .v .small { font-size: 0.55em; color: var(--ink-2); font-weight: 600; }
.stat .l {
  font-size: 13px; color: var(--ink-2);
  margin-top: 18px;
  letter-spacing: -0.005em;
}

/* ============================================================
   Casino cards (windows)
   ============================================================ */
.casinos {
  position: relative;
  padding: 90px 0 60px;
  border-top: 1px solid var(--line);
}
.casinos-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.casinos-head h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92; letter-spacing: -0.05em; font-weight: 700;
}
.casinos-head h2 em { font-style: italic; color: var(--ink-2); font-weight: 700; }
.casinos-head .right { max-width: 380px; }
.casinos-head .eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.casinos-head .eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-0);
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}
.casinos-head p {
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 20px;
}

.casino-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)),
    rgba(6, 6, 9, 0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  display: flex; flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 60px rgba(0,0,0,0.55);
  transition: border-color 0.25s, transform 0.25s;
}
.casino-card:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
}

/* banner area — user can drop an image later */
.casino-banner {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)),
    rgba(4, 4, 6, 0.7);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.casino-banner:hover { filter: brightness(1.1); }
.casino-banner:hover .banner-cta { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.32); }
.casino-banner:hover .stamp { transform: scale(1.015); }
.casino-banner .stamp { transition: transform .25s ease; }

/* CTA pill inside the banner — large, matches site .btn style */
.casino-banner .banner-cta {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 14px 15px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  color: var(--ink-0);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 2;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 14px 40px rgba(0,0,0,0.40);
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.casino-banner:hover .banner-cta {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 20px 56px rgba(0,0,0,0.50);
  transform: translateX(-50%) translateY(-2px);
}
.casino-banner .banner-cta .domain {
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 17px;
}
.casino-banner .banner-cta .go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(244, 243, 239, 0.94);
  color: #0a0a0e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.casino-banner .banner-cta .go svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

@media (max-width: 540px) {
  .casino-banner .banner-cta {
    bottom: 14px;
    padding: 11px 11px 11px 18px;
    gap: 10px;
    font-size: 14px;
  }
  .casino-banner .banner-cta .domain { font-size: 14px; }
  .casino-banner .banner-cta .go { padding: 6px 11px; font-size: 11px; }
}
.casino-banner .banner-glow {
  position: absolute; inset: -20%;
  filter: blur(50px);
  animation: shimmer-glow 32s ease-in-out infinite alternate;
}
.casino-banner.tone-a .banner-glow {
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(60, 80, 130, 0.40), transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(100, 75, 105, 0.30), transparent 60%);
}
.casino-banner.tone-b .banner-glow {
  background:
    radial-gradient(ellipse 60% 50% at 60% 30%, rgba(100, 90, 70, 0.30), transparent 60%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(70, 90, 100, 0.30), transparent 60%);
}
.casino-banner.tone-c .banner-glow {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(85, 65, 100, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(55, 75, 105, 0.30), transparent 60%);
}
.casino-banner.tone-d .banner-glow {
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(75, 90, 75, 0.30), transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 30%, rgba(105, 90, 75, 0.30), transparent 60%);
}
.casino-banner .frost {
  position: absolute; inset: 0;
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  background: rgba(4, 4, 6, 0.25);
}
.casino-banner .stamp {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--ink-0);
  text-shadow:
    0 0 28px rgba(255,255,255,0.20),
    0 8px 32px rgba(0,0,0,0.4);
  user-select: none;
}
.casino-banner .stamp em { font-style: italic; color: var(--ink-2); font-weight: 700; }

.casino-banner .live-pill {
  position: absolute; top: 18px; left: 18px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  font-size: 11px; color: var(--ink-0);
  font-weight: 600; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 7px;
  text-transform: uppercase;
}
.casino-banner .live-pill .d {
  width: 5px; height: 5px; border-radius: 50%;
  background: #f4f3ef; box-shadow: 0 0 8px rgba(255,255,255,0.7);
  animation: pulse 1.4s infinite;
}
.casino-banner .rank {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; color: var(--ink-2);
  letter-spacing: 0.16em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.casino-banner .rank strong { color: var(--ink-0); font-weight: 600; }

/* card body */
.casino-body {
  padding: 26px 28px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.casino-name-row {
  display: flex; align-items: end; justify-content: space-between; gap: 16px;
}
.casino-name {
  font-size: 30px; font-weight: 700; letter-spacing: -0.035em;
  line-height: 1;
}
.casino-name em { font-style: italic; color: var(--ink-2); font-weight: 700; }
.casino-tag {
  font-size: 12.5px; color: var(--ink-2); margin-top: 6px;
}
.casino-bonus {
  text-align: right;
}
.casino-bonus .k {
  font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase;
}
.casino-bonus .v {
  font-size: 16px; color: var(--ink-0); font-weight: 600; letter-spacing: -0.01em;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.casino-desc {
  font-size: 14.5px;
  color: var(--ink-1);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.012em;
}

/* code block */
.code-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--line-3);
  backdrop-filter: blur(12px);
}
.code-row .label {
  font-size: 10.5px; color: var(--ink-3);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.code-row .code {
  font-size: 19px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink-0);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  color: var(--ink-1);
  font-family: inherit; font-size: 12px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.copy-btn:hover { color: var(--ink-0); background: rgba(255,255,255,0.08); border-color: var(--line-3); }
.copy-btn svg { width: 12px; height: 12px; }

/* mirrors */
.mirrors-block .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.mirrors-block .h {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.mirrors-block .meta { font-size: 11px; color: var(--ink-3); }
.mirrors-block .meta strong { color: var(--ink-1); font-weight: 500; }
.mirrors {
  display: flex; flex-direction: column; gap: 6px;
}
.mirror {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-radius: 11px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-size: 13px; color: var(--ink-1);
  transition: all 0.18s;
  cursor: pointer;
}
.mirror:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--line-2);
  color: var(--ink-0);
}
.mirror .url {
  display: inline-flex; align-items: center; gap: 8px;
  font-variant-numeric: tabular-nums;
}
.mirror .status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--ink-2);
  letter-spacing: 0.02em;
}
.mirror .status .d {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(220, 220, 200, 0.7);
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
}
.mirror .status.warn .d { background: rgba(200, 180, 100, 0.7); box-shadow: 0 0 6px rgba(200, 180, 100, 0.4); }

.casino-foot {
  display: flex; gap: 10px; align-items: center; padding-top: 4px;
}
.casino-foot .btn { flex: 1; justify-content: center; }

/* Big primary CTA in casino card — shows clean domain text, links to ref URL */
.btn-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink-1);
  text-decoration: none;
  backdrop-filter: blur(20px);
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta .domain {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.btn-cta .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-cta .arrow svg { width: 16px; height: 16px; }

/* ============================================================
   Terminal — live log section, kept but recolored
   ============================================================ */
.terminal-section {
  position: relative;
  padding: 100px 0 80px;
  border-top: 1px solid var(--line);
}
.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.terminal-grid h2 {
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.92; letter-spacing: -0.05em; font-weight: 700;
}
.terminal-grid h2 em { font-style: italic; color: var(--ink-2); font-weight: 700; }
.terminal-grid p {
  font-size: 16px; color: var(--ink-1); line-height: 1.5;
  max-width: 420px; margin-top: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.terminal {
  background: rgba(4, 4, 6, 0.75);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(24px);
  border-radius: 16px;
  overflow: hidden;
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", monospace;
  font-size: 13px;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.terminal-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.4);
}
.terminal-head .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.terminal-head .title {
  margin-left: 14px;
  font-size: 11.5px; color: var(--ink-2);
  font-family: "Onest", sans-serif;
  letter-spacing: 0.04em;
}
.terminal-body {
  padding: 22px 24px;
  display: flex; flex-direction: column;
  gap: 6px;
  min-height: 280px;
}
.tline { display: flex; gap: 14px; align-items: baseline; color: var(--ink-1); }
.tline .prompt { color: var(--ink-2); }
.tline .cmd { color: var(--ink-0); }
.tline .tag {
  color: var(--ink-3);
  padding-right: 4px;
  display: inline-block;
  min-width: 70px;
}
.tline .user { color: var(--ink-0); font-weight: 500; }
.tline .game { color: var(--ink-2); }
.tline .amt { color: var(--ink-0); font-weight: 600; margin-left: auto; }
.tline .ok { color: #c8e6cf; }
.tline.cursor::after {
  content: "▮";
  margin-left: 6px;
  animation: blink 1.05s steps(2) infinite;
  color: var(--ink-0);
}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   Socials
   ============================================================ */
.socials {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.socials-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.socials-head h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95; letter-spacing: -0.045em; font-weight: 700;
}
.socials-head h2 em { font-style: italic; color: var(--ink-2); font-weight: 700; }
.socials-head p {
  color: var(--ink-1);
  max-width: 360px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.social-card {
  display: flex; flex-direction: column;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  justify-content: space-between;
  text-decoration: none;
}
.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-3);
  background: rgba(255, 255, 255, 0.05);
}
.social-card .icon-wrap {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  color: var(--ink-0);
}
.social-card .icon-wrap svg { width: 16px; height: 16px; }
.social-card .meta { margin-top: auto; }
.social-card .meta .h {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-0);
  letter-spacing: -0.028em;
}
.social-card .meta .s { font-size: 12.5px; color: var(--ink-2); margin-top: 6px; }
.social-card .arrow {
  position: absolute; top: 26px; right: 26px;
  color: var(--ink-3);
  transition: color 0.2s, transform 0.2s;
}
.social-card .arrow svg { width: 14px; height: 14px; }
.social-card:hover .arrow { color: var(--ink-0); transform: translate(2px, -2px); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  max-width: 1440px;
  margin: 80px auto 0;
  position: relative; z-index: 2;
}
.footer .wrap { padding: 0 48px; }
.footer-top {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-mega {
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.85; letter-spacing: -0.06em; font-weight: 700;
  color: var(--ink-0);
}
.footer-mega em { font-style: italic; color: var(--ink-3); font-weight: 700; }
.footer-blurb {
  color: var(--ink-1);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 320px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 30px; margin-top: 60px;
  border-top: 1px solid var(--line);
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom .legal { font-size: 11.5px; color: var(--ink-3); }
.crypto-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.crypto-chip {
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  font-size: 11px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.crypto-chip .d { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 100px 0 80px;
}
.faq-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  align-items: end;
}
.faq-head h2 {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.faq-head h2 em { font-style: italic; color: var(--ink-2); font-weight: 800; }
.faq-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 440px;
}
.faq-head p em { font-style: italic; color: var(--ink-1); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: background .2s, border-color .2s;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink-2);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}
.faq-item .faq-answer {
  padding: 20px 28px 26px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq-item .faq-answer em {
  font-style: italic;
  color: var(--ink-1);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .shimmer-panel { max-height: 460px; aspect-ratio: 16/10; }
  .casino-grid { grid-template-columns: 1fr; }
  .terminal-grid { grid-template-columns: 1fr; gap: 40px; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .faq-head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 700px) {
  .wrap { padding: 0 24px; }
  .nav { padding: 22px 24px; }
  .socials-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 24px; padding: 60px 0; }
  .stat { border-left: none; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .stat:first-child { border-top: none; padding-top: 0; }
  .casinos, .terminal-section, .socials, .faq-section { padding: 60px 0; }
  .casino-body { padding: 22px 22px 24px; }
  .faq-item summary { padding: 18px 22px; font-size: 15px; }
  .faq-item .faq-answer { padding: 16px 22px 22px; font-size: 14px; }
}
