/* ============================================================
 * Bingo Plus App - style.css
 * Mobile-first responsive design, max-width 430px viewport base.
 * All custom classes use the wdc93- prefix.
 * Palette: #E9967A (dark salmon), #0F0F23 (deep night),
 *          #FF69B4 (hot pink), #F08080 (light coral),
 *          #E91E63 (brand pink). Dark bg, light text.
 * ============================================================ */

:root {
  --wdc93-primary: #E91E63;
  --wdc93-secondary: #FF69B4;
  --wdc93-coral: #F08080;
  --wdc93-salmon: #E9967A;
  --wdc93-bg: #0F0F23;
  --wdc93-bg-soft: #161630;
  --wdc93-bg-card: #1c1c3e;
  --wdc93-text: #ffffff;
  --wdc93-text-soft: #d8d8ec;
  --wdc93-text-mute: #9a9ac0;
  --wdc93-border: rgba(255, 255, 255, 0.08);
  --wdc93-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  --wdc93-radius: 14px;
  --wdc93-radius-lg: 22px;
  --wdc93-grad: linear-gradient(135deg, #E91E63 0%, #FF69B4 50%, #E9967A 100%);
  --wdc93-grad-soft: linear-gradient(135deg, #1c1c3e 0%, #161630 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--wdc93-bg);
  color: var(--wdc93-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* ---------- Layout helpers ---------- */
.wdc93-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
}
.wdc93-wrapper { width: 100%; }
.wdc93-section {
  padding: 2.4rem 0 1.6rem;
  border-bottom: 1px solid var(--wdc93-border);
}
.wdc93-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.wdc93-section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.8rem;
  background: var(--wdc93-grad);
  border-radius: 4px;
}
.wdc93-subtitle {
  color: var(--wdc93-text-soft);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

/* ---------- Header ---------- */
.wdc93-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wdc93-border);
  transition: padding 0.25s ease;
}
.wdc93-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.wdc93-header-compact .wdc93-header-inner { padding: 0.45rem 1.2rem; }
.wdc93-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.wdc93-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.wdc93-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--wdc93-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.wdc93-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wdc93-menu-btn {
  background: transparent;
  border: 1px solid var(--wdc93-border);
  color: var(--wdc93-text);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wdc93-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s;
  min-height: 38px;
  text-align: center;
}
.wdc93-btn:active { transform: scale(0.96); }
.wdc93-btn-primary {
  background: var(--wdc93-grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
}
.wdc93-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wdc93-text);
  border: 1px solid var(--wdc93-border);
}
.wdc93-btn-block {
  display: flex;
  width: 100%;
  padding: 1rem;
  font-size: 1.5rem;
}

/* ---------- Mobile menu ---------- */
.wdc93-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--wdc93-bg-soft);
  border-bottom: 1px solid var(--wdc93-border);
  z-index: 9999;
  padding: 6rem 1.2rem 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.28s ease;
  max-height: 85vh;
  overflow-y: auto;
}
.wdc93-mobile-menu.wdc93-menu-open { transform: translateY(0); }
.wdc93-mobile-menu a {
  display: block;
  padding: 1rem 0.8rem;
  color: var(--wdc93-text);
  border-bottom: 1px solid var(--wdc93-border);
  font-weight: 600;
}
.wdc93-mobile-menu a:active { background: rgba(255,255,255,0.05); }

/* ---------- Main ---------- */
.wdc93-main {
  padding-top: 6rem;
}
@media (max-width: 768px) {
  .wdc93-main { padding-bottom: 8rem; } /* clearance for bottom nav */
}

/* ---------- Hero / Carousel ---------- */
.wdc93-hero {
  position: relative;
  padding-top: 1.2rem;
}
.wdc93-carousel {
  position: relative;
  border-radius: var(--wdc93-radius-lg);
  overflow: hidden;
  box-shadow: var(--wdc93-shadow);
}
.wdc93-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.wdc93-slide.wdc93-slide-active { display: block; }
.wdc93-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.wdc93-slide-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(15,15,35,0.92));
  color: #fff;
}
.wdc93-slide-overlay h2 {
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
}
.wdc93-slide-overlay p { font-size: 1.25rem; color: var(--wdc93-text-soft); }
.wdc93-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.wdc93-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
}
.wdc93-carousel-dot.wdc93-dot-active { background: var(--wdc93-primary); width: 22px; border-radius: 4px; }

/* ---------- Game grid ---------- */
.wdc93-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.wdc93-game-card {
  background: var(--wdc93-bg-card);
  border-radius: var(--wdc93-radius);
  overflow: hidden;
  border: 1px solid var(--wdc93-border);
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wdc93-game-card:active {
  transform: scale(0.96);
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
}
.wdc93-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.wdc93-game-card-name {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.5rem 0.4rem;
  color: var(--wdc93-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wdc93-cat-tag {
  display: inline-block;
  font-size: 1.05rem;
  color: var(--wdc93-salmon);
  background: rgba(233, 150, 122, 0.12);
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  font-weight: 700;
}

/* ---------- Cards / panels ---------- */
.wdc93-card {
  background: var(--wdc93-bg-card);
  border-radius: var(--wdc93-radius);
  padding: 1.4rem;
  border: 1px solid var(--wdc93-border);
  margin-bottom: 1rem;
}
.wdc93-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
  color: #fff;
}
.wdc93-card p {
  color: var(--wdc93-text-soft);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.wdc93-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.wdc93-feature {
  background: var(--wdc93-bg-soft);
  padding: 1rem;
  border-radius: var(--wdc93-radius);
  text-align: center;
  border: 1px solid var(--wdc93-border);
}
.wdc93-feature .wdc93-feature-icon { font-size: 2.2rem; color: var(--wdc93-secondary); margin-bottom: 0.4rem; }
.wdc93-feature h4 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.wdc93-feature p { font-size: 1.15rem; color: var(--wdc93-text-mute); }

/* ---------- Lists ---------- */
.wdc93-list { list-style: none; padding: 0; }
.wdc93-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--wdc93-border);
  color: var(--wdc93-text-soft);
  font-size: 1.3rem;
}
.wdc93-list li:last-child { border-bottom: none; }

/* ---------- Steps ---------- */
.wdc93-steps { counter-reset: step; list-style: none; padding: 0; }
.wdc93-steps li {
  position: relative;
  padding: 0.5rem 0 0.5rem 3.2rem;
  margin-bottom: 0.8rem;
  color: var(--wdc93-text-soft);
  font-size: 1.35rem;
}
.wdc93-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0.3rem;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--wdc93-grad);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---------- RTP table ---------- */
.wdc93-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.wdc93-table th, .wdc93-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--wdc93-border);
  text-align: left;
}
.wdc93-table th { color: var(--wdc93-secondary); font-weight: 700; }
.wdc93-rtp-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.3rem;
}
.wdc93-rtp-bar span {
  display: block;
  height: 100%;
  background: var(--wdc93-grad);
}

/* ---------- Testimonials ---------- */
.wdc93-testimonial {
  background: var(--wdc93-bg-card);
  padding: 1.1rem;
  border-radius: var(--wdc93-radius);
  border-left: 3px solid var(--wdc93-primary);
  margin-bottom: 0.8rem;
}
.wdc93-testimonial p { color: var(--wdc93-text-soft); font-size: 1.3rem; font-style: italic; }
.wdc93-testimonial .wdc93-author {
  margin-top: 0.5rem;
  font-size: 1.15rem;
  color: var(--wdc93-salmon);
  font-weight: 700;
}

/* ---------- Payment ---------- */
.wdc93-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.wdc93-pay {
  background: var(--wdc93-bg-soft);
  border-radius: 10px;
  padding: 0.7rem 0.3rem;
  text-align: center;
  font-size: 1.05rem;
  border: 1px solid var(--wdc93-border);
  color: var(--wdc93-text-soft);
  font-weight: 600;
}

/* ---------- Winners ---------- */
.wdc93-winner {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--wdc93-border);
  font-size: 1.25rem;
}
.wdc93-winner:last-child { border-bottom: none; }
.wdc93-winner .wdc93-amount { color: var(--wdc93-secondary); font-weight: 700; }

/* ---------- FAQ ---------- */
.wdc93-faq-item {
  background: var(--wdc93-bg-card);
  border-radius: var(--wdc93-radius);
  padding: 1rem 1.1rem;
  margin-bottom: 0.7rem;
  border: 1px solid var(--wdc93-border);
}
.wdc93-faq-item h3 { font-size: 1.35rem; color: var(--wdc93-secondary); margin-bottom: 0.4rem; }
.wdc93-faq-item p { color: var(--wdc93-text-soft); font-size: 1.25rem; }

/* ---------- CTA banner ---------- */
.wdc93-cta {
  background: var(--wdc93-grad);
  border-radius: var(--wdc93-radius-lg);
  padding: 1.6rem 1.2rem;
  text-align: center;
  color: #fff;
  margin: 1.2rem 0;
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.35);
}
.wdc93-cta h2 { font-size: 1.9rem; margin-bottom: 0.4rem; }
.wdc93-cta p { font-size: 1.3rem; margin-bottom: 1rem; opacity: 0.95; }
.wdc93-cta .wdc93-btn { background: #fff; color: var(--wdc93-primary); }

/* ---------- Footer ---------- */
.wdc93-footer {
  background: #0a0a1c;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--wdc93-border);
  margin-top: 1.5rem;
}
.wdc93-footer-brand { color: var(--wdc93-text-soft); font-size: 1.25rem; margin-bottom: 1rem; line-height: 1.6rem; }
.wdc93-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.wdc93-footer-links a { color: var(--wdc93-text-soft); font-size: 1.2rem; }
.wdc93-footer-links a:hover { color: var(--wdc93-secondary); }
.wdc93-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.wdc93-footer-copy { color: var(--wdc93-text-mute); font-size: 1.1rem; text-align: center; margin-top: 1rem; }

/* ---------- Bottom nav (mobile only) ---------- */
.wdc93-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(10, 10, 28, 0.98);
  border-top: 1px solid var(--wdc93-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.wdc93-bottom-nav a, .wdc93-bottom-nav button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--wdc93-text-mute);
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.wdc93-bottom-nav a:active, .wdc93-bottom-nav button:active { transform: scale(0.92); }
.wdc93-bottom-nav .material-icons,
.wdc93-bottom-nav ion-icon,
.wdc93-bottom-nav i { font-size: 24px; }
.wdc93-bottom-nav .wdc93-active { color: var(--wdc93-secondary); }
.wdc93-bottom-nav .wdc93-badge {
  position: absolute;
  top: 6px;
  right: 22%;
  background: var(--wdc93-primary);
  color: #fff;
  font-size: 0.9rem;
  padding: 0 5px;
  border-radius: 8px;
  line-height: 1.4;
}

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .wdc93-bottom-nav { display: none; }
  .wdc93-container { max-width: 760px; }
}

/* ---------- Reveal animation ---------- */
.wdc93-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.wdc93-reveal.wdc93-revealed { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.wdc93-text-pink { color: var(--wdc93-secondary); font-weight: 700; }
.wdc93-text-coral { color: var(--wdc93-coral); font-weight: 700; }
.wdc93-mt-1 { margin-top: 0.6rem; }
.wdc93-mt-2 { margin-top: 1.2rem; }
.wdc93-mb-1 { margin-bottom: 0.6rem; }
.wdc93-center { text-align: center; }
.wdc93-hide-desktop { display: block; }
@media (min-width: 769px) { .wdc93-hide-desktop { display: none; } }
