/* okada play - core layout (basefiles) */
/* All custom classes use the wb6cf- prefix. */
/* Palette: #141414 (bg) | #A0522D (saddle) | #FFC0CB (pink) | #DB7093 (pale violet red) | #9966CC (amethyst) */

:root {
  --wb6cf-bg: #141414;
  --wb6cf-bg-2: #1c1410;
  --wb6cf-bg-3: #241a14;
  --wb6cf-primary: #A0522D;
  --wb6cf-pink: #FFC0CB;
  --wb6cf-violet: #DB7093;
  --wb6cf-amethyst: #9966CC;
  --wb6cf-text: #f7ece6;
  --wb6cf-text-dim: #d8c3b8;
  --wb6cf-gold: #f0c674;
  --wb6cf-border: rgba(255, 192, 203, 0.22);
  --wb6cf-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  --wb6cf-radius: 14px;
  --wb6cf-gradient: linear-gradient(135deg, #A0522D 0%, #DB7093 55%, #9966CC 100%);
  --wb6cf-gradient-soft: linear-gradient(135deg, rgba(160, 82, 45, 0.18) 0%, rgba(153, 102, 204, 0.18) 100%);
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: var(--wb6cf-bg);
  color: var(--wb6cf-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--wb6cf-pink); text-decoration: none; }

.wb6cf-container { width: 100%; padding: 0 1.2rem; }
.wb6cf-wrapper { width: 100%; }

/* ---------- Header ---------- */
.wb6cf-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0.92) 100%);
  border-bottom: 1px solid var(--wb6cf-border);
  max-width: 430px;
  margin: 0 auto;
}

.wb6cf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  gap: 0.6rem;
}

.wb6cf-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.wb6cf-logo img {
  width: 2.8rem; height: 2.8rem;
  border-radius: 0.6rem;
  border: 1px solid var(--wb6cf-border);
}

.wb6cf-logo-text {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--wb6cf-pink);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.wb6cf-logo-text small { display: block; font-size: 1rem; color: var(--wb6cf-text-dim); font-weight: 400; }

.wb6cf-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wb6cf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.6rem;
  padding: 0 1.1rem;
  border: none;
  border-radius: 2.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  color: #fff;
  background: var(--wb6cf-gradient);
  box-shadow: 0 4px 14px rgba(160, 82, 45, 0.35);
}
.wb6cf-btn:active { transform: scale(0.94); }
.wb6cf-btn:hover { box-shadow: 0 6px 20px rgba(153, 102, 204, 0.45); }

.wb6cf-btn-ghost {
  background: transparent;
  color: var(--wb6cf-pink);
  border: 1px solid var(--wb6cf-border);
  box-shadow: none;
}
.wb6cf-btn-ghost:hover { background: rgba(255, 192, 203, 0.08); }

.wb6cf-btn-sm {
  min-height: 3rem;
  padding: 0 0.9rem;
  font-size: 1.2rem;
}

.wb6cf-menu-btn {
  background: transparent;
  border: 1px solid var(--wb6cf-border);
  color: var(--wb6cf-pink);
  width: 3.6rem; height: 3.6rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile slide menu ---------- */
.wb6cf-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  z-index: 9999;
  background: var(--wb6cf-bg-2);
  border-left: 1px solid var(--wb6cf-border);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 6rem 1.4rem 2rem;
  overflow-y: auto;
}
.wb6cf-menu-open { transform: translateX(0); }
.wb6cf-menu-closed { transform: translateX(100%); }

.wb6cf-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}
.wb6cf-menu-open + .wb6cf-menu-overlay { display: block; }

.wb6cf-mobile-menu h3 {
  color: var(--wb6cf-pink);
  font-size: 1.4rem;
  margin: 1.2rem 0 0.6rem;
  border-bottom: 1px solid var(--wb6cf-border);
  padding-bottom: 0.4rem;
}

.wb6cf-mobile-menu a {
  display: block;
  padding: 0.85rem 0.6rem;
  color: var(--wb6cf-text);
  border-bottom: 1px dashed rgba(255, 192, 203, 0.12);
  font-size: 1.35rem;
}
.wb6cf-mobile-menu a:active { color: var(--wb6cf-violet); }

.wb6cf-menu-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: 1px solid var(--wb6cf-border);
  color: var(--wb6cf-pink);
  width: 3rem; height: 3rem;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Main ---------- */
.wb6cf-main {
  padding-top: 6.4rem;
  padding-bottom: 1rem;
}

.wb6cf-section {
  padding: 2.2rem 1.2rem;
  border-bottom: 1px solid rgba(255, 192, 203, 0.08);
}

.wb6cf-section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--wb6cf-pink);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.wb6cf-section-title .wb6cf-accent { color: var(--wb6cf-amethyst); }

.wb6cf-section-sub {
  color: var(--wb6cf-text-dim);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.wb6cf-text p {
  margin-bottom: 1rem;
  color: var(--wb6cf-text-dim);
  line-height: 1.65;
}
.wb6cf-text strong, .wb6cf-text b { color: var(--wb6cf-pink); }

.wb6cf-h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--wb6cf-pink);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}
.wb6cf-h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--wb6cf-violet);
  margin: 1.4rem 0 0.6rem;
}
.wb6cf-h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--wb6cf-amethyst);
  margin: 1.1rem 0 0.4rem;
}

/* ---------- Hero / Carousel ---------- */
.wb6cf-hero { padding: 1.2rem 1.2rem 0; }

.wb6cf-carousel {
  position: relative;
  border-radius: var(--wb6cf-radius);
  overflow: hidden;
  box-shadow: var(--wb6cf-shadow);
  border: 1px solid var(--wb6cf-border);
  background: var(--wb6cf-bg-2);
}

.wb6cf-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.wb6cf-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: flex-end;
}
.wb6cf-carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.wb6cf-carousel-slide.wb6cf-slide-active { opacity: 1; }

.wb6cf-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 2.6rem;
  background: linear-gradient(0deg, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0) 100%);
}
.wb6cf-slide-caption h2 {
  color: var(--wb6cf-pink);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.wb6cf-slide-caption p { color: var(--wb6cf-text); font-size: 1.15rem; }

.wb6cf-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
}
.wb6cf-carousel-dot {
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 192, 203, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
}
.wb6cf-carousel-dot.wb6cf-dot-active { background: var(--wb6cf-pink); }

.wb6cf-hero-cta {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.wb6cf-hero-cta .wb6cf-btn { flex: 1 1 auto; }

/* ---------- Game grid ---------- */
.wb6cf-game-block { margin-bottom: 1.6rem; }

.wb6cf-block-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--wb6cf-border);
}
.wb6cf-block-title i { color: var(--wb6cf-gold); font-size: 1.6rem; }
.wb6cf-block-title h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--wb6cf-pink);
  margin: 0;
}
.wb6cf-block-title .wb6cf-count {
  margin-left: auto;
  font-size: 1.05rem;
  color: var(--wb6cf-text-dim);
}

.wb6cf-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.wb6cf-game-card {
  background: var(--wb6cf-bg-2);
  border: 1px solid var(--wb6cf-border);
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}
.wb6cf-game-card:active {
  transform: scale(0.95);
  border-color: var(--wb6cf-violet);
}
.wb6cf-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--wb6cf-bg-3);
  overflow: hidden;
}
.wb6cf-game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.wb6cf-game-name {
  padding: 0.5rem 0.4rem;
  font-size: 1.05rem;
  color: var(--wb6cf-text);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.7) 100%);
}

/* ---------- Features / cards / misc ---------- */
.wb6cf-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.wb6cf-feature-card {
  background: var(--wb6cf-gradient-soft);
  border: 1px solid var(--wb6cf-border);
  border-radius: 1rem;
  padding: 1.1rem;
}
.wb6cf-feature-card i {
  font-size: 2rem;
  color: var(--wb6cf-pink);
  margin-bottom: 0.5rem;
}
.wb6cf-feature-card h3 {
  font-size: 1.3rem;
  color: var(--wb6cf-pink);
  margin-bottom: 0.4rem;
}
.wb6cf-feature-card p {
  font-size: 1.15rem;
  color: var(--wb6cf-text-dim);
  line-height: 1.5;
}

.wb6cf-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.wb6cf-steps li {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 3.2rem;
  margin-bottom: 0.7rem;
  background: var(--wb6cf-bg-2);
  border: 1px solid var(--wb6cf-border);
  border-radius: 0.8rem;
  color: var(--wb6cf-text-dim);
  font-size: 1.2rem;
  line-height: 1.55;
  counter-increment: step;
}
.wb6cf-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.7rem; top: 0.8rem;
  width: 1.9rem; height: 1.9rem;
  background: var(--wb6cf-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.wb6cf-promo-card {
  background: var(--wb6cf-gradient);
  border-radius: 1rem;
  padding: 1.3rem;
  color: #fff;
  margin-bottom: 0.9rem;
  box-shadow: var(--wb6cf-shadow);
}
.wb6cf-promo-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 0.4rem; }
.wb6cf-promo-card p { font-size: 1.2rem; opacity: 0.95; }
.wb6cf-promo-card .wb6cf-btn {
  background: #fff;
  color: var(--wb6cf-primary);
  margin-top: 0.8rem;
  box-shadow: none;
}

.wb6cf-winners {
  background: var(--wb6cf-bg-2);
  border: 1px solid var(--wb6cf-border);
  border-radius: 1rem;
  padding: 1rem;
}
.wb6cf-winner-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 192, 203, 0.12);
  font-size: 1.15rem;
}
.wb6cf-winner-row:last-child { border-bottom: none; }
.wb6cf-winner-avatar {
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--wb6cf-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}
.wb6cf-winner-name { color: var(--wb6cf-text); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wb6cf-winner-amount { color: var(--wb6cf-gold); font-weight: 700; }

.wb6cf-payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.wb6cf-pay-item {
  background: var(--wb6cf-bg-2);
  border: 1px solid var(--wb6cf-border);
  border-radius: 0.8rem;
  padding: 0.8rem 0.4rem;
  text-align: center;
  font-size: 1rem;
  color: var(--wb6cf-text-dim);
}
.wb6cf-pay-item i { font-size: 1.8rem; color: var(--wb6cf-pink); display: block; margin-bottom: 0.3rem; }

.wb6cf-testimonial {
  background: var(--wb6cf-bg-2);
  border: 1px solid var(--wb6cf-border);
  border-radius: 1rem;
  padding: 1.1rem;
  margin-bottom: 0.8rem;
}
.wb6cf-testimonial-stars { color: var(--wb6cf-gold); font-size: 1.1rem; margin-bottom: 0.4rem; }
.wb6cf-testimonial p { color: var(--wb6cf-text-dim); font-size: 1.18rem; line-height: 1.55; margin-bottom: 0.6rem; }
.wb6cf-testimonial-author { color: var(--wb6cf-pink); font-size: 1.1rem; font-weight: 600; }

.wb6cf-app-cta {
  background: var(--wb6cf-gradient);
  border-radius: 1.2rem;
  padding: 1.4rem;
  text-align: center;
  color: #fff;
}
.wb6cf-app-cta h3 { color: #fff; font-size: 1.6rem; margin-bottom: 0.4rem; }
.wb6cf-app-cta p { font-size: 1.2rem; margin-bottom: 1rem; opacity: 0.95; }
.wb6cf-app-cta .wb6cf-btn { background: #fff; color: var(--wb6cf-primary); box-shadow: none; }

/* ---------- FAQ ---------- */
.wb6cf-faq-item {
  background: var(--wb6cf-bg-2);
  border: 1px solid var(--wb6cf-border);
  border-radius: 0.9rem;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.wb6cf-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--wb6cf-pink);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.wb6cf-faq-q .wb6cf-faq-icon { color: var(--wb6cf-violet); font-size: 1.1rem; }
.wb6cf-faq-answer {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--wb6cf-text-dim);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ---------- Play now CTA ---------- */
.wb6cf-play-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--wb6cf-bg-2);
  border: 1px solid var(--wb6cf-border);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}
.wb6cf-play-cta p { color: var(--wb6cf-text); font-size: 1.2rem; margin: 0; flex: 1; }

/* ---------- Footer ---------- */
.wb6cf-footer {
  background: var(--wb6cf-bg-2);
  border-top: 1px solid var(--wb6cf-border);
  padding: 2rem 1.2rem 8rem;
  text-align: center;
}
.wb6cf-footer-brand {
  color: var(--wb6cf-pink);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.wb6cf-footer-desc {
  color: var(--wb6cf-text-dim);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.wb6cf-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.wb6cf-footer-links a {
  color: var(--wb6cf-text);
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--wb6cf-border);
  border-radius: 1rem;
  background: var(--wb6cf-bg-3);
}
.wb6cf-footer-links a:active { color: var(--wb6cf-violet); }
.wb6cf-footer-copy {
  color: var(--wb6cf-text-dim);
  font-size: 1.05rem;
  margin-top: 0.8rem;
}
.wb6cf-footer-disclaimer {
  color: var(--wb6cf-text-dim);
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ---------- Bottom nav ---------- */
.wb6cf-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, #1c1410 0%, #141414 100%);
  border-top: 1px solid var(--wb6cf-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.5);
}
.wb6cf-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--wb6cf-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  cursor: pointer;
  padding: 0.3rem 0.1rem;
  transition: color 0.18s ease, transform 0.18s ease;
}
.wb6cf-nav-btn i, .wb6cf-nav-btn .material-icons-outlined, .wb6cf-nav-btn .ion {
  font-size: 22px;
}
.wb6cf-nav-btn .wb6cf-nav-label {
  font-size: 10px;
  letter-spacing: 0.2px;
}
.wb6cf-nav-btn:active { transform: scale(0.92); }
.wb6cf-nav-btn.wb6cf-nav-active {
  color: var(--wb6cf-pink);
}
.wb6cf-nav-btn.wb6cf-nav-active::before {
  content: "";
  position: absolute;
  top: 0;
  width: 28px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--wb6cf-gradient);
}
.wb6cf-nav-promo { color: var(--wb6cf-gold); }

/* ---------- Desktop / responsive ---------- */
@media (min-width: 769px) {
  .wb6cf-bottom-nav { display: none; }
  body { max-width: 430px; }
}

@media (max-width: 768px) {
  .wb6cf-main { padding-bottom: 80px; }
}

@media (max-width: 360px) {
  .wb6cf-game-grid { grid-template-columns: repeat(2, 1fr); }
  .wb6cf-payments { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Utility ---------- */
.wb6cf-text-link {
  color: var(--wb6cf-violet);
  font-weight: 600;
  border-bottom: 1px dashed var(--wb6cf-violet);
}
.wb6cf-text-link:active { color: var(--wb6cf-amethyst); }

.wb6cf-inline-cta {
  display: inline-block;
  color: var(--wb6cf-gold);
  font-weight: 700;
  border-bottom: 1px solid var(--wb6cf-gold);
  padding-bottom: 1px;
}

.wb6cf-note {
  background: rgba(153, 102, 204, 0.12);
  border-left: 3px solid var(--wb6cf-amethyst);
  padding: 0.8rem 1rem;
  border-radius: 0.4rem;
  font-size: 1.15rem;
  color: var(--wb6cf-text);
  margin: 1rem 0;
}
