/* ============================================================
 * wj3.click - Theme stylesheet
 * Prefix every custom selector with .v10f- for namespace safety
 * Palette: #2E4057 | #BF360C | #FFB74D | #006400 | #FFFFFF | #66CDAA
 * Mobile-first: design for max-width 430px, scale up to desktop.
 * ============================================================ */

:root {
  --v10f-primary: #BF360C;        /* warm brand accent */
  --v10f-primary-dark: #8a2606;   /* deeper brand shadow */
  --v10f-gold: #FFB74D;           /* reward / highlight gold */
  --v10f-green: #006400;          /* trust / success green */
  --v10f-teal: #66CDAA;           /* soft secondary teal */
  --v10f-bg: #2E4057;             /* main background */
  --v10f-bg-deep: #1d2b3a;        /* deeper footer / drawer */
  --v10f-bg-card: #354b63;        /* card surface */
  --v10f-text: #FFFFFF;           /* primary text */
  --v10f-text-soft: #cdd9e5;      /* secondary text */
  --v10f-text-muted: #9fb1c4;     /* tertiary text */
  --v10f-border: rgba(255, 255, 255, 0.12);
  --v10f-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  --v10f-radius: 1.2rem;
  --v10f-radius-sm: 0.8rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--v10f-text);
  background: var(--v10f-bg);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--v10f-gold); text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.v10f-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v10f-wrapper { padding-bottom: 8rem; }
main { display: block; }

/* ---------------- Header ---------------- */
.v10f-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--v10f-bg-deep) 0%, var(--v10f-bg) 100%);
  border-bottom: 1px solid var(--v10f-border);
  transition: box-shadow .25s ease;
}
.v10f-header-scrolled { box-shadow: var(--v10f-shadow); }
.v10f-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1.2rem; min-height: 5.2rem;
}
.v10f-logo {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--v10f-text); font-weight: 700;
}
.v10f-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }
.v10f-logo-text { font-size: 1.6rem; letter-spacing: 0.05em; }
.v10f-logo-text b { color: var(--v10f-gold); }
.v10f-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v10f-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.2rem; min-height: 3.6rem; min-width: 4.4rem;
  font-size: 1.3rem; font-weight: 700; border: none; cursor: pointer;
  border-radius: 2rem; transition: transform .15s ease, box-shadow .2s ease;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.v10f-btn:active { transform: scale(0.96); }
.v10f-btn-primary { background: linear-gradient(135deg, var(--v10f-gold) 0%, var(--v10f-primary) 100%); color: #fff; box-shadow: 0 3px 10px rgba(191,54,12,.35); }
.v10f-btn-outline { background: transparent; color: var(--v10f-gold); border: 1.5px solid var(--v10f-gold); }
.v10f-btn-block { width: 100%; }
.v10f-btn-lg { padding: 1rem 1.5rem; font-size: 1.5rem; min-height: 4.4rem; }
.v10f-menu-toggle {
  background: transparent; border: none; color: var(--v10f-text);
  font-size: 1.8rem; padding: 0.5rem; cursor: pointer; min-width: 4.4rem; min-height: 4.4rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------------- Drawer menu ---------------- */
.v10f-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 9998;
}
.v10f-menu-backdrop.v10f-show { opacity: 1; pointer-events: auto; }
.v10f-mobile-menu {
  position: fixed; top: 0; right: -80%; width: 80%; max-width: 320px;
  height: 100vh; background: var(--v10f-bg-deep); z-index: 9999;
  padding: 2rem 1.5rem; overflow-y: auto;
  transform: translateX(0); transition: transform .28s ease;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.v10f-mobile-menu.v10f-menu-open { transform: translateX(-100%); }
.v10f-menu-title { font-size: 1.4rem; color: var(--v10f-gold); font-weight: 700; padding-bottom: 0.5rem; border-bottom: 1px solid var(--v10f-border); }
.v10f-mobile-menu a {
  display: block; padding: 1rem 1rem; color: var(--v10f-text);
  border-radius: var(--v10f-radius-sm); background: rgba(255,255,255,0.05);
  margin-bottom: 0.5rem; font-size: 1.35rem; font-weight: 600;
}
.v10f-mobile-menu a:hover, .v10f-mobile-menu a:focus { background: rgba(255,183,77,0.15); }

/* ---------------- Hero / Carousel ---------------- */
.v10f-hero { padding-top: 6.5rem; }
.v10f-carousel {
  position: relative; overflow: hidden;
  border-radius: var(--v10f-radius); box-shadow: var(--v10f-shadow);
  margin: 1rem 0;
}
.v10f-carousel-track { position: relative; }
.v10f-carousel-slide {
  display: none; position: relative; cursor: pointer;
}
.v10f-carousel-slide.v10f-slide-active { display: block; }
.v10f-carousel-slide img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.v10f-carousel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff; font-size: 1.3rem; font-weight: 600;
}
.v10f-carousel-dots {
  position: absolute; bottom: 0.8rem; right: 1rem;
  display: flex; gap: 0.5rem; z-index: 2;
}
.v10f-carousel-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer; border: none;
}
.v10f-carousel-dot.v10f-dot-active { background: var(--v10f-gold); }

/* ---------------- Sections ---------------- */
.v10f-section { padding: 1.5rem 0; }
.v10f-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.v10f-h1 {
  font-size: 1.9rem; font-weight: 800; line-height: 1.25; color: var(--v10f-text);
  padding: 0.5rem 0; margin-top: 0.5rem;
}
.v10f-h1 b { color: var(--v10f-gold); }
.v10f-h2 {
  font-size: 1.7rem; font-weight: 700; color: var(--v10f-gold);
  padding-left: 0.8rem; border-left: 4px solid var(--v10f-primary);
  margin-bottom: 0.8rem; line-height: 1.3;
}
.v10f-h3 { font-size: 1.45rem; font-weight: 700; color: var(--v10f-text); margin: 1rem 0 0.5rem; }
.v10f-lead { color: var(--v10f-text-soft); font-size: 1.4rem; line-height: 1.6; }
.v10f-text-link { color: var(--v10f-gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.v10f-text-link:hover { color: var(--v10f-primary); }

/* ---------------- Filter ---------------- */
.v10f-filter-bar {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 0;
  margin: 0 -1.2rem; padding-left: 1.2rem; padding-right: 1.2rem;
  -webkit-overflow-scrolling: touch;
}
.v10f-filter-bar::-webkit-scrollbar { display: none; }
.v10f-filter-btn {
  flex: 0 0 auto; padding: 0.6rem 1.2rem; background: rgba(255,255,255,.08);
  color: var(--v10f-text-soft); border: 1px solid var(--v10f-border);
  border-radius: 2rem; font-size: 1.25rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; min-height: 3.6rem;
}
.v10f-filter-active { background: var(--v10f-primary); color: #fff; border-color: var(--v10f-primary); }

/* ---------------- Games grid ---------------- */
.v10f-game-block { padding: 1rem 0; }
.v10f-game-block-title {
  font-size: 1.45rem; font-weight: 700; color: var(--v10f-gold);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}
.v10f-game-block-title i { color: var(--v10f-primary); }
.v10f-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.v10f-game-card {
  display: block; background: var(--v10f-bg-card); border-radius: var(--v10f-radius-sm);
  overflow: hidden; cursor: pointer; text-align: center;
  border: 1px solid var(--v10f-border); transition: transform .15s ease, box-shadow .2s ease;
}
.v10f-game-card:active { transform: scale(0.95); }
.v10f-game-card:hover { box-shadow: 0 4px 14px rgba(255,183,77,.25); border-color: var(--v10f-gold); }
.v10f-game-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(255,255,255,0.04));
}
.v10f-game-card-name {
  padding: 0.5rem 0.4rem; font-size: 1.1rem; color: var(--v10f-text);
  font-weight: 600; line-height: 1.25; min-height: 3rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ---------------- Info cards / modules ---------------- */
.v10f-card {
  background: var(--v10f-bg-card); border-radius: var(--v10f-radius);
  padding: 1.2rem; margin-bottom: 1rem; border: 1px solid var(--v10f-border);
  box-shadow: var(--v10f-shadow);
}
.v10f-card-title { font-size: 1.5rem; font-weight: 700; color: var(--v10f-gold); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.v10f-card p { color: var(--v10f-text-soft); margin-bottom: 0.6rem; font-size: 1.35rem; }
.v10f-card p:last-child { margin-bottom: 0; }
.v10f-card-icon {
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: rgba(255,183,77,0.18); display: inline-flex;
  align-items: center; justify-content: center; color: var(--v10f-gold);
  flex-shrink: 0;
}
.v10f-feature-row { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.8rem; }
.v10f-feature-row:last-child { margin-bottom: 0; }

/* ---------------- Steps list ---------------- */
.v10f-steps { counter-reset: step; padding-left: 0; }
.v10f-steps li {
  counter-increment: step; position: relative;
  padding: 0.6rem 0 0.6rem 3rem; color: var(--v10f-text-soft); font-size: 1.3rem;
}
.v10f-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0.4rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--v10f-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}

/* ---------------- Stats grid ---------------- */
.v10f-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.v10f-stat {
  background: rgba(255,255,255,.05); border-radius: var(--v10f-radius-sm);
  padding: 0.9rem; text-align: center; border: 1px solid var(--v10f-border);
}
.v10f-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--v10f-gold); }
.v10f-stat-label { font-size: 1.15rem; color: var(--v10f-text-soft); margin-top: 0.2rem; }

/* ---------------- Testimonial ---------------- */
.v10f-testimonial {
  background: rgba(255,255,255,.05); border-radius: var(--v10f-radius-sm);
  padding: 1rem; margin-bottom: 0.7rem; border-left: 3px solid var(--v10f-gold);
}
.v10f-testimonial-text { color: var(--v10f-text); font-style: italic; font-size: 1.3rem; }
.v10f-testimonial-author { color: var(--v10f-gold); font-size: 1.15rem; font-weight: 700; margin-top: 0.4rem; }

/* ---------------- Payment chips ---------------- */
.v10f-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.v10f-chip {
  background: rgba(255,255,255,.08); color: var(--v10f-text-soft);
  border: 1px solid var(--v10f-border); border-radius: 2rem;
  padding: 0.5rem 1rem; font-size: 1.2rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.v10f-chip i { color: var(--v10f-teal); }

/* ---------------- CTA banner ---------------- */
.v10f-cta {
  background: linear-gradient(135deg, var(--v10f-primary) 0%, var(--v10f-primary-dark) 100%);
  border-radius: var(--v10f-radius); padding: 1.4rem; text-align: center;
  margin: 1rem 0; box-shadow: 0 6px 18px rgba(191,54,12,.4);
}
.v10f-cta-title { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.v10f-cta-sub { color: rgba(255,255,255,.85); font-size: 1.25rem; margin-bottom: 1rem; }

/* ---------------- FAQ accordion (static) ---------------- */
.v10f-faq-item {
  background: rgba(255,255,255,.05); border-radius: var(--v10f-radius-sm);
  padding: 0.9rem 1rem; margin-bottom: 0.6rem; border: 1px solid var(--v10f-border);
}
.v10f-faq-q { color: var(--v10f-gold); font-weight: 700; font-size: 1.3rem; margin-bottom: 0.4rem; }
.v10f-faq-a { color: var(--v10f-text-soft); font-size: 1.25rem; }

/* ---------------- Footer ---------------- */
.v10f-footer {
  background: var(--v10f-bg-deep); color: var(--v10f-text-soft);
  padding: 2rem 1.2rem 8rem; margin-top: 2rem;
  border-top: 1px solid var(--v10f-border);
}
.v10f-footer-brand { color: var(--v10f-text); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem; }
.v10f-footer-desc { color: var(--v10f-text-muted); font-size: 1.2rem; line-height: 1.55; margin-bottom: 1rem; }
.v10f-footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
  margin: 1rem 0;
}
.v10f-footer-links a {
  color: var(--v10f-text-soft); font-size: 1.2rem;
  padding: 0.4rem 0; display: inline-block;
}
.v10f-footer-links a:hover { color: var(--v10f-gold); }
.v10f-footer-promos {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0;
}
.v10f-footer-promos button {
  flex: 1 1 auto; min-width: 8rem; padding: 0.7rem 1rem;
  background: rgba(255,183,77,.12); color: var(--v10f-gold);
  border: 1px solid rgba(255,183,77,.35); border-radius: 2rem;
  font-size: 1.2rem; font-weight: 700; cursor: pointer; min-height: 3.6rem;
}
.v10f-footer-promos button:active { transform: scale(0.97); }
.v10f-copyright {
  text-align: center; padding-top: 1rem;
  border-top: 1px solid var(--v10f-border);
  color: var(--v10f-text-muted); font-size: 1.15rem;
}

/* ---------------- Mobile bottom nav ---------------- */
.v10f-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, var(--v10f-bg-card) 0%, var(--v10f-bg-deep) 100%);
  border-top: 1px solid var(--v10f-border);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000; height: 6.2rem; padding: 0.4rem 0;
}
.v10f-bottom-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; color: var(--v10f-text-muted);
  background: transparent; border: none; cursor: pointer;
  text-decoration: none; padding: 0.2rem; min-height: 5.4rem;
  transition: color .2s ease, transform .15s ease;
}
.v10f-bottom-nav-item:active { transform: scale(0.92); }
.v10f-bottom-nav-item .v10f-bn-icon { font-size: 2.2rem; line-height: 1; }
.v10f-bottom-nav-item .v10f-bn-label { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; }
.v10f-bottom-nav-item.v10f-bn-active { color: var(--v10f-gold); }
.v10f-bottom-nav-item.v10f-bn-promo {
  position: relative; color: var(--v10f-gold);
}
.v10f-bottom-nav-item.v10f-bn-promo::before {
  content: ''; position: absolute; top: -0.4rem; left: 50%; transform: translateX(-50%);
  width: 3.2rem; height: 3.2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--v10f-primary), var(--v10f-gold));
  box-shadow: 0 3px 8px rgba(191,54,12,.45);
  z-index: -1;
}
.v10f-bottom-nav-item.v10f-bn-promo .v10f-bn-icon { color: #fff; }

/* ---------------- Utilities ---------------- */
.v10f-hidden { display: none !important; }
.v10f-text-center { text-align: center; }
.v10f-mt-1 { margin-top: 0.5rem; }
.v10f-mt-2 { margin-top: 1rem; }
.v10f-mb-1 { margin-bottom: 0.5rem; }
.v10f-mb-2 { margin-bottom: 1rem; }
.v10f-promo-inline {
  color: var(--v10f-gold); font-weight: 700; cursor: pointer;
  background: none; border: none; padding: 0;
  text-decoration: underline; text-underline-offset: 2px;
  font: inherit;
}

/* ---------------- Desktop / tablet tweaks ---------------- */
@media (min-width: 768px) {
  body { background: linear-gradient(135deg, var(--v10f-bg-deep) 0%, var(--v10f-bg) 100%); }
  .v10f-container { max-width: 720px; }
  .v10f-header-inner { max-width: 720px; }
  .v10f-game-grid { grid-template-columns: repeat(5, 1fr); }
  .v10f-stats { grid-template-columns: repeat(4, 1fr); }
  .v10f-bottom-nav { display: none; }
  .v10f-footer { padding-bottom: 2rem; }
  .v10f-wrapper { padding-bottom: 2rem; }
}
@media (min-width: 1024px) {
  .v10f-container { max-width: 960px; }
  .v10f-header-inner { max-width: 960px; }
  .v10f-game-grid { grid-template-columns: repeat(6, 1fr); }
}
