:root {
  --bg: #050506;
  --bg-soft: #0a0a0a;
  --bg-card: #121212;
  --bg-panel: #161616;
  --maroon: #8B1518;
  --maroon-deep: #4E0C0E;
  --maroon-mid: #8B1518;
  --maroon-bright: #8B1518;
  --orange: #C89612;
  --orange-hot: #C89612;
  --orange-deep: #7A5C0A;
  --gold: #C89612;
  --cream: #ffffff;
  --muted: #c8c8c8;
  --line: rgba(192, 192, 192, 0.38);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  --radius: 14px;
  --max: 1280px;
  --font: "Nunito Sans", "Segoe UI", sans-serif;
  --display: "Rajdhani", "Nunito Sans", sans-serif;
  --logo: "Cinzel", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--cream);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: transparent;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.88));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  max-width: 100%;
  overflow-x: clip;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.brand img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.login-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

.login-bar input {
  width: 128px;
  height: 38px;
  border: 1px solid rgba(192, 192, 192, 0.4);
  border-radius: 8px;
  background: #0a0a0a;
  color: var(--cream);
  padding: 0 12px;
}

.login-bar input:focus {
  outline: 2px solid var(--orange);
  border-color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn-orange {
  background: #C89612;
  color: #1a1400;
  border: 1px solid #7A5C0A;
  box-shadow:
    inset 0 2px 0 rgba(255, 230, 140, 0.38),
    inset 0 -3px 0 rgba(0, 0, 0, 0.32),
    0 3px 0 #7A5C0A,
    0 6px 12px rgba(0, 0, 0, 0.5);
}

.btn-orange:hover {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 0 rgba(255, 230, 140, 0.28),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35),
    0 2px 0 #7A5C0A,
    0 3px 8px rgba(0, 0, 0, 0.45);
}

.btn-maroon {
  background: #8B1518;
  color: #fff;
  border: 1px solid #4E0C0E;
  box-shadow:
    inset 0 2px 0 rgba(255, 170, 170, 0.22),
    inset 0 -3px 0 rgba(0, 0, 0, 0.38),
    0 3px 0 #4E0C0E,
    0 6px 12px rgba(0, 0, 0, 0.55);
}

.btn-maroon:hover {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 0 rgba(255, 170, 170, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.4),
    0 2px 0 #4E0C0E,
    0 3px 8px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  height: auto;
  padding: 0 6px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--gold);
  cursor: pointer;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid #4E0C0E;
  background: #8B1518;
  box-shadow:
    inset 0 2px 0 rgba(255, 170, 170, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  padding: 8px 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #C89612;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quick-menu {
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.quick-menu-inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 0;
}

.quick-menu-inner a {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.35);
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  text-transform: uppercase;
}

.quick-menu-inner a:hover,
.quick-menu-inner a.active {
  background: #8B1518;
  color: #fff;
  border-color: #4E0C0E;
  box-shadow:
    inset 0 2px 0 rgba(255, 170, 170, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35),
    0 3px 0 #4E0C0E;
}

/* Layout */
.page-shell {
  padding: 18px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 340px;
  gap: 16px;
  align-items: start;
}

.panel {
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.crumb-bar {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #090909;
  border: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: var(--maroon);
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--maroon-bright);
}

.banner-card {
  overflow: hidden;
  position: relative;
}

.banner-slide {
  display: none;
  position: relative;
}

.banner-slide.active {
  display: block;
}

.banner-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 18px;
  background: linear-gradient(transparent, rgba(8, 2, 4, 0.92));
}

.banner-caption h1,
.banner-caption h2 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--gold);
}

.banner-caption p {
  margin: 0;
  color: var(--cream);
  max-width: 520px;
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 10px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #3a3a3a;
  cursor: pointer;
}

.dots button.active {
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}

.rtp-board {
  margin-top: 12px;
  padding: 22px 16px 18px;
  border-radius: 18px;
  border: 1px solid #4E0C0E;
  background: #8B1518;
  box-shadow:
    inset 0 2px 0 rgba(255, 170, 170, 0.16),
    inset 0 -4px 0 rgba(0, 0, 0, 0.4),
    0 8px 18px rgba(0, 0, 0, 0.55);
}

.rtp-head {
  text-align: center;
  margin-bottom: 16px;
}

.rtp-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.rtp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.rtp-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8B1518;
  box-shadow: 0 0 8px #8B1518;
  animation: rtpPulse 1.2s ease-in-out infinite;
}

@keyframes rtpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

.rtp-head p {
  margin: 0;
  color: #fff;
  font-size: 13px;
}

.rtp-head time {
  color: var(--gold);
  font-weight: 700;
}

.rtp-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.rtp-day {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 8px 12px;
  border-radius: 14px;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}

.rtp-day.is-today {
  border-color: #fff;
  box-shadow: 0 0 0 1px #fff, 0 0 18px rgba(196, 58, 26, 0.5);
}

.rtp-day b {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rtp-ring {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 6px 0 #4E0C0E) drop-shadow(0 10px 12px rgba(0, 0, 0, 0.6));
}

.rtp-ring .rtp-num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  fill: #C89612;
}

.rtp-day strong {
  font-size: 18px;
  line-height: 1;
  color: var(--gold);
}

.rtp-day small {
  font-size: 11px;
  color: #f0c9c9;
}

.rtp-bar {
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background: #2a0000;
  overflow: hidden;
}

.rtp-bar span {
  display: block;
  height: 100%;
  background: #C89612;
}

@media (max-width: 980px) {
  .rtp-days {
    grid-template-columns: repeat(2, 1fr);
  }
}

.game-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101010;
  transition: 0.2s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 193, 74, 0.18);
}

.game-card img {
  height: 120px;
  width: 100%;
  object-fit: cover;
}

.game-card span {
  display: block;
  padding: 10px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Right buttons */
.side-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-nav {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(192, 192, 192, 0.4);
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  color: var(--cream);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: inset 0 1px 0 rgba(255, 213, 74, 0.18);
}

.nav-btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-btn:hover,
.nav-btn.active {
  background: #C89612;
  color: #1a1400;
  border-color: #7A5C0A;
  box-shadow:
    inset 0 2px 0 rgba(255, 230, 140, 0.35),
    inset 0 -3px 0 rgba(0, 0, 0, 0.3),
    0 3px 0 #7A5C0A,
    0 6px 12px rgba(0, 0, 0, 0.45);
}

.nav-btn:hover svg,
.nav-btn.active svg {
  stroke: #2a0a10;
}

.cta-stack {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.cta-stack .btn {
  height: 46px;
  width: 100%;
}

.widget {
  padding: 14px;
}

.widget h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.vip-btns {
  display: grid;
  gap: 8px;
}

.apk-box {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: center;
}

.apk-box img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}

.apk-box p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 6px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 9px 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--maroon);
  font-size: 16px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 10px 10px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--cream);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-list a {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(196, 58, 26, 0.45);
  background: #101010;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.tag-list a:hover {
  background: #8B1518;
  color: #fff;
  border-color: #4E0C0E;
  box-shadow:
    inset 0 1px 0 rgba(255, 170, 170, 0.2),
    0 2px 0 #4E0C0E;
}

.trust-box {
  margin-top: 16px;
  padding: 16px 10px 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.trust-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0 12px;
  text-align: center;
}

.trust-col + .trust-col {
  border-left: 1px solid rgba(192, 192, 192, 0.18);
}

.trust-col h3 {
  margin: 0 0 12px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
  color: #d8d8d8;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
}

.trust-logos img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pay-grid img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
}

.lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #101010;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.lang-btn span {
  color: var(--gold);
}

.lang-btn.is-on,
.lang-btn:hover {
  background: #8B1518;
  color: #fff;
  border-color: #4E0C0E;
  box-shadow:
    inset 0 2px 0 rgba(255, 170, 170, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35),
    0 3px 0 #4E0C0E;
}

.lang-btn.is-on span,
.lang-btn:hover span {
  color: #C89612;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.info-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #101010;
  color: #fff;
}

.info-card:hover {
  border-color: #8B1518;
}

.info-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.info-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ico-red {
  background: #8B1518;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 170, 170, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35),
    0 2px 0 #4E0C0E;
}
.ico-gold,
.ico-orange {
  background: #C89612;
  color: #1a1400;
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 140, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3),
    0 2px 0 #7A5C0A;
}
.ico-green { background: rgba(34, 171, 148, 0.18); color: #3dd6b8; }
.ico-blue { background: rgba(41, 98, 255, 0.18); color: #7aa2ff; }
.ico-teal { background: rgba(13, 148, 136, 0.18); color: #2dd4bf; }

.info-card b {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
}

.info-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

/* Content blocks */
.section {
  margin-top: 16px;
  padding: 18px;
}

.section h2,
.section h1 {
  margin: 0 0 10px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
}

.section p,
.section li {
  color: #f3f3f3;
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

.two-col > .section {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}

.two-col > .section > h2 {
  flex: 0 0 auto;
}

.table-wrap,
.wise-widget-container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.table-wrap {
  overflow: hidden;
}

.wise-widget-container {
  overflow: hidden;
  border-radius: 10px;
  background: #0a0a0a;
}

.wise-widget-container iframe,
.tradingview-widget-container,
.tradingview-widget-container__widget {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.tradingview-widget-copyright {
  display: none;
}

.poweredBy {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0 0;
}

.poweredBy a {
  color: var(--gold);
}

table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(192, 192, 192, 0.18);
  font-size: 14px;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

th:first-child,
td:first-child {
  width: 36%;
  white-space: nowrap;
}

th:last-child,
td:last-child {
  width: 64%;
}

th {
  color: var(--gold);
  font-family: var(--display);
  letter-spacing: 0.5px;
}

td strong {
  color: var(--orange-hot);
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(192, 192, 192, 0.22);
}

.news-list time {
  display: block;
  color: var(--orange);
  font-size: 12px;
}

.markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.market {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  border: 2px solid #7A5C0A;
  background: #8B1518;
  color: #fff;
  box-shadow:
    inset 0 3px 0 rgba(255, 170, 170, 0.2),
    inset 0 -4px 0 rgba(0, 0, 0, 0.4),
    0 5px 0 #4E0C0E,
    0 8px 12px rgba(0, 0, 0, 0.5);
}

/* Page content */
.page-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  align-items: center;
}

.page-hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

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

.step {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101010;
}

.step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  background: #8B1518;
  color: #fff;
  font-family: var(--display);
  box-shadow:
    inset 0 1px 0 rgba(255, 170, 170, 0.22),
    0 2px 0 #4E0C0E;
}

.hot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hot-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(196, 58, 26, 0.45);
  background: #8B1518;
}

.hot-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 350 / 200;
  object-fit: cover;
  mix-blend-mode: screen;
}

.hot-tile .hot-i {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
}

.hot-tile:hover {
  border-color: #8B1518;
}

.contact-grid,
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101010;
}

.contact-card h3,
.step h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.toast.wrap {
  margin: 8px auto 0;
}

.contact-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.promo-list {
  display: grid;
  gap: 20px;
  margin-top: 14px;
}

.promo-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.promo-bar h2 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-family: var(--display);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.promo-bar p {
  margin: 4px 0 0;
  color: #fff;
  font-size: 13px;
}

.btn-detail {
  flex-shrink: 0;
  padding: 7px 22px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.btn-detail:hover,
.promo-item.is-open .btn-detail {
  background: #fff;
  color: #111;
}

.promo-more {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0a0a;
}

.promo-item.is-open .promo-more {
  display: block;
}

.promo-more p {
  margin: 0 0 8px;
}

.promo-more p:last-child {
  margin-bottom: 0;
}

.form {
  display: grid;
  gap: 10px;
  max-width: 460px;
}

.form label {
  font-size: 13px;
  color: var(--muted);
}

.form label span {
  display: block;
  margin-bottom: 6px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.35);
  background: #0a0a0a;
  color: var(--cream);
  padding: 11px 12px;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.toast {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 193, 74, 0.14);
  border: 1px solid var(--orange);
  color: var(--gold);
}

.toast.show {
  display: block;
}

.copy-row {
  display: flex;
  gap: 8px;
}

.copy-row input {
  flex: 1;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #090909;
  padding: 22px 0 0;
  color: var(--muted);
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
}

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

.copyright {
  font-size: 13px;
  padding-bottom: 18px;
}

.foot-sitemap {
  position: relative;
  z-index: 1;
  background: #090909;
  color: var(--gold);
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
}

.foot-sitemap-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 32px;
}

.foot-map-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.foot-map-col h3 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}

.foot-map-dots {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: #8B1518;
}

.foot-map-col a {
  color: var(--orange);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.foot-map-col a:hover {
  color: var(--maroon-bright);
}

/* Welcome popup */
.welcome-pop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.82);
}

.welcome-pop.show {
  display: grid;
}

.welcome-card {
  position: relative;
  width: min(380px, 100%);
  max-height: 94vh;
  overflow: auto;
  border-radius: 22px;
  background: #0b0b0b;
  box-shadow: 0 0 40px rgba(196, 58, 26, 0.4);
}

.welcome-x {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #C89612;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.welcome-art {
  position: relative;
  min-height: 430px;
}

.welcome-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-overlay {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, rgba(8, 0, 0, 0.82) 0%, rgba(8, 0, 0, 0.35) 55%, transparent 78%);
}

.welcome-logo {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}

.welcome-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: auto;
}

.welcome-feats span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 8px 4px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: #8B1518;
  box-shadow:
    inset 0 2px 0 rgba(255, 170, 170, 0.2),
    0 3px 0 #4E0C0E;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.welcome-foot {
  padding: 14px 16px 16px;
  background: #111;
}

.welcome-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.welcome-cta .btn {
  width: 100%;
  height: 44px;
}

.welcome-foot p {
  margin: 10px 0 0;
  text-align: center;
  color: #fff;
  font-size: 11px;
}

.welcome-copy {
  color: #C89612 !important;
}

.clock {
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.seo-block h2,
.seo-block h3 {
  color: var(--gold);
  margin: 18px 0 8px;
  font-family: var(--display);
  text-transform: uppercase;
}

.seo-block {
  margin-top: 16px;
}

.seo-block .seo-link {
  color: #8B1518;
  font-weight: 800;
  text-decoration: underline;
}

.seo-block .seo-link:hover {
  color: #8B1518;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 16px;
}

.modal.show {
  display: grid;
}

.modal-card {
  width: min(420px, 100%);
  padding: 20px;
}

.modal-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1100px) {
  .clock.hide-sm {
    display: none;
  }

  .quick-menu-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .foot-sitemap-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero,
  .two-col,
  .steps,
  .contact-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

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

  .quick-menu-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .game-row {
    grid-template-columns: 1fr;
  }

  .side-col {
    order: 2;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    margin-left: auto;
  }

  .login-bar .hide-sm {
    display: none;
  }

  .header-inner {
    min-width: 0;
    max-width: 100%;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 54px);
  }

  .brand img {
    height: 42px;
    max-width: min(140px, 100%);
    width: auto;
  }

  .login-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    min-width: 0;
  }

  .login-bar input,
  .login-bar .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .login-bar .btn {
    padding: 0 8px;
    height: 38px;
    font-size: 13px;
    letter-spacing: 0.2px;
  }

  .login-bar .btn a {
    min-width: 0;
    max-width: 100%;
  }

  .login-bar .btn-ghost {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    text-align: center;
    height: auto;
  }
}

@media (max-width: 640px) {
  .trust-col {
    padding: 0 8px;
  }

  .trust-col h3 {
    font-size: 11px;
    min-height: 32px;
  }

  .trust-logos {
    gap: 8px;
    min-height: 40px;
  }

  .trust-logos img {
    height: 36px;
  }

  .login-bar input,
  .login-bar .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .header-inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .welcome-cta {
    grid-template-columns: 1fr;
  }

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

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

  .promo-bar {
    flex-wrap: wrap;
  }

  .foot-sitemap-inner {
    grid-template-columns: 1fr 1fr;
  }
}
