:root {
  color-scheme: dark;
  --bg: #050202;
  --surface: #100604;
  --surface-2: #190805;
  --panel: #170907;
  --panel-2: #24100b;
  --line: rgba(255, 196, 0, .25);
  --text: #fff7e8;
  --muted: #c9bca9;
  --accent: #d71920;
  --accent-strong: #ff1f2a;
  --accent-2: #ffc400;
  --gold: #d9a90b;
  --gold-2: #ffcf33;
  --shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 25% 0%, rgba(215, 25, 32, .18), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(255, 196, 0, .08), transparent 26rem),
    linear-gradient(180deg, var(--bg) 0%, #090302 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(5, 2, 2, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent-strong), #7e0d10);
  color: white;
  overflow: hidden;
}

.brand-mark.has-logo {
  background: transparent;
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
}

nav a:hover { color: var(--text); }

.auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-badge {
  color: var(--accent-2);
  font-size: 14px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-btn, .ghost-btn {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 16px;
  color: white;
  font-weight: 700;
}

.primary-btn {
  background: linear-gradient(180deg, var(--accent-strong), #8c1115);
  border-color: rgba(255, 196, 0, .35);
}
.primary-btn:hover { background: linear-gradient(180deg, #ff343d, #9c151a); }
.ghost-btn { background: rgba(255, 196, 0, .08); border-color: var(--line); }
.ghost-btn:hover { background: rgba(255, 196, 0, .14); }
.hidden { display: none !important; }

main { overflow: hidden; }

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 56px) 46px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 25, 32, .16), transparent 34rem),
    linear-gradient(180deg, #080302, var(--surface));
}

.hero-carousel-only {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding-top: clamp(34px, 5vw, 58px);
}

.hero-carousel-only .hero-panel {
  width: min(1200px, 70vw);
  min-height: min(42vh, 420px);
}

.hero-carousel-only .hero-panel img {
  min-height: min(42vh, 420px);
}

.hero-copy { max-width: 710px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2 { margin: 0; line-height: .98; letter-spacing: 0; }
h1 { font-size: clamp(48px, 7vw, 96px); max-width: 900px; }
h2 { font-size: clamp(34px, 5vw, 62px); }

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.hero-panel {
  position: relative;
  min-height: min(42vh, 420px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 196, 0, .08), 0 24px 70px rgba(0, 0, 0, .52);
  background: var(--panel);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: min(42vh, 420px);
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, .45) 100%);
}

.hero-panel-text {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 62px;
}

.hero-panel-text span, .price-card span, .chat-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel-text strong { display: block; margin-top: 6px; font-size: clamp(26px, 3vw, 44px); }
.hero-panel-text p { margin: 8px 0 0; color: #d7dce8; line-height: 1.5; }

.slide-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  color: white;
  background: rgba(0, 0, 0, .42);
  font-size: 30px;
  line-height: 1;
}

.slide-btn:hover { background: rgba(215, 25, 32, .86); border-color: var(--gold-2); }
.slide-btn-prev { left: 18px; }
.slide-btn-next { right: 18px; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .22);
}

.hero-dot.active {
  width: 28px;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.section, .split-section, .pricing-section {
  padding: 70px clamp(18px, 4vw, 56px);
}

#platforms {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, .07), transparent 30rem),
    linear-gradient(180deg, var(--surface), #080302);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.platforms-heading {
  justify-content: center;
  text-align: center;
  margin-bottom: 42px;
}

.platforms-heading h2 {
  color: var(--accent-strong);
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 900;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .45);
}

.platforms-heading h2::after {
  content: "";
  display: block;
  width: min(180px, 34vw);
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.platform-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .36);
  background: var(--panel);
}

.platform-card img {
  width: 100%;
  height: 150px;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.platform-card:hover img { transform: scale(1.04); }

.platform-card > div {
  position: static;
  padding: 10px;
  background: linear-gradient(180deg, var(--panel), var(--surface-2));
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.platform-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 7px;
  border-color: rgba(255, 196, 0, .45);
}

.platform-actions .primary-btn {
  background: linear-gradient(180deg, var(--accent-strong), #7e0d10);
}

.platform-actions .ghost-btn {
  color: var(--gold-2);
  background: rgba(255, 196, 0, .08);
}

.coming-soon-section {
  padding: 58px clamp(18px, 4vw, 56px) 70px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 25, 32, .16), transparent 34rem),
    linear-gradient(180deg, #080302, var(--surface));
  color: white;
}

.coming-header {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.coming-header h2 {
  color: var(--accent-strong);
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: .92;
  font-weight: 900;
}

.coming-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 196, 0, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.coming-tabs span {
  padding: 10px 14px;
  color: #f3f3f3;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.coming-tabs span + span {
  border-left: 1px solid rgba(255, 255, 255, .75);
}

.mini-game-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: clamp(12px, 2vw, 28px);
  align-items: end;
  max-width: 1260px;
  margin: 62px auto 84px;
}

.mini-game-card {
  position: relative;
  display: grid;
  gap: 0;
  transform-style: preserve-3d;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .55));
}

.mini-game-card strong {
  display: block;
  min-height: 42px;
  margin-top: -3px;
  padding: 4px 8px 6px;
  border-radius: 0 0 8px 8px;
  color: #080808;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.05;
  text-align: center;
  font-weight: 900;
}

.tilt-left { transform: rotate(5deg) perspective(700px) rotateY(12deg); }
.tilt-right { transform: rotate(-5deg) perspective(700px) rotateY(-12deg); }
.tilt-left-small { transform: rotate(3deg) perspective(700px) rotateY(8deg); }
.tilt-right-small { transform: rotate(-3deg) perspective(700px) rotateY(-8deg); }

.mini-art {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(130px, 16vw, 205px);
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #121212;
}

.bonus-art {
  grid-template-columns: repeat(2, 42px);
  gap: 16px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .18), transparent 22%),
    linear-gradient(135deg, #342311, #050505 70%);
}

.bonus-art span {
  width: 46px;
  height: 34px;
  border: 3px solid #8b5f1b;
  background: linear-gradient(180deg, #473113, #120b05);
}

.scratch-art {
  align-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffe538, #101a53 54%, #54e5ff);
}

.scratch-art b,
.scratch-art em {
  color: #ffec24;
  text-shadow: 0 3px 0 #111, 0 0 12px rgba(255, 255, 255, .5);
  font-size: clamp(22px, 3vw, 42px);
  font-style: normal;
  font-weight: 1000;
}

.scratch-art em {
  color: #79e8ff;
}

.bingo-art {
  display: flex;
  gap: 5px;
  background:
    radial-gradient(circle at 20% 20%, #69ff8e, transparent 10%),
    radial-gradient(circle at 80% 30%, #ff5fc3, transparent 12%),
    linear-gradient(135deg, #02a4df, #f7f7ff);
}

.bingo-art span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 25%, white, #d91c2e 42%, #8b0610);
  color: white;
  font-weight: 1000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .35);
}

.match-art {
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  padding: 14px;
  background: linear-gradient(135deg, #58d6ff, #85e741);
}

.match-art span {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gem, #ff3158);
  box-shadow: inset 0 3px 5px rgba(255, 255, 255, .35), inset 0 -4px 5px rgba(0, 0, 0, .35);
}

.match-art span:nth-child(3n) { --gem: #2f7cff; }
.match-art span:nth-child(4n) { --gem: #ffca28; }
.match-art span:nth-child(5n) { --gem: #8d4dff; }

.sports-art {
  gap: 6px;
  background:
    radial-gradient(circle at 50% 80%, var(--gold-2) 0 12%, transparent 13%),
    radial-gradient(circle at 20% 78%, white 0 9%, transparent 10%),
    linear-gradient(135deg, #081221, #0a5d88 55%, #111);
}

.sports-art b,
.sports-art em {
  color: white;
  font-size: clamp(18px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 1000;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
}

.plinko-art {
  grid-template-columns: repeat(5, 18px);
  gap: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px) 0 0 / 24px 24px,
    radial-gradient(circle at 50% 0%, #8f4dff, transparent 38%),
    linear-gradient(135deg, #1e8dff, #7c30ff);
}

.plinko-art span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #dff7ff;
  box-shadow: 0 0 10px rgba(255, 255, 255, .85);
}

.coming-actions {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.coming-btn {
  min-width: 178px;
  min-height: 56px;
  border: 1px solid var(--gold-2);
  border-radius: 12px;
  color: white;
  background: linear-gradient(180deg, var(--accent-strong), #6e0d0f);
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 12px 26px rgba(0, 0, 0, .4);
}

.coming-btn:hover {
  background: linear-gradient(180deg, #ff343d, #8c1115);
}

.rules-section {
  padding: 18px clamp(18px, 4vw, 56px) 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, .07), transparent 30rem),
    linear-gradient(180deg, var(--surface), #050202);
  color: #e9e9e9;
}

.rules-section > h2 {
  margin: 0 0 28px;
  color: var(--accent-strong);
  font-size: clamp(46px, 6.5vw, 78px);
  line-height: .95;
  text-align: center;
  font-weight: 900;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(58px, 12vw, 150px);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.rule-block {
  min-width: 0;
}

.bonus-rules {
  grid-column: 1 / -1;
  width: min(560px, 100%);
  justify-self: center;
  margin-top: 78px;
}

.rule-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.bonus-rules .rule-heading {
  margin-bottom: 34px;
}

.rule-heading h3 {
  margin: 0;
  color: var(--gold-2);
  font-size: clamp(22px, 2.3vw, 26px);
  line-height: 1.1;
  text-align: center;
  font-weight: 800;
}

.rule-heading button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold-2);
  border-radius: 50%;
  color: var(--gold-2);
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.rule-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rule-block li {
  position: relative;
  min-height: 20px;
  margin: 0 0 1px;
  padding-left: 28px;
  color: #e8e8e8;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.08;
  font-weight: 800;
}

.rule-block li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  color: white;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-size: 15px;
  font-weight: 1000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.rule-block li span {
  display: block;
}

.promo-footer {
  position: relative;
  min-height: 475px;
  padding: 44px clamp(18px, 4vw, 56px) 54px;
  background:
    linear-gradient(180deg, rgba(25, 8, 5, .98), rgba(5, 2, 2, .98) 100%),
    var(--surface);
  color: white;
}

.promo-footer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 450px) minmax(260px, 1fr) minmax(240px, 320px);
  gap: clamp(46px, 8vw, 130px);
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

.subscribe-panel p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
}

.subscribe-form {
  display: grid;
  gap: 10px;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.subscribe-form input:not([type="checkbox"]) {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 0;
  padding: 0 12px;
  color: white;
  background: rgba(0, 0, 0, .18);
}

.subscribe-form > input:not([type="checkbox"]) {
  min-height: 54px;
  border-color: rgba(255, 255, 255, .26);
  border-radius: 8px;
}

.subscribe-form button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #050505;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-size: 18px;
}

.sms-consent {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 8px;
  margin-top: 2px;
  color: white;
  font-size: 14px;
  line-height: 1.45;
}

.sms-consent input {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  accent-color: var(--gold-2);
}

.sms-consent a {
  display: inline-block;
  margin-right: 4px;
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
}

.footer-links {
  padding-top: 96px;
}

.footer-links h3 {
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  font-size: 16px;
  font-weight: 900;
}

.footer-links div {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 48px 40px;
}

.footer-links a {
  color: #b8b1ae;
  font-size: 18px;
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
}

.legal-links div {
  grid-template-columns: 1fr;
}

.footer-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: rgba(0, 6, 3, .96);
}

.footer-bottom p {
  grid-column: 2 / 4;
  justify-self: end;
  margin: 0;
  color: #e7e7e7;
  font-size: 18px;
  font-weight: 700;
}

.legal-page {
  min-height: calc(100vh - 73px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 25, 32, .16), transparent 34rem),
    linear-gradient(180deg, #080302, var(--surface));
}

.legal-document {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
}

.legal-document h1 {
  color: var(--accent-strong);
  font-size: clamp(42px, 6vw, 72px);
}

.legal-copy {
  margin-top: 28px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.legal-copy p {
  margin: 0 0 18px;
}

.legal-copy h2 {
  margin: 34px 0 12px;
  color: var(--gold-2);
  font-size: 24px;
  line-height: 1.2;
}

.legal-copy h3 {
  margin: 24px 0 10px;
  color: var(--text);
  font-size: 19px;
}

.legal-copy ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.legal-copy li {
  margin-bottom: 7px;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  background: var(--surface);
}

.event-list { display: grid; gap: 12px; }
.event-list div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-left: 3px solid var(--accent-2);
  background: rgba(255, 255, 255, .05);
}
.event-list span { color: var(--muted); }

.pricing-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: var(--panel);
}
.price-card.featured { border-color: var(--accent); background: linear-gradient(180deg, #221621, #141821); }
.price-card strong { display: block; margin: 10px 0; font-size: 34px; }
.price-card p { color: var(--muted); line-height: 1.5; }

.auth-dialog {
  width: min(440px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  color: var(--text);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.auth-dialog::backdrop { background: rgba(0, 0, 0, .65); }
.dialog-close { text-align: right; }
.dialog-close button, .chat-box header button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, .08);
}

.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0 18px; }
.tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
}
.tabs button.active { color: white; background: var(--accent); border-color: var(--accent); }

.auth-form, .chat-form { display: grid; gap: 12px; }
label { display: grid; gap: 8px; color: var(--muted); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: #0d111a;
}
textarea { resize: vertical; }
.form-error { min-height: 20px; margin: 0; color: #ff8b9f; }

.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 8px;
  z-index: 20;
  width: auto;
  min-width: 162px;
  height: 48px;
  border: 1px solid rgba(255, 210, 0, .8);
  border-radius: 999px;
  color: #4c3d00;
  background: #ffd34d;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(255, 211, 77, .12), var(--shadow);
}

.chat-box {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 25;
  display: none;
  width: min(380px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.chat-box.open { display: block; }
.chat-box header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.messages {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 270px;
  overflow: auto;
  padding: 16px;
  background: #0d111a;
}
.message {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.4;
  background: var(--panel-2);
}
.message.admin { margin-left: auto; background: #4a1712; border: 1px solid rgba(255, 196, 0, .18); }
.message small { display: block; margin-bottom: 4px; color: var(--muted); }
.chat-form { padding: 14px; }

@media (max-width: 920px) {
  .site-header { flex-wrap: wrap; }
  nav { order: 3; width: 100%; margin: 0; overflow: auto; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-carousel-only .hero-panel { width: 100%; }
  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mini-game-row { grid-template-columns: repeat(3, minmax(130px, 1fr)); }
  .rules-grid { grid-template-columns: 1fr; gap: 46px; max-width: 640px; }
  .bonus-rules { grid-column: auto; margin-top: 0; }
  .promo-footer-grid { grid-template-columns: 1fr; max-width: 640px; gap: 30px; }
  .footer-links { padding-top: 0; }
  .footer-bottom { position: static; grid-template-columns: 1fr; gap: 10px; padding: 12px 16px; margin: 32px -18px -54px; }
  .footer-bottom p { grid-column: auto; justify-self: start; font-size: 14px; }
  .pricing-section { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .auth-actions { width: 100%; }
  .auth-actions button { flex: 1; }
  h1 { font-size: 44px; }
  .hero-panel, .hero-panel img { min-height: 260px; }
  .hero-carousel-only .hero-panel { width: 100%; }
  .hero-carousel-only .hero-panel,
  .hero-carousel-only .hero-panel img { min-height: 260px; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-card img { height: 120px; }
  .coming-tabs { border-radius: 8px; }
  .coming-tabs span { width: 100%; }
  .coming-tabs span + span { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .45); }
  .mini-game-row { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 38px auto 48px; }
  .mini-game-card,
  .tilt-left,
  .tilt-right,
  .tilt-left-small,
  .tilt-right-small { transform: none; }
  .coming-actions { gap: 12px; }
  .coming-btn { width: 100%; }
  .rules-section { padding-top: 38px; }
  .rule-heading { margin-bottom: 22px; }
  .rule-heading h3 { text-align: left; }
  .name-fields { grid-template-columns: 1fr; }
  .footer-links div { grid-template-columns: 1fr; gap: 22px; }
  .chat-toggle { right: 12px; min-width: 150px; height: 44px; }
}
