* {
  box-sizing: border-box;
}

:root {
  --bg: #080c17;
  --bg-soft: #0d1323;
  --panel: rgba(17, 25, 44, 0.82);
  --panel-strong: #111a2d;
  --text: #f7f8fb;
  --muted: #a7b0c4;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #e8b557;
  --gold-2: #ffd781;
  --red: #d6384a;
  --green: #3dc888;
  --radius: 26px;
  --shadow: 0 25px 70px rgba(0, 0, 0, .34);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 181, 87, .11), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(66, 106, 220, .11), transparent 31%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.page-glow {
  position: fixed;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: .13;
  z-index: -1;
}

.glow-one {
  background: #e8b557;
  top: -130px;
  left: -120px;
}

.glow-two {
  background: #3158c7;
  top: 300px;
  right: -190px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 12, 23, .72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 28px rgba(232, 181, 87, .2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: .15em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #dce1ec;
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 10px;
}

.hero {
  padding: 96px 0 86px;
}

.hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 55px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(232, 181, 87, .22);
  background: rgba(232, 181, 87, .07);
  color: #f4d69b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(61, 200, 136, .4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(61, 200, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 200, 136, 0); }
}

.hero h1 {
  margin: 25px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 5.7vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: var(--gold-2);
}

.hero-text {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #17130b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 15px 40px rgba(232, 181, 87, .18);
}

.btn-secondary {
  color: #edf0f6;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
}

.hero-stats {
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-stats strong {
  font-size: 23px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.board-disc {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 17px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    #101729;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 30px 90px rgba(0,0,0,.45), inset 0 0 35px rgba(232,181,87,.05);
}

.disc-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(232,181,87,.36);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background:
    radial-gradient(circle, rgba(232,181,87,.08), transparent 53%),
    #0b1220;
}

.disc-inner strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 55px;
  color: var(--gold-2);
}

.disc-inner span {
  font-weight: 800;
  font-size: 24px;
  color: #dce1ec;
}

.visual-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
}

.ring-one {
  width: 420px;
  height: 420px;
}

.ring-two {
  width: 510px;
  height: 510px;
}

.floating-card {
  position: absolute;
  width: 105px;
  height: 145px;
  border-radius: 15px;
  background: #f7f2e8;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 25px 50px rgba(0,0,0,.35);
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 26px;
}

.card-red {
  top: 35px;
  right: 70px;
  color: #be2034;
  transform: rotate(10deg);
}

.card-black {
  left: 48px;
  bottom: 53px;
  color: #111;
  transform: rotate(-11deg);
}

.floating-card .suit {
  align-self: flex-end;
  font-size: 46px;
}

.dice {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 15px;
  background: #f1eadc;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.dice i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111;
}

.dice-one {
  right: 55px;
  bottom: 52px;
  transform: rotate(13deg);
}

.dice-two {
  left: 95px;
  top: 83px;
  transform: rotate(-8deg);
}

.dice i:nth-child(1) { top: 12px; left: 12px; }
.dice i:nth-child(2) { top: 12px; right: 12px; }
.dice i:nth-child(3) { top: 28px; left: 28px; }
.dice i:nth-child(4) { bottom: 12px; left: 12px; }
.dice i:nth-child(5) { bottom: 12px; right: 12px; }
.dice i:nth-child(6) { top: 28px; right: 12px; }

.games-section {
  padding: 90px 0 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 35px;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.05;
}

.section-heading p,
.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.game-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow: 0 20px 65px rgba(0,0,0,.18);
  transition: transform .25s ease, border-color .25s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,181,87,.28);
}

.game-art {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.cruce-art {
  background:
    radial-gradient(circle at 70% 20%, rgba(214,56,74,.29), transparent 28%),
    radial-gradient(circle at 20% 85%, rgba(232,181,87,.16), transparent 31%),
    #10182a;
}

.table-art {
  background:
    radial-gradient(circle at 80% 80%, rgba(232,181,87,.17), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(58,121,207,.17), transparent 30%),
    #10182a;
}

.game-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(7, 11, 19, .68);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(8px);
  color: #e3e7ee;
  font-size: 11px;
  font-weight: 700;
}

.mini-cards {
  position: relative;
  width: 265px;
  height: 185px;
}

.mcard {
  position: absolute;
  width: 105px;
  height: 150px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background: #f3eee4;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0 22px 45px rgba(0,0,0,.28);
}

.mcard:nth-child(1) { left: 15px; top: 26px; transform: rotate(-13deg); z-index: 1; }
.mcard:nth-child(2) { left: 81px; top: 10px; transform: rotate(0); z-index: 2; }
.mcard:nth-child(3) { right: 13px; top: 27px; transform: rotate(13deg); z-index: 3; }
.mcard.red { color: #c1253b; }
.mcard.dark { color: #111; }

.backgammon-mini {
  width: 310px;
  height: 190px;
  border: 12px solid #6e4528;
  border-radius: 12px;
  background: #d3a260;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0,0,0,.28);
}

.backgammon-mini::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 9px;
  transform: translateX(-50%);
  background: #6e4528;
}

.triangles {
  height: 50%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.triangles i {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
}

.triangles.top i {
  border-top: 70px solid #472a1c;
}

.triangles.top i:nth-child(even) {
  border-top-color: #b52836;
}

.triangles.bottom {
  align-items: end;
}

.triangles.bottom i {
  border-bottom: 70px solid #472a1c;
}

.triangles.bottom i:nth-child(even) {
  border-bottom-color: #b52836;
}

.mini-checkers b {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #171717;
  border: 2px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
  z-index: 4;
}

.mini-checkers b:nth-child(1) { left: 26px; top: 18px; }
.mini-checkers b:nth-child(2) { left: 55px; top: 38px; }
.mini-checkers b:nth-child(3) { right: 28px; bottom: 16px; }
.mini-checkers b:nth-child(4) { right: 57px; bottom: 35px; }
.mini-checkers b.light { background: #f0e4ce; border-color: rgba(0,0,0,.16); }

.game-body {
  padding: 27px;
}

.game-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.game-body h3,
.coming-inner h3 {
  margin: 9px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.game-icon {
  color: var(--gold-2);
  font-size: 30px;
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.status-development {
  background: rgba(232,181,87,.09);
  color: var(--gold-2);
  border: 1px solid rgba(232,181,87,.16);
}

.status-live {
  background: rgba(61,200,136,.09);
  color: #68dfa9;
  border: 1px solid rgba(61,200,136,.17);
}

.status-soon {
  background: rgba(255,255,255,.055);
  color: #bbc2d0;
  border: 1px solid rgba(255,255,255,.08);
}

.game-body p,
.coming-inner p {
  color: var(--muted);
  line-height: 1.7;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 24px;
}

.game-meta span {
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.055);
  color: #c7cedb;
  font-size: 11px;
}

.game-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  transition: .2s ease;
}

.game-link:hover {
  color: #17130b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
}

.coming-card {
  grid-column: 1 / -1;
  min-height: 265px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% -25%, rgba(232,181,87,.15), transparent 40%),
    rgba(255,255,255,.02);
}

.coming-inner {
  max-width: 610px;
  text-align: center;
  padding: 42px 25px;
}

.coming-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(232,181,87,.08);
  border: 1px solid rgba(232,181,87,.17);
  color: var(--gold-2);
  font-size: 29px;
}

.about-section {
  padding: 25px 0 105px;
}

.about-box {
  padding: 55px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}

.about-copy p {
  margin-top: 22px;
}

.about-points {
  display: grid;
  gap: 13px;
}

.about-points > div {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
}

.about-points span {
  display: block;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.about-points strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

.about-points p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.12);
}

.footer-inner {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.footer-inner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-inner strong {
  font-size: 14px;
}

.footer-inner span,
.footer-links a {
  color: var(--muted);
  font-size: 12px;
}

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

.footer-links a:hover {
  color: var(--gold-2);
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .about-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    min-height: 470px;
  }

  .section-heading {
    gap: 20px;
  }

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

  .coming-card {
    grid-column: auto;
  }

  .about-box {
    gap: 36px;
    padding: 36px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(10,15,27,.98);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
  }

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

  .main-nav a {
    padding: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-stats {
    gap: 19px;
    justify-content: space-between;
  }

  .hero-stats strong {
    font-size: 19px;
  }

  .hero-visual {
    min-height: 390px;
    transform: scale(.86);
    margin: -25px 0;
  }

  .games-section {
    padding-top: 60px;
  }

  .game-art {
    min-height: 225px;
  }

  .backgammon-mini {
    transform: scale(.82);
  }

  .about-box {
    padding: 28px 22px;
  }

  .footer-inner {
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 450px) {
  .brand-copy small {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats span {
    font-size: 10px;
  }

  .hero-visual {
    min-height: 350px;
    transform: scale(.72);
    margin: -50px 0;
  }

  .game-body {
    padding: 22px;
  }

  .game-body h3,
  .coming-inner h3 {
    font-size: 30px;
  }
}

.reveal-card {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease, border-color .25s ease;
}
