/* ============================================================
 * 990k123.click - theme-bc10.css
 * All custom classes use the prefix "wbc10-".
 * Palette: #2D2D2D | #FFC0CB | #00E5FF | #C71585
 * Mobile-first. Max content width 430px.
 * ============================================================ */

:root {
  --wbc10-bg: #2D2D2D;
  --wbc10-bg-deep: #1d1d1d;
  --wbc10-bg-soft: #3a3a3a;
  --wbc10-text: #FFC0CB;
  --wbc10-cyan: #00E5FF;
  --wbc10-magenta: #C71585;
  --wbc10-white: #ffffff;
  --wbc10-muted: #c9a7af;
  --wbc10-radius: 14px;
  --wbc10-shadow: 0 6px 18px rgba(0,0,0,.35);
  --wbc10-grad: linear-gradient(135deg, #C71585 0%, #FFC0CB 100%);
  --wbc10-grad-cyan: linear-gradient(135deg, #00E5FF 0%, #C71585 100%);
  --wbc10-header-h: 60px;
  --wbc10-bottom-h: 62px;
}

* { box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #3a3a3a 0%, #2D2D2D 55%, #1d1d1d 100%);
  background-attachment: fixed;
  color: var(--wbc10-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--wbc10-cyan); text-decoration: none; }
a:hover { color: var(--wbc10-text); }

h1, h2, h3, h4 { margin: 0 0 .8rem; line-height: 1.3; font-weight: 700; color: var(--wbc10-white); }
h1 { font-size: 2.4rem; }
h2 { font-size: 2.0rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.5rem; }
p  { margin: 0 0 1rem; }

.wbc10-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; }
.wbc10-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* ----------------------------------------------------------- HEADER */
.wbc10-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--wbc10-header-h);
  background: rgba(29,29,29,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199,21,133,.5);
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.wbc10-header-inner {
  max-width: 430px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
}
.wbc10-logo { display: flex; align-items: center; gap: 8px; color: var(--wbc10-white); font-weight: 800; font-size: 1.8rem; }
.wbc10-logo img { width: 30px; height: 30px; border-radius: 8px; }
.wbc10-logo .wbc10-logo-accent { color: var(--wbc10-magenta); }
.wbc10-header-actions { display: flex; align-items: center; gap: 8px; }
.wbc10-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 700; font-size: 1.3rem; border: 0; border-radius: 30px;
  padding: 8px 14px; cursor: pointer; min-height: 36px; transition: transform .15s, box-shadow .15s;
}
.wbc10-btn:active { transform: scale(.96); }
.wbc10-btn-login { background: transparent; color: var(--wbc10-cyan); border: 1.5px solid var(--wbc10-cyan); }
.wbc10-btn-register { background: var(--wbc10-grad); color: #fff; box-shadow: 0 4px 12px rgba(199,21,133,.45); }
.wbc10-menu-btn {
  background: transparent; border: 0; color: var(--wbc10-text);
  font-size: 2rem; cursor: pointer; width: 38px; height: 38px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ----------------------------------------------------------- MOBILE MENU */
.wbc10-mobile-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
  background: var(--wbc10-bg-deep); z-index: 9999;
  padding: 80px 18px 30px; transition: right .28s ease;
  border-left: 1px solid rgba(0,229,255,.25);
  overflow-y: auto;
}
.wbc10-menu-open { right: 0; }
.wbc10-mobile-menu a {
  display: block; padding: 12px 14px; margin-bottom: 6px;
  color: var(--wbc10-text); font-size: 1.5rem; font-weight: 600;
  border-radius: 10px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,192,203,.12);
}
.wbc10-mobile-menu a:hover { background: var(--wbc10-magenta); color: #fff; }
.wbc10-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 9998; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.wbc10-backdrop-show { opacity: 1; pointer-events: auto; }

/* ----------------------------------------------------------- HERO / CAROUSEL */
.wbc10-main { padding-top: calc(var(--wbc10-header-h) + 8px); }
.wbc10-hero { position: relative; overflow: hidden; border-radius: 0; margin-bottom: 14px; }
.wbc10-hero-viewport { overflow: hidden; border-radius: 14px; }
.wbc10-hero-track { display: flex; transition: transform .5s ease; }
.wbc10-hero-slide { min-width: 100%; position: relative; cursor: pointer; }
.wbc10-hero-slide img { width: 100%; height: 200px; object-fit: cover; }
.wbc10-hero-cap {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: linear-gradient(90deg, rgba(199,21,133,.85), rgba(0,0,0,.25));
  padding: 10px 14px; border-radius: 10px; color: #fff;
}
.wbc10-hero-cap h3 { color: #fff; margin: 0 0 4px; font-size: 1.6rem; }
.wbc10-hero-cap p  { margin: 0; font-size: 1.25rem; }
.wbc10-hero-dots { display: flex; justify-content: center; gap: 6px; padding: 8px 0; }
.wbc10-hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,192,203,.4); cursor: pointer; }
.wbc10-dot-active { background: var(--wbc10-magenta); transform: scale(1.25); }

/* ----------------------------------------------------------- SECTIONS */
.wbc10-section { padding: 18px 14px; }
.wbc10-section-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.wbc10-section-title {
  font-size: 1.9rem; font-weight: 800; color: var(--wbc10-white);
  position: relative; padding-left: 14px;
}
.wbc10-section-title::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px;
  background: var(--wbc10-grad); border-radius: 4px;
}
.wbc10-section-more { color: var(--wbc10-cyan); font-size: 1.3rem; font-weight: 600; }

/* ----------------------------------------------------------- GAME GRID */
.wbc10-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.wbc10-card {
  background: var(--wbc10-bg-soft); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,192,203,.12); transition: transform .15s, box-shadow .15s;
  cursor: pointer; position: relative;
}
.wbc10-card:hover { transform: translateY(-3px); box-shadow: var(--wbc10-shadow); border-color: var(--wbc10-magenta); }
.wbc10-card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #000; }
.wbc10-card-name {
  padding: 6px 8px; font-size: 1.2rem; color: var(--wbc10-text);
  text-align: center; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wbc10-card-tag {
  position: absolute; top: 6px; left: 6px; background: var(--wbc10-magenta);
  color: #fff; font-size: 1rem; padding: 2px 6px; border-radius: 6px; font-weight: 700;
}

/* Category chip strip */
.wbc10-cat-strip { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 12px; }
.wbc10-cat-chip {
  white-space: nowrap; padding: 6px 14px; border-radius: 20px;
  background: var(--wbc10-bg-soft); color: var(--wbc10-text); font-size: 1.25rem; font-weight: 600;
  border: 1px solid rgba(255,192,203,.15);
}

/* ----------------------------------------------------------- CTA */
.wbc10-cta { background: var(--wbc10-grad); border-radius: 16px; padding: 18px; text-align: center; margin: 16px 0; color: #fff; }
.wbc10-cta h3 { color: #fff; font-size: 2rem; }
.wbc10-cta p { color: rgba(255,255,255,.92); font-size: 1.35rem; }
.wbc10-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--wbc10-magenta);
  font-weight: 800; padding: 10px 24px; border-radius: 30px; font-size: 1.4rem;
  margin-top: 6px; box-shadow: 0 4px 14px rgba(0,0,0,.3);
}

/* ----------------------------------------------------------- FEATURES / INFO BLOCKS */
.wbc10-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.wbc10-feature {
  background: var(--wbc10-bg-soft); border-radius: 12px; padding: 12px;
  border: 1px solid rgba(0,229,255,.15);
}
.wbc10-feature .wbc10-feature-ico { font-size: 2.2rem; color: var(--wbc10-cyan); margin-bottom: 6px; }
.wbc10-feature h4 { color: var(--wbc10-white); margin: 0 0 4px; font-size: 1.4rem; }
.wbc10-feature p  { margin: 0; font-size: 1.2rem; color: var(--wbc10-muted); }

.wbc10-info { background: var(--wbc10-bg-soft); border-radius: 12px; padding: 14px; border-left: 4px solid var(--wbc10-magenta); }
.wbc10-info p { margin: 0 0 8px; color: var(--wbc10-text); }
.wbc10-info p:last-child { margin: 0; }
.wbc10-info a { color: var(--wbc10-cyan); font-weight: 700; }

/* RTP table */
.wbc10-rtp-table { width: 100%; border-collapse: collapse; background: var(--wbc10-bg-soft); border-radius: 12px; overflow: hidden; }
.wbc10-rtp-table th, .wbc10-rtp-table td { padding: 8px 10px; font-size: 1.25rem; text-align: left; border-bottom: 1px solid rgba(255,192,203,.1); }
.wbc10-rtp-table th { background: var(--wbc10-magenta); color: #fff; font-weight: 700; }
.wbc10-rtp-table td .wbc10-rtp-bar { height: 6px; background: rgba(255,255,255,.15); border-radius: 4px; overflow: hidden; }
.wbc10-rtp-table td .wbc10-rtp-bar i { display: block; height: 100%; background: var(--wbc10-grad-cyan); }

/* Testimonials */
.wbc10-testi { background: var(--wbc10-bg-soft); border-radius: 12px; padding: 12px; margin-bottom: 10px; border-left: 4px solid var(--wbc10-cyan); }
.wbc10-testi .wbc10-stars { color: #FFD700; font-size: 1.2rem; margin-bottom: 4px; }
.wbc10-testi p { margin: 0 0 6px; font-size: 1.3rem; }
.wbc10-testi .wbc10-testi-author { font-size: 1.15rem; color: var(--wbc10-muted); }

/* Winners */
.wbc10-winner { display: flex; justify-content: space-between; padding: 8px 10px; background: var(--wbc10-bg-soft); border-radius: 10px; margin-bottom: 6px; font-size: 1.25rem; }
.wbc10-winner b { color: var(--wbc10-cyan); }

/* FAQ */
.wbc10-faq-item { background: var(--wbc10-bg-soft); border-radius: 10px; padding: 12px; margin-bottom: 8px; border: 1px solid rgba(255,192,203,.1); }
.wbc10-faq-item h4 { color: var(--wbc10-white); margin: 0 0 6px; font-size: 1.4rem; }
.wbc10-faq-item p { margin: 0; font-size: 1.25rem; color: var(--wbc10-muted); }

/* Payment chips */
.wbc10-pay-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.wbc10-pay-chip { background: var(--wbc10-bg-soft); border: 1px solid rgba(0,229,255,.25); padding: 8px 12px; border-radius: 10px; color: var(--wbc10-text); font-size: 1.2rem; font-weight: 600; }

/* App download */
.wbc10-app-cta { background: var(--wbc10-grad-cyan); border-radius: 16px; padding: 16px; color: #fff; text-align: center; }
.wbc10-app-cta h3 { color: #fff; }
.wbc10-app-btns { display: flex; gap: 8px; justify-content: center; margin-top: 8px; }
.wbc10-app-btn { background: #fff; color: var(--wbc10-bg-deep); padding: 8px 16px; border-radius: 24px; font-weight: 700; font-size: 1.25rem; }

/* ----------------------------------------------------------- FOOTER */
.wbc10-footer { background: var(--wbc10-bg-deep); padding: 24px 14px 90px; border-top: 1px solid rgba(199,21,133,.4); }
.wbc10-footer-brand { color: var(--wbc10-text); font-size: 1.3rem; margin-bottom: 12px; }
.wbc10-footer-brand b { color: var(--wbc10-magenta); }
.wbc10-footer-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.wbc10-footer-links a { font-size: 1.2rem; color: var(--wbc10-cyan); padding: 4px 8px; background: rgba(255,255,255,.04); border-radius: 6px; }
.wbc10-footer-promo { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 16px; }
.wbc10-footer-promo .wbc10-btn { flex: 1; min-width: 130px; font-size: 1.2rem; padding: 8px 10px; }
.wbc10-footer-copy { font-size: 1.1rem; color: var(--wbc10-muted); text-align: center; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.06); }

/* ----------------------------------------------------------- BOTTOM NAV */
.wbc10-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  height: var(--wbc10-bottom-h);
  background: rgba(29,29,29,.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,229,255,.35);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -3px 14px rgba(0,0,0,.45);
}
.wbc10-nav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: transparent; border: 0; cursor: pointer; color: var(--wbc10-text);
  font-size: 1rem; font-weight: 600; padding: 4px 0;
  transition: transform .15s, color .15s; position: relative;
}
.wbc10-nav-btn .wbc10-nav-ico { font-size: 2.2rem; line-height: 1; }
.wbc10-nav-btn .material-symbols-outlined,
.wbc10-nav-btn .material-icons { font-size: 2.2rem; }
.wbc10-nav-btn:active { transform: scale(.9); color: var(--wbc10-magenta); }
.wbc10-nav-active { color: var(--wbc10-cyan); }
.wbc10-nav-active::before {
  content: ""; position: absolute; top: 0; left: 25%; right: 25%; height: 3px; border-radius: 0 0 6px 6px;
  background: var(--wbc10-grad);
}

/* ----------------------------------------------------------- RESPONSIVE */
@media (min-width: 769px) {
  .wbc10-bottom-nav { display: none; }
  .wbc10-footer { padding-bottom: 28px; }
}
@media (max-width: 768px) {
  .wbc10-main { padding-bottom: 80px; }
}
@media (min-width: 431px) {
  body { background-size: cover; }
}
