:root {
  color-scheme: light;
  --ink: #21150d;
  --muted: #6b5a4e;
  --paper: #fff7e7;
  --cream: #fffdf7;
  --line: #ead8b3;
  --green: #0b4f35;
  --green-2: #123d2f;
  --red: #b6282d;
  --gold: #d9a640;
  --blue: #1265b1;
  --shadow: 0 24px 80px rgba(64, 35, 16, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(130deg, rgba(11, 79, 53, 0.08), transparent 34rem),
    radial-gradient(circle at 12% 2%, rgba(217, 166, 64, 0.28), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(18, 101, 177, 0.16), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #f5ead7 58%, #102f25 58%, #08241d 100%);
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(234, 216, 179, 0.86);
  background: rgba(255, 248, 235, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(11, 79, 53, 0.18);
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(11, 79, 53, 0.22);
}

.button:hover {
  background: #073b28;
  text-decoration: none;
}

.button.gold {
  background: var(--gold);
  color: var(--ink);
  border-color: rgba(92, 57, 12, 0.16);
}

.hero {
  padding: 34px 0 36px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  margin-top: 18px;
  max-width: 720px;
  font-size: clamp(44px, 7vw, 78px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4.8vw, 50px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.game-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.game-facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(11, 79, 53, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(42, 22, 8, 0.06);
}

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

.store-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.showcase {
  position: relative;
  min-height: 590px;
}

.phone-frame {
  position: relative;
  width: min(390px, 72vw);
  margin: 0 auto;
  border: 8px solid #211610;
  border-radius: 32px;
  background: #0d221b;
  box-shadow: 0 30px 90px rgba(42, 22, 8, 0.22);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 96px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #100c0a;
  z-index: 3;
}

.real-screen {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
}

.screen-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(234, 216, 179, 0.72);
  border-radius: 999px;
  background: rgba(11, 79, 53, 0.88);
  color: #fff8e8;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(8, 36, 29, 0.24);
}

.screen-room {
  min-height: 620px;
  padding: 44px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 249, 232, 0.2), rgba(7, 36, 29, 0.1)),
    url("/assets/table-room.png") center / cover;
}

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

.wallet-pill,
.round-icon {
  border: 2px solid rgba(139, 42, 24, 0.28);
  background: rgba(255, 250, 231, 0.93);
  box-shadow: 0 8px 16px rgba(51, 25, 8, 0.12);
}

.wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
}

.coin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
}

.round-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 900;
}

.hero-crest {
  display: block;
  width: 250px;
  margin: 58px auto 18px;
  filter: drop-shadow(0 18px 26px rgba(25, 12, 4, 0.22));
}

.mode-preview {
  width: min(310px, 92%);
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(255, 250, 231, 0.9);
  box-shadow: 0 18px 46px rgba(43, 20, 5, 0.22);
  overflow: hidden;
}

.mode-preview img {
  display: block;
  width: 100%;
}

.bottom-cards {
  position: absolute;
  right: 2px;
  bottom: -18px;
  width: min(300px, 56vw);
  transform: rotate(-6deg);
  filter: drop-shadow(0 20px 22px rgba(24, 13, 8, 0.26));
}

.chips-art {
  position: absolute;
  left: 2px;
  bottom: 72px;
  width: 150px;
  transform: rotate(5deg);
  filter: drop-shadow(0 18px 18px rgba(24, 13, 8, 0.22));
}

.section {
  padding: 50px 0;
}

.light-section {
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(255, 247, 231, 0.96));
}

.dark-section {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(217, 166, 64, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--green-2), #08241d);
}

.section-intro {
  max-width: 780px;
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: grid;
  gap: 13px;
}

.screenshots-section {
  border-top: 1px solid rgba(234, 216, 179, 0.86);
}

.dark-section .section-intro,
.dark-section p,
.dark-section li {
  color: rgba(255, 255, 255, 0.76);
}

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

.mode-card {
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(234, 216, 179, 0.82);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(42, 22, 8, 0.12);
}

.mode-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.mode-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(234, 216, 179, 0.92);
  border-radius: 8px;
  background: rgba(255, 250, 232, 0.9);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(33, 21, 13, 0.12);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.proof-panel {
  border: 1px solid rgba(234, 216, 179, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  min-height: 260px;
}

.proof-panel h3 {
  margin-bottom: 12px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.asset-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
}

.asset-tile {
  min-height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 216, 179, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.asset-tile img {
  max-height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.24));
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 14px;
  align-items: stretch;
}

.screenshot-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(42, 22, 8, 0.1);
  overflow: hidden;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
}

.screenshot-card.large img {
  height: 660px;
}

.screenshot-card figcaption {
  padding: 13px 15px;
  border-top: 1px solid var(--line);
  color: var(--green);
  background: rgba(255, 250, 232, 0.94);
  font-weight: 900;
}

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

.card,
.legal-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(42, 22, 8, 0.07);
}

.card p,
.legal-block p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-block ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.notice {
  border: 1px solid rgba(217, 166, 64, 0.5);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.9);
  padding: 20px 22px;
  color: var(--muted);
  font-weight: 700;
}

.support-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(234, 216, 179, 0.24);
  border-radius: 8px;
  background: #102f25;
  color: white;
  padding: 28px;
}

.support-box p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(234, 216, 179, 0.18);
  background: #08241d;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-ownership {
  display: grid;
  gap: 4px;
  max-width: 560px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a,
.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.page-title {
  padding: 56px 0 24px;
}

.page-title h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.content {
  min-height: 70vh;
  background: linear-gradient(180deg, #fffaf0, #f5ead7);
  padding-bottom: 56px;
}

.content .legal-block {
  margin-bottom: 16px;
}

.verification-card {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 28px;
}

.verification-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 17px;
}

.verification-list strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero-grid,
  .proof-grid,
  .legal-grid,
  .cards,
  .support-box {
    grid-template-columns: 1fr;
  }

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

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-card img,
  .screenshot-card.large img {
    height: 620px;
  }

  .showcase {
    min-height: 540px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 430px);
  }

  .nav {
    min-height: 62px;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 15px;
  }

  .nav-links {
    flex: 1;
    justify-content: flex-end;
    max-width: calc(100% - 118px);
    gap: 4px;
    overflow-x: auto;
    padding: 0 0 2px;
    font-size: 11px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 5px 5px;
    border-radius: 999px;
    background: rgba(255, 253, 247, 0.72);
  }

  .hero {
    padding: 18px 0 24px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    order: 2;
  }

  .showcase {
    order: 1;
    min-height: 488px;
  }

  .phone-frame {
    width: min(318px, 86vw);
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-frame::before {
    width: 78px;
    height: 15px;
    top: 9px;
  }

  h1 {
    margin-top: 14px;
    font-size: clamp(40px, 13vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .lead {
    margin-top: 14px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 14px;
  }

  .screen-room {
    min-height: 560px;
  }

  .mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .asset-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mode-card,
  .mode-card img {
    min-height: 178px;
  }

  .mode-label {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px;
    font-size: 12px;
  }

  .asset-tile {
    min-height: 102px;
    padding: 10px;
  }

  .asset-tile img {
    max-height: 78px;
  }

  .bottom-cards {
    right: -2px;
    bottom: -8px;
    width: 190px;
  }

  .chips-art {
    left: 4px;
    bottom: 48px;
    width: 104px;
  }

  .section {
    padding: 38px 0;
  }

  .section-intro {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .screenshot-grid {
    display: flex;
    gap: 12px;
    margin: 0 -14px;
    padding: 0 14px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screenshot-grid::-webkit-scrollbar {
    display: none;
  }

  .screenshot-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .screenshot-card img,
  .screenshot-card.large img {
    height: 510px;
  }

  .screenshot-card figcaption {
    padding: 11px 12px;
    font-size: 14px;
  }

  .support-box {
    padding: 22px;
  }

  .footer-row {
    display: grid;
  }
}

@media (max-width: 380px) {
  .phone-frame {
    width: min(292px, 84vw);
  }

  .showcase {
    min-height: 455px;
  }

  .screenshot-card {
    flex-basis: 86%;
  }

  .screenshot-card img,
  .screenshot-card.large img {
    height: 470px;
  }
}
