/*!
 * tokens-dc9bc4.css - BXB (bxb.homes) design tokens & mobile-first styles
 * Palette: #FFBF00 gold | #9370DB violet | #2C3E50 ink | #FF8C00 amber
 *          #FFCCCB rose  | #D3D3D3 silver
 * All custom classes use the "wdc9b-" prefix.
 */

:root {
  --wdc9b-gold:   #FFBF00;
  --wdc9b-violet: #9370DB;
  --wdc9b-ink:    #2C3E50;
  --wdc9b-amber:  #FF8C00;
  --wdc9b-rose:   #FFCCCB;
  --wdc9b-silver: #D3D3D3;
  --wdc9b-bg:     #15202b;
  --wdc9b-bg-2:   #1d2b3a;
  --wdc9b-card:   #213040;
  --wdc9b-card-2: #283a4d;
  --wdc9b-text:   #f5f7fa;
  --wdc9b-muted:  #aab7c5;
  --wdc9b-shadow: 0 6px 22px rgba(0, 0, 0, .38);
  --wdc9b-radius: 14px;
  --wdc9b-maxw:   460px;
  --wdc9b-header-h: 58px;
  --wdc9b-bottom-h: 66px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: radial-gradient(1200px 480px at 50% -120px, #25394c 0%, var(--wdc9b-bg) 60%);
  color: var(--wdc9b-text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Keep the 320-430px mobile canvas centered on wider screens. */
.wdc9b-shell {
  max-width: var(--wdc9b-maxw);
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(255,191,0,.05), rgba(147,112,219,.05) 40%, transparent 80%);
}

/* ============ Header ============ */
.wdc9b-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  height: var(--wdc9b-header-h);
  background: linear-gradient(90deg, #14202c 0%, #1f3247 100%);
  border-bottom: 1px solid rgba(255, 191, 0, .35);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.wdc9b-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--wdc9b-text);
  flex: 0 0 auto;
}
.wdc9b-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--wdc9b-gold), var(--wdc9b-amber));
  box-shadow: 0 0 0 2px rgba(255, 191, 0, .35);
}
.wdc9b-brand .wdc9b-brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--wdc9b-gold);
  text-transform: uppercase;
  line-height: 1;
}
.wdc9b-brand .wdc9b-brand-tag {
  font-size: 10px;
  color: var(--wdc9b-muted);
  letter-spacing: .3px;
  display: block;
  margin-top: 2px;
}
.wdc9b-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wdc9b-btn {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  line-height: 1;
  min-height: 34px;
}
.wdc9b-btn:active { transform: translateY(1px) scale(.98); }
.wdc9b-btn-primary {
  background: linear-gradient(180deg, #ffd24d, var(--wdc9b-gold));
  color: #3a2600;
  box-shadow: 0 4px 14px rgba(255, 191, 0, .35);
}
.wdc9b-btn-secondary {
  background: linear-gradient(180deg, #a983e8, var(--wdc9b-violet));
  color: #fff;
  box-shadow: 0 4px 14px rgba(147, 112, 219, .35);
}
.wdc9b-btn-ghost {
  background: transparent;
  color: var(--wdc9b-text);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 12px;
}
.wdc9b-menu-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--wdc9b-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.wdc9b-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--wdc9b-text);
  position: relative;
  border-radius: 2px;
}
.wdc9b-menu-btn span:before,
.wdc9b-menu-btn span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--wdc9b-text);
  border-radius: 2px;
}
.wdc9b-menu-btn span:before { top: -5px; }
.wdc9b-menu-btn span:after  { top: 5px; }

/* Mobile drawer */
.wdc9b-mobile-drawer {
  position: fixed;
  top: var(--wdc9b-header-h);
  left: 0;
  right: 0;
  background: var(--wdc9b-bg-2);
  border-bottom: 1px solid rgba(255, 191, 0, .25);
  padding: 14px 16px 18px;
  transform: translateY(-130%);
  transition: transform .26s ease;
  z-index: 49;
  max-width: var(--wdc9b-maxw);
  margin: 0 auto;
  box-shadow: var(--wdc9b-shadow);
}
.wdc9b-mobile-drawer.wdc9b-open { transform: translateY(0); }
.wdc9b-mobile-drawer a {
  display: block;
  color: var(--wdc9b-text);
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.wdc9b-mobile-drawer a:active { background: rgba(255, 191, 0, .12); }
.wdc9b-drawer-title {
  font-size: 11px;
  color: var(--wdc9b-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 8px 4px 6px;
}

/* ============ Hero ============ */
.wdc9b-hero {
  padding: 22px 16px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wdc9b-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 191, 0, .22), transparent 38%),
    radial-gradient(circle at 82% 30%, rgba(147, 112, 219, .25), transparent 40%);
  pointer-events: none;
}
.wdc9b-hero h1 {
  position: relative;
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffe28a, #ffbf00 45%, #ffb142);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wdc9b-hero p.wdc9b-hero-sub {
  position: relative;
  color: var(--wdc9b-muted);
  margin: 0 auto 14px;
  max-width: 360px;
  font-size: 13.5px;
}
.wdc9b-hero-cta {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.wdc9b-hero-cta .wdc9b-btn { padding: 12px 20px; font-size: 14px; }

.wdc9b-hero-badges {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.wdc9b-badge {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 191, 0, .25);
  color: var(--wdc9b-gold);
  font-weight: 600;
  letter-spacing: .3px;
}

/* ============ Promotional carousel ============ */
.wdc9b-carousel {
  margin: 12px 12px 2px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wdc9b-carousel-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 191, 0, .32);
  background: var(--wdc9b-card);
  cursor: pointer;
  padding: 0;
}
.wdc9b-carousel-card img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; opacity: .82; transition: opacity .18s ease, transform .18s ease; }
.wdc9b-carousel-card span { position: absolute; left: 6px; right: 6px; bottom: 5px; color: #fff; font-size: 10px; font-weight: 800; text-shadow: 0 1px 4px #000; }
.wdc9b-carousel-card:active img { opacity: 1; transform: scale(1.04); }

/* ============ Marquee strip ============ */
.wdc9b-marquee {
  margin: 6px 12px 0;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 191, 0, .25);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--wdc9b-muted);
  overflow: hidden;
}
.wdc9b-marquee .wdc9b-dot {
  width: 7px; height: 7px;
  background: var(--wdc9b-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 191, 0, .25);
  flex: 0 0 auto;
  animation: wdc9b-blink 1.5s infinite;
}
@keyframes wdc9b-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ============ Section primitives ============ */
.wdc9b-section {
  padding: 18px 14px 8px;
}
.wdc9b-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.wdc9b-section-head h2 {
  font-size: 17px;
  margin: 0;
  color: var(--wdc9b-text);
  letter-spacing: .4px;
}
.wdc9b-section-head .wdc9b-pill {
  margin-left: auto;
  font-size: 11px;
  color: var(--wdc9b-gold);
  background: rgba(255, 191, 0, .12);
  border: 1px solid rgba(255, 191, 0, .3);
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 600;
}
.wdc9b-more-link {
  margin-left: auto;
  font-size: 12px;
  color: var(--wdc9b-violet);
  text-decoration: none;
  font-weight: 600;
}

/* ============ Category tabs ============ */
.wdc9b-cat-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.wdc9b-cat-tabs::-webkit-scrollbar { display: none; }
.wdc9b-cat-tab {
  flex: 0 0 auto;
  background: var(--wdc9b-card);
  color: var(--wdc9b-muted);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.wdc9b-cat-tab.wdc9b-active {
  background: linear-gradient(180deg, #ffd24d, var(--wdc9b-gold));
  color: #3a2600;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 191, 0, .35);
}

/* ============ Game grid ============ */
.wdc9b-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .wdc9b-game-grid { gap: 9px; }
}
.wdc9b-game-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--wdc9b-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  transition: transform .14s ease, box-shadow .14s ease;
}
.wdc9b-game-card:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.wdc9b-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #283a4d, #1d2b3a);
}
.wdc9b-game-name {
  font-size: 11px;
  padding: 5px 6px;
  text-align: center;
  color: var(--wdc9b-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
.wdc9b-game-tag {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9a3c, var(--wdc9b-amber));
  color: #2a1500;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.wdc9b-game-tag.wdc9b-tag-hot { background: linear-gradient(180deg, #ff7a59, #ff5e3a); color: #fff; }
.wdc9b-game-tag.wdc9b-tag-new { background: linear-gradient(180deg, #41d389, #1fb866); color: #063; }

/* Homepage category order keeps every category visible and crawlable. */
#wdc9b-games { display: flex; flex-direction: column; }
#wdc9b-games .wdc9b-cat-tabs { order: 0; }
#wdc9b-games .wdc9b-game-grid[data-cat="live-casino"] { order: 1; }
#wdc9b-games .wdc9b-game-grid[data-cat="hot"] { order: 2; }
#wdc9b-games .wdc9b-game-grid[data-cat="cards"] { order: 3; }
#wdc9b-games .wdc9b-game-grid[data-cat="fishing"] { order: 4; }
#wdc9b-games .wdc9b-game-grid[data-cat="slot"] { order: 5; }
#wdc9b-games > p { order: 6; }

/* Featured game highlight */
.wdc9b-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 2px 8px;
}
.wdc9b-feature-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: linear-gradient(140deg, #283a4d, #1a2738);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 0, .22);
  box-shadow: var(--wdc9b-shadow);
}
.wdc9b-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.wdc9b-feature-card .wdc9b-feature-body {
  padding: 10px 11px 12px;
}
.wdc9b-feature-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--wdc9b-gold);
}
.wdc9b-feature-card p {
  margin: 0;
  font-size: 11.5px;
  color: var(--wdc9b-muted);
}

/* ============ Promo / info blocks ============ */
.wdc9b-promo-banner {
  margin: 8px 2px;
  background: linear-gradient(120deg, rgba(255, 191, 0, .18), rgba(147, 112, 219, .22));
  border: 1px solid rgba(255, 191, 0, .35);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wdc9b-promo-banner .wdc9b-promo-text { flex: 1; }
.wdc9b-promo-banner h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--wdc9b-gold);
}
.wdc9b-promo-banner p {
  margin: 0;
  font-size: 12px;
  color: var(--wdc9b-muted);
}

.wdc9b-info-card {
  background: var(--wdc9b-card);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 14px 15px;
  margin-bottom: 10px;
}
.wdc9b-info-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--wdc9b-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wdc9b-info-card h3 .wdc9b-num {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffd24d, var(--wdc9b-gold));
  color: #3a2600;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.wdc9b-info-card p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--wdc9b-muted);
}
.wdc9b-info-card ul {
  margin: 0;
  padding-left: 18px;
}
.wdc9b-info-card li {
  font-size: 12.5px;
  color: var(--wdc9b-muted);
  margin-bottom: 4px;
}
.wdc9b-info-card a {
  color: var(--wdc9b-violet);
  text-decoration: none;
  font-weight: 600;
}
.wdc9b-info-card a:hover { text-decoration: underline; }

/* Inline SEO link list inside content */
.wdc9b-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.wdc9b-seo-links a {
  font-size: 11.5px;
  color: var(--wdc9b-violet);
  background: rgba(147, 112, 219, .12);
  border: 1px solid rgba(147, 112, 219, .3);
  padding: 5px 9px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* FAQ */
.wdc9b-faq-item {
  background: var(--wdc9b-card);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.wdc9b-faq-item summary {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--wdc9b-text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 22px;
}
.wdc9b-faq-item summary::-webkit-details-marker { display: none; }
.wdc9b-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--wdc9b-gold);
  font-size: 18px;
  top: -2px;
}
.wdc9b-faq-item[open] summary::after { content: "-"; }
.wdc9b-faq-item p {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--wdc9b-muted);
}

/* ============ Footer ============ */
.wdc9b-footer {
  background: #11202e;
  border-top: 1px solid rgba(255, 191, 0, .25);
  padding: 22px 16px calc(var(--wdc9b-bottom-h) + 26px);
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--wdc9b-muted);
}
.wdc9b-footer h4 {
  color: var(--wdc9b-gold);
  margin: 14px 0 8px;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.wdc9b-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
  margin-bottom: 12px;
}
.wdc9b-footer-links a {
  color: var(--wdc9b-muted);
  text-decoration: none;
  font-size: 12.5px;
}
.wdc9b-footer-links a:hover { color: var(--wdc9b-gold); }
.wdc9b-footer-legal {
  font-size: 11px;
  color: #6f7d8a;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 12px;
}
.wdc9b-disclaimer {
  background: rgba(255, 204, 203, .08);
  border: 1px solid rgba(255, 204, 203, .25);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--wdc9b-rose);
  margin-top: 10px;
}

/* ============ Bottom navigation ============ */
.wdc9b-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--wdc9b-bottom-h);
  background: linear-gradient(180deg, #1a2c3d 0%, #0f1a26 100%);
  border-top: 1px solid rgba(255, 191, 0, .3);
  display: flex;
  align-items: stretch;
  z-index: 60;
  max-width: var(--wdc9b-maxw);
  margin: 0 auto;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, .35);
}
.wdc9b-nav-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  background: transparent;
  border: none;
  color: var(--wdc9b-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 2px 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: .2px;
}
.wdc9b-nav-item .wdc9b-nav-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wdc9b-nav-item .wdc9b-nav-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wdc9b-nav-item.wdc9b-nav-cta {
  color: var(--wdc9b-gold);
}
.wdc9b-nav-item.wdc9b-nav-cta .wdc9b-nav-icon {
  background: linear-gradient(180deg, #ffd24d, var(--wdc9b-gold));
  color: #3a2600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -14px;
  box-shadow: 0 4px 12px rgba(255, 191, 0, .45);
  border: 2px solid #0f1a26;
}
.wdc9b-nav-item.wdc9b-nav-cta .wdc9b-nav-icon svg {
  width: 20px;
  height: 20px;
  stroke: #3a2600;
  stroke-width: 2.1;
}
.wdc9b-nav-item.wdc9b-active { color: var(--wdc9b-gold); }

/* Hide bottom nav on desktop. The whole shell is mobile-only. */
@media (min-width: 720px) {
  .wdc9b-bottom-nav { display: none; }
  .wdc9b-shell { box-shadow: 0 0 40px rgba(0, 0, 0, .35); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
