:root {
  --ink: #1d1a18;
  --paper: #f6f0e7;
  --gold: #b7883a;
  --gold-soft: #d7b26b;
  --line: #cab28a;
  --deep: #26221f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--deep);
  background: linear-gradient(180deg, #efe5d7 0%, var(--paper) 52%, #f9f3eb 100%);
}

body.deco-lock {
  overflow: hidden;
}

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

.deco-head {
  margin: 0.9rem;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  background: #fbf6ef;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.6rem;
  position: sticky;
  top: 0;
  z-index: 40;
}

.deco-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
}

.deco-brand img {
  width: 42px;
  height: 42px;
}

.deco-toggle {
  margin-left: auto;
  width: 43px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.deco-toggle span {
  height: 2px;
  background: #876537;
}

.deco-nav {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  gap: 0.26rem;
}

.deco-nav.show {
  display: flex;
}

.deco-nav a {
  border-radius: 7px;
  padding: 0.53rem 0.66rem;
}

.deco-nav a:hover,
.deco-nav a:focus-visible {
  background: #f0e2cd;
}

.deco-main {
  width: min(1510px, 100%);
  margin: 0 auto;
  padding: 0.2rem 0.9rem 1.2rem;
}

.deco-hero {
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem;
  background:
    linear-gradient(90deg, rgba(183, 136, 58, 0.16), rgba(215, 178, 107, 0.05)),
    #fffaf2;
}

.deco-kicker {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a6531;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
}

h1 {
  margin: 0.6rem 0;
  font-size: clamp(1.95rem, 5.1vw, 3.35rem);
  line-height: 1.08;
}

.deco-cta {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.66rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  color: #2b1e10;
  font-weight: 800;
}

.deco-badges {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.deco-badges article,
.deco-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: #fffaf3;
}

.deco-badges p,
.deco-grid p {
  margin-bottom: 0;
  color: #5e4e35;
}

.deco-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.deco-game {
  margin-top: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem;
  background: #fffaf3;
}

.deco-frame {
  margin-top: 0.5rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid #c9ab73;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.deco-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.deco-doc {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.legal {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf3;
}

.legal h2 {
  margin-top: 1.08rem;
}

.deco-foot {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  padding: 1rem;
  color: #65553c;
}

.deco-foot div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.deco-foot a {
  color: #8a6632;
}

.deco-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  background: rgba(42, 35, 24, 0.7);
  padding: 1rem;
}

.deco-gate.visible {
  display: grid;
}

.deco-card {
  width: min(420px, 100%);
  border: 1px solid #cfb27f;
  border-radius: 15px;
  background: #fdf8f1;
  padding: 1rem;
}

.deco-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.65rem;
}

.deco-actions button {
  flex: 1;
  border: 1px solid #c0a26e;
  border-radius: 9px;
  background: #fff;
  color: #6f5229;
  font-weight: 700;
  padding: 0.66rem;
}

@media (min-width: 920px) {
  .deco-head {
    margin-inline: 1.2rem;
    grid-template-columns: auto 1fr;
  }

  .deco-toggle {
    display: none;
  }

  .deco-nav {
    display: flex;
    grid-column: auto;
    flex-direction: row;
    justify-content: flex-end;
  }

  .deco-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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