:root {
  --bg: #05070f;
  --bg-soft: #0b0e1a;
  --bg-card: rgba(13, 17, 33, 0.92);
  --bg-card-2: rgba(22, 29, 56, 0.95);
  --text: #ffffff;
  --muted: #b4bcde;
  --muted-2: #6c7593;
  --line: rgba(255, 204, 77, 0.15);
  --gold: #ffb700;
  --gold-2: #ff8800;
  --green: #00ff66;
  --red: #ff3355;
  --blue: #00ccff;
  --neon-glow: 0 0 20px rgba(255, 136, 0, 0.4);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 136, 0, 0.15),
      transparent 300px
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(0, 204, 255, 0.12),
      transparent 400px
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(0, 255, 102, 0.08),
      transparent 350px
    ),
    var(--bg);
  line-height: 1.6;
}

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

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}

strong {
  color: #fff;
}

em {
  color: var(--muted);
}

.page {
  position: relative;
  padding: 20px 0 100px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 15px;
  z-index: 100;
  width: min(var(--max), calc(100% - 40px));
  min-height: 80px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 10px 30px;
  background: rgba(7, 9, 22, 0.9);
  border: 1px solid rgba(255, 136, 0, 0.25);
  border-radius: 999px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-gem {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-2), var(--red));
  border-radius: 8px;
  box-shadow: 0 0 15px var(--gold-2);
  animation: pulse 2s infinite;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted-2);
  transition: 0.2s;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  text-shadow: var(--neon-glow);
}

.pill,
.chip,
.meta-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill.gold,
.chip.active,
.meta-pill {
  background: rgba(255, 136, 0, 0.15);
  border-color: var(--gold-2);
  color: var(--gold);
}

.pill.neon {
  background: rgba(0, 255, 102, 0.1);
  border-color: var(--green);
  color: var(--green);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 25px rgba(255, 136, 0, 0.35);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 136, 0, 0.5);
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: none;
}

.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta.spin-btn {
  background: linear-gradient(135deg, var(--green), #00b344);
  box-shadow: 0 8px 25px rgba(0, 255, 102, 0.3);
  width: 100%;
  margin-top: 15px;
}

.cta.spin-btn:hover {
  box-shadow: 0 12px 35px rgba(0, 255, 102, 0.5);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  padding: 45px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 15px 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.interactive-lobby {
  background: rgba(5, 7, 15, 0.8);
  border: 2px solid var(--gold-2);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--neon-glow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.real-slot-machine {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 136, 0, 0.32),
      rgba(255, 183, 0, 0.08) 28%,
      rgba(0, 0, 0, 0.7) 70%
    ),
    #05060b;
  border: 1px solid rgba(255, 183, 0, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -18px 30px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 136, 0, 0.28);
  margin-bottom: 15px;
}

.slot-top-light {
  height: 8px;
  width: 62%;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(255, 183, 0, 0.55);
  opacity: 0.9;
}

.slot-window {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.72)),
    #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.slot-window::before,
.slot-window::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 42px;
  z-index: 4;
  pointer-events: none;
}

.slot-window::before {
  top: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
}

.slot-window::after {
  bottom: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent);
}

.payline {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 102, 0.95),
    transparent
  );
  box-shadow: 0 0 14px rgba(0, 255, 102, 0.7);
  z-index: 5;
  opacity: 0;
}

.real-slot-machine.win .payline {
  opacity: 1;
  animation: paylinePulse 0.9s ease-in-out infinite;
}

.reel-window {
  position: relative;
  height: 138px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #111, #202020 48%, #101010), #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 12px 22px rgba(255, 255, 255, 0.04),
    inset 0 -18px 26px rgba(0, 0, 0, 0.55);
}

.reel-strip {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(0);
  will-change: transform;
}

.reel-strip.spinning {
  filter: blur(1.6px);
}

.slot-symbol {
  height: 138px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 1000;
  letter-spacing: -0.04em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(180deg, #242424, #111);
}

.symbol-seven {
  color: #fff;
  font-size: 70px;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.45),
      transparent 35%
    ),
    linear-gradient(180deg, #a40909, #5e0303);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}

.symbol-bar {
  color: #ffcf4a;
  font-size: 34px;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #2c2410, #110d05);
}

.symbol-cherry,
.symbol-lemon,
.symbol-orange,
.symbol-plum,
.symbol-watermelon {
  font-size: 58px;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(180deg, #182214, #0b1008);
}

.symbol-cherry {
  color: #ff2b4f;
}

.symbol-lemon {
  color: #ffe14d;
}

.symbol-orange {
  color: #ff8a00;
}

.symbol-plum {
  color: #9b5cff;
}

.symbol-watermelon {
  color: #35e889;
}

@keyframes paylinePulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.win-ticker {
  min-height: 48px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 15px;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid rgba(255, 136, 0, 0.2);
}

.casino-select-wrap {
  margin: 15px 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 136, 0, 0.28);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
}

.casino-select-wrap label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.casino-select-wrap select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #080a12;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

.promo-result {
  margin: 15px 0 0;
  padding: 14px;
  border: 1px solid rgba(0, 255, 102, 0.35);
  border-radius: 10px;
  background: rgba(0, 255, 102, 0.08);
  box-shadow: 0 0 18px rgba(0, 255, 102, 0.12);
}

.promo-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

#promoCode {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(0, 255, 102, 0.35);
}

.promo-copy {
  width: 100%;
  min-height: 42px;
  padding: 10px 16px;
}

.slot-disclaimer {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.section-title {
  margin: 60px 0 30px;
}

.eyebrow {
  display: none !important;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title h2,
.module h2,
.interactive-module h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin: 10px 0 16px;
}

.table-container,
.table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  min-width: 700px;
}

th {
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 15px;
  font-weight: 800;
}

td {
  padding: 16px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 700;
  font-size: 15px;
  vertical-align: top;
}

td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px 0 0 12px;
  color: #fff;
}

td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 12px 12px 0;
}

.cards,
.grid-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.casino-card,
.showcase-card,
.module,
.interactive-module,
.error-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow);
}

.casino-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  transition: 0.3s;
}

.casino-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.casino-card h3 {
  margin: 14px 0 12px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 8px;
}

.rating-row strong {
  min-width: 78px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
}

.meter {
  flex: 1;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.meter span {
  height: 6px;
  display: block;
  background: var(--gold);
  border-radius: 10px;
}

.card-meta-box {
  margin: 14px 0 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.meta-row:last-child {
  border-bottom: 0;
}

.meta-row span {
  color: var(--muted-2);
  font-weight: 800;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.card-foot span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.board {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.filter-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.board .table-wrap {
  padding: 0;
  margin: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.two-col,
.layout-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.module .table-wrap,
.interactive-module .table-wrap {
  margin-bottom: 0;
}

.danger-box,
.error-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 25px;
}

.danger-card {
  padding: 20px;
  background: rgba(255, 51, 85, 0.05);
  border: 1px solid rgba(255, 51, 85, 0.2);
  border-radius: 16px;
  display: flex;
  gap: 15px;
}

.danger-card-icon {
  font-size: 24px;
  color: var(--red);
  line-height: 1;
}

.danger-card h4,
.error-item h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
}

.error-item {
  background: rgba(255, 51, 85, 0.045);
  border-color: rgba(255, 51, 85, 0.22);
}

.faq,
.faq-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 35px;
  margin-top: 60px;
  box-shadow: var(--shadow);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

.faq-item:last-child {
  border: 0;
}

.faq-q,
.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 10px 0;
}

.faq-q span,
.faq-trigger span {
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
}

.faq-a,
.faq-content {
  display: none;
  padding: 10px 0 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.open .faq-a,
.faq-item.open .faq-content {
  display: block;
}

.footer {
  margin-top: 80px;
  padding: 50px 40px;
  background: #03040a;
  border-top: 1px solid var(--line);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 30px;
  letter-spacing: -0.03em;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-content: start;
}

.footer-links a {
  color: var(--muted-2);
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.legal,
.legal-notice {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px var(--gold-2);
  }
  50% {
    box-shadow: 0 0 25px var(--gold-2);
  }
  100% {
    box-shadow: 0 0 10px var(--gold-2);
  }
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 255, 102, 0.22);
  border-radius: 999px;
  background: rgba(0, 255, 102, 0.08);
  color: #d8ffe8;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.approved-casino-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.approved-card {
  padding: 22px;
  border: 1px solid rgba(255, 204, 77, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(13, 17, 33, 0.92);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
}

.approved-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.approved-card p {
  margin-bottom: 14px;
  font-size: 14px;
}

.approved-card .meta-row {
  font-size: 13px;
}

.eyebrow {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.card-title,
.approved-title,
.error-title,
.module-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.card-title {
  margin: 14px 0 12px;
  font-size: 25px;
}

.approved-title {
  margin: 0 0 10px;
  font-size: 22px;
}

.error-title {
  margin: 0 0 8px;
  font-size: 17px;
}

.module-title {
  font-size: clamp(28px, 3vw, 42px);
  margin: 10px 0 16px;
}

.faq-q-title {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 1024px) {
  .header {
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px;
  }

  .nav a {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
  }

  .hero,
  .board,
  .two-col,
  .layout-double {
    grid-template-columns: 1fr;
  }

  .cards,
  .grid-showcase,
  .approved-casino-list {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .header {
    width: min(var(--max), calc(100% - 24px));
  }

  .header {
    padding: 14px 16px;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    padding: 22px;
  }

  .real-slot-machine {
    padding: 12px;
  }

  .slot-window {
    gap: 8px;
    padding: 12px;
  }

  .slot-window::before,
  .slot-window::after {
    left: 12px;
    right: 12px;
  }

  .reel-window {
    height: 92px;
  }

  .slot-symbol {
    height: 92px;
  }

  .symbol-seven {
    font-size: 46px;
  }

  .symbol-bar {
    font-size: 23px;
  }

  .symbol-cherry,
  .symbol-lemon,
  .symbol-orange,
  .symbol-plum,
  .symbol-watermelon {
    font-size: 39px;
  }

  .card-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .card-foot .cta {
    width: 100%;
  }

  .footer {
    padding: 28px 22px;
  }

  table {
    min-width: 760px;
  }
}

/* === Targeted edits: neutral logo, expandable casino selector, hidden service labels === */
.logo {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  gap: 0;
}

.logo-placeholder {
  min-width: 180px;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 183, 0, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.casino-filter-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.casino-filter-intro {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.casino-filter-list {
  display: grid;
  gap: 12px;
}

.casino-filter-option {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.casino-filter-option summary {
  min-height: 64px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
}

.casino-filter-option summary::-webkit-details-marker {
  display: none;
}

.casino-filter-option summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 136, 0, 0.12);
  border: 1px solid rgba(255, 136, 0, 0.35);
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.casino-filter-option[open] {
  border-color: rgba(255, 136, 0, 0.45);
  box-shadow: 0 0 18px rgba(255, 136, 0, 0.12);
}

.casino-filter-option[open] summary {
  color: var(--gold);
  background: rgba(255, 136, 0, 0.08);
}

.casino-filter-option[open] summary::after {
  content: "−";
}

.casino-link-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}

.casino-link-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  transition: 0.2s ease;
}

.casino-link-card:hover {
  border-color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(255, 136, 0, 0.18);
}

.casino-link-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.25;
}

.casino-link-card span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .casino-filter-panel {
    grid-template-columns: 1fr;
  }

  .casino-link-list {
    grid-template-columns: 1fr;
  }
}

.logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 25px rgba(255, 136, 0, 0.35);
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 136, 0, 0.5);
}

body {
  padding: 20px 0 0;
}
body > header.header,
body > section.section,
body > footer.footer {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
body > header.header {
  margin-bottom: 40px;
}
body > section.section {
  margin-top: 30px;
  margin-bottom: 30px;
}
body > section.section[data-layout~="hero"] {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  padding: 45px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
body > section.section[data-layout~="two-col"],
body > section.section[data-layout~="layout-double"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
body > section.section[data-layout~="faq"] {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow);
}
@media (max-width: 1024px) {
  body > section.section[data-layout~="hero"],
  body > section.section[data-layout~="two-col"],
  body > section.section[data-layout~="layout-double"] {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body > header.header,
  body > section.section,
  body > footer.footer {
    width: min(var(--max), calc(100% - 24px));
  }
  body > section.section[data-layout~="hero"] {
    padding: 22px;
  }
}
