* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff9ef;
  color: #201b18;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.top-strip {
  height: 12px;
  background: linear-gradient(90deg, #ff6b35, #ffd166, #41d3bd, #5b6cff, #ff6b35);
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
}

.logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #201b18;
  color: #fff;
  box-shadow: 5px 5px 0 #ffcf4a;
}

.nav {
  display: flex;
  gap: 28px;
  color: #514640;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 34px;
  align-items: center;
  padding: 20px 0 58px;
}

.eyebrow {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid rgb(32 27 24 / 15%);
  border-radius: 999px;
  background: #fff;
  color: #7a3d1d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .95;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: #61534c;
  font-size: 20px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 2px solid #201b18;
  border-radius: 8px;
  padding: 13px 22px;
  background: #fff;
  color: #201b18;
  box-shadow: 5px 5px 0 #ffd166;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  border-color: #ff6b35;
  background: #ff6b35;
  color: #fff;
  box-shadow: 5px 5px 0 #201b18;
}

.stats {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  text-align: center;
}

.stat {
  border: 1px solid rgb(32 27 24 / 10%);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 27px;
}

.stat span {
  color: #786b63;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.game-panel {
  min-height: 520px;
  border: 2px solid #201b18;
  border-radius: 8px;
  background: #2d275b;
  padding: 16px;
  box-shadow: 10px 10px 0 #201b18;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 6px;
  background: rgb(255 255 255 / 10%);
  padding: 13px 16px;
  color: #fff;
  font-weight: 900;
}

.tokens-pill {
  border-radius: 999px;
  background: #41d3bd;
  color: #201b18;
  padding: 5px 12px;
  font-size: 12px;
}

.game-box {
  min-height: 390px;
  margin-top: 16px;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.game {
  display: none;
}

.game.active {
  display: block;
}

.mini-label {
  color: #876a00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h2 {
  margin: 12px 0 0;
  font-size: 28px;
}

.wheel {
  display: grid;
  width: 210px;
  height: 210px;
  margin: 22px auto;
  place-items: center;
  border: 4px solid #201b18;
  border-radius: 50%;
  background: conic-gradient(#ff6b35 0 33%, #5b6cff 33% 66%, #ffd166 66% 100%);
  box-shadow: 6px 6px 0 #201b18;
}

.wheel span {
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-weight: 900;
}

.choice-grid,
.reels,
.cards {
  display: grid;
  gap: 12px;
}

.choice-grid,
.reels {
  grid-template-columns: repeat(3, 1fr);
}

.cards {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.choice,
.reel,
.card {
  border: 2px solid #201b18;
  border-radius: 8px;
  background: #fff9ef;
  padding: 14px;
  font-weight: 900;
}

.choice.active {
  background: #ffd166;
}

.reel {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: #ffd166;
  box-shadow: 4px 4px 0 #201b18;
  font-size: 54px;
}

.card {
  display: grid;
  min-height: 155px;
  place-items: center;
  text-align: center;
  box-shadow: 4px 4px 0 #201b18;
}

.card strong {
  display: block;
  margin-top: 12px;
  font-size: 48px;
}

.notice {
  margin-top: 16px;
  border-radius: 8px;
  background: #2d275b;
  color: #fff;
  padding: 13px;
  font-weight: 800;
}

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 52px 0;
}

.room {
  min-height: 300px;
  border: 2px solid #201b18;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 6px 6px 0 #201b18;
}

.room.sunset {
  background: #ffb36b;
}

.room.mint {
  background: #89e4cd;
}

.room.violet {
  background: #b8a2ff;
}

.room-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 52px;
  font-weight: 900;
}

.tag {
  border-radius: 999px;
  background: rgb(255 255 255 / 80%);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.room p {
  min-height: 62px;
  color: #3f3732;
  font-weight: 700;
  line-height: 1.5;
}

.community {
  border-top: 1px solid rgb(32 27 24 / 10%);
  border-bottom: 1px solid rgb(32 27 24 / 10%);
  background: #fff;
  padding: 52px 0;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
}

.friend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.friend-list span {
  border: 1px solid rgb(32 27 24 / 10%);
  border-radius: 999px;
  background: #fff9ef;
  padding: 10px 16px;
  font-weight: 900;
}

.activity {
  border: 2px solid #201b18;
  border-radius: 8px;
  background: #41d3bd;
  padding: 20px;
  box-shadow: 6px 6px 0 #201b18;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  font-weight: 800;
}

.activity-item span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: #201b18;
  color: #fff;
}

.site-footer {
  background: #0a1d63;
  color: #fff;
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
}

.site-footer p {
  color: rgb(255 255 255 / 80%);
  line-height: 1.7;
}

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

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.badge {
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
  padding: 13px 18px;
  font-weight: 900;
}

.ga-logo {
  display: inline-flex;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.ga-logo img {
  width: 155px;
  height: 38px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.contact-card {
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
  padding: 16px;
  color: rgb(255 255 255 / 80%);
  font-weight: 700;
}

.contact-card small {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  border-top: 1px solid rgb(255 255 255 / 15%);
  padding-top: 26px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: rgb(255 255 255 / 80%);
  font-weight: 800;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
}

.legal-section {
  margin-top: 20px;
  border: 2px solid #201b18;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 5px 5px 0 #201b18;
}

.legal-section p {
  color: #514640;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .rooms,
  .community-grid,
  .footer-grid,
  .footer-info,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0;
  }

  .footer-bottom {
    flex-direction: column-reverse;
  }
}

@media (max-width: 560px) {
  .stats,
  .choice-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
}
