/* ============================================================
 * d9d9.homes - Theme Stylesheet (theme-c15f.css)
 * All custom classes use the wc15f- prefix.
 * Palette: #FFB6C1 pink | #BAE1FF light-blue | #BBBBBB gray
 *          #262626 dark-bg | #4682B4 steel-blue accent
 * ============================================================ */

:root {
  --wc15f-bg: #262626;
  --wc15f-bg-2: #1d1d1d;
  --wc15f-bg-3: #303030;
  --wc15f-text: #f4f4f4;
  --wc15f-muted: #BBBBBB;
  --wc15f-primary: #FFB6C1;
  --wc15f-accent: #4682B4;
  --wc15f-soft: #BAE1FF;
  --wc15f-gold: #f3c969;
  --wc15f-radius: 14px;
  --wc15f-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
  --wc15f-header-h: 6rem;
  --wc15f-nav-h: 6.4rem;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -10%, #3a2226 0%, var(--wc15f-bg) 55%);
  color: var(--wc15f-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Layout helpers ---------- */
.wc15f-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.wc15f-wrapper { padding-top: var(--wc15f-header-h); padding-bottom: 2rem; }

/* ============================================================
 * Header
 * ============================================================ */
.wc15f-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.98), rgba(38, 38, 38, 0.92));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.18);
}
.wc15f-header-row {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
}
.wc15f-brand { display: flex; align-items: center; gap: 0.7rem; }
.wc15f-logo {
  width: 3.2rem; height: 3.2rem;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--wc15f-primary), var(--wc15f-accent));
  display: grid; place-items: center;
  color: #262626; font-weight: 800; font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(255, 182, 193, 0.35);
}
.wc15f-brand-name {
  font-size: 2rem; font-weight: 800; letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--wc15f-primary), var(--wc15f-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wc15f-actions { display: flex; align-items: center; gap: 0.6rem; }
.wc15f-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  min-height: 3.8rem;
  padding: 0 1.4rem;
  border: none; border-radius: 999px;
  font-size: 1.35rem; font-weight: 700;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
  color: #262626;
}
.wc15f-btn:active { transform: scale(0.96); }
.wc15f-btn-register {
  background: linear-gradient(135deg, var(--wc15f-primary), #ff8aa3);
  box-shadow: 0 4px 14px rgba(255, 138, 163, 0.4);
}
.wc15f-btn-login {
  background: linear-gradient(135deg, var(--wc15f-soft), var(--wc15f-accent));
  color: #14304a;
  box-shadow: 0 4px 14px rgba(70, 130, 180, 0.4);
}
.wc15f-btn-outline {
  background: transparent;
  border: 1.5px solid var(--wc15f-primary);
  color: var(--wc15f-primary);
}
.wc15f-btn-block { width: 100%; padding: 1.2rem; font-size: 1.5rem; }

.wc15f-icon-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none; color: var(--wc15f-text);
  width: 3.8rem; height: 3.8rem;
  border-radius: 10px;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1.7rem;
}
.wc15f-icon-btn:hover { background: rgba(255, 182, 193, 0.18); }

/* ---------- Mobile menu ---------- */
.wc15f-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 82%; max-width: 320px;
  height: 100vh;
  background: var(--wc15f-bg-2);
  z-index: 9999;
  padding: 7rem 1.6rem 2rem;
  transition: right 0.28s ease;
  border-left: 1px solid rgba(255, 182, 193, 0.2);
  overflow-y: auto;
}
.wc15f-mobile-menu.wc15f-menu-open { right: 0; }
.wc15f-mobile-menu h4 {
  font-size: 1.3rem; color: var(--wc15f-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin: 1.4rem 0 0.6rem;
}
.wc15f-mobile-menu a {
  display: block;
  padding: 1rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--wc15f-text);
  font-size: 1.45rem;
}
.wc15f-mobile-menu a:hover { color: var(--wc15f-primary); padding-left: 1rem; }

.wc15f-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s;
}
.wc15f-menu-open ~ .wc15f-overlay,
.wc15f-overlay.wc15f-show { opacity: 1; visibility: visible; }

/* ============================================================
 * Hero carousel
 * ============================================================ */
.wc15f-hero {
  position: relative;
  border-radius: var(--wc15f-radius);
  overflow: hidden;
  margin: 1.2rem 0;
  box-shadow: var(--wc15f-shadow);
}
.wc15f-slides { position: relative; height: 19rem; }
.wc15f-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease;
}
.wc15f-slide img { width: 100%; height: 100%; object-fit: cover; }
.wc15f-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
}
.wc15f-slide.wc15f-slide-active { opacity: 1; }
.wc15f-slide-caption {
  position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  z-index: 2;
}
.wc15f-slide-caption h2 {
  margin: 0 0 0.4rem; font-size: 1.9rem; color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.wc15f-slide-caption p { margin: 0; color: var(--wc15f-soft); font-size: 1.25rem; }

.wc15f-dots {
  position: absolute; bottom: 0.8rem; right: 1.2rem; z-index: 3;
  display: flex; gap: 0.5rem;
}
.wc15f-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer; border: none;
}
.wc15f-dot.wc15f-dot-active { background: var(--wc15f-primary); }

/* ============================================================
 * Sections + headings
 * ============================================================ */
.wc15f-section { margin: 2.2rem 0; }
.wc15f-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.wc15f-section-head h2 {
  font-size: 1.7rem; margin: 0; color: var(--wc15f-text);
  display: flex; align-items: center; gap: 0.6rem;
}
.wc15f-section-head h2 i { color: var(--wc15f-primary); font-size: 1.9rem; }
.wc15f-link-more { color: var(--wc15f-soft); font-size: 1.25rem; font-weight: 600; }

/* ---------- Chip filter ---------- */
.wc15f-chips {
  display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}
.wc15f-chips::-webkit-scrollbar { display: none; }
.wc15f-chip {
  flex: 0 0 auto;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--wc15f-muted);
  font-size: 1.25rem; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.wc15f-chip.wc15f-chip-active {
  background: linear-gradient(135deg, var(--wc15f-primary), #ff8aa3);
  color: #262626;
}

/* ============================================================
 * Game grid (compact icons)
 * ============================================================ */
.wc15f-game-group { margin-bottom: 1.6rem; }
.wc15f-game-group h3 {
  font-size: 1.4rem; color: var(--wc15f-soft);
  margin: 0 0 0.8rem; padding-left: 0.4rem;
  border-left: 3px solid var(--wc15f-primary);
  padding-left: 0.8rem;
}
.wc15f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.wc15f-game {
  display: block;
  background: var(--wc15f-bg-3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-align: center;
}
.wc15f-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 182, 193, 0.18);
  border-color: rgba(255, 182, 193, 0.4);
}
.wc15f-game img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
}
.wc15f-game-name {
  display: block;
  padding: 0.45rem 0.3rem;
  font-size: 1.1rem; color: var(--wc15f-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wc15f-game:hover .wc15f-game-name { color: var(--wc15f-primary); }

/* ============================================================
 * Cards / content blocks
 * ============================================================ */
.wc15f-card {
  background: var(--wc15f-bg-3);
  border-radius: var(--wc15f-radius);
  padding: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.wc15f-card h3 { margin: 0 0 0.6rem; font-size: 1.5rem; color: var(--wc15f-soft); }
.wc15f-card p { margin: 0 0 0.6rem; color: var(--wc15f-muted); font-size: 1.3rem; }
.wc15f-card a { font-weight: 700; }

.wc15f-feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
}
.wc15f-feature {
  background: var(--wc15f-bg-3);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.wc15f-feature i {
  font-size: 2.4rem; color: var(--wc15f-primary); margin-bottom: 0.5rem;
  display: block;
}
.wc15f-feature h4 { margin: 0 0 0.3rem; font-size: 1.3rem; color: #fff; }
.wc15f-feature p { margin: 0; font-size: 1.15rem; color: var(--wc15f-muted); }

/* ---------- Steps ---------- */
.wc15f-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.wc15f-steps li {
  counter-increment: step;
  position: relative;
  padding: 0.8rem 0 0.8rem 3.4rem;
  color: var(--wc15f-muted);
  font-size: 1.3rem;
}
.wc15f-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0.5rem;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wc15f-primary), var(--wc15f-accent));
  color: #262626; font-weight: 800;
  display: grid; place-items: center;
  font-size: 1.3rem;
}

/* ---------- Testimonial ---------- */
.wc15f-testimonial {
  background: var(--wc15f-bg-3);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--wc15f-primary);
}
.wc15f-stars { color: var(--wc15f-gold); font-size: 1.3rem; }
.wc15f-testimonial p { margin: 0.4rem 0; font-size: 1.25rem; color: var(--wc15f-text); }
.wc15f-testimonial cite { color: var(--wc15f-muted); font-style: normal; font-size: 1.15rem; }

/* ---------- Winners list ---------- */
.wc15f-winners {
  background: var(--wc15f-bg-3);
  border-radius: var(--wc15f-radius);
  padding: 0.6rem 1rem;
}
.wc15f-winner-row {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 1.25rem;
}
.wc15f-winner-row:last-child { border-bottom: none; }
.wc15f-winner-row .wc15f-amt { color: var(--wc15f-gold); font-weight: 700; }

/* ---------- CTA band ---------- */
.wc15f-cta {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.18), rgba(70, 130, 180, 0.18));
  border: 1px solid rgba(255, 182, 193, 0.35);
  border-radius: var(--wc15f-radius);
  padding: 1.6rem;
  text-align: center;
  margin: 1.6rem 0;
}
.wc15f-cta h3 { margin: 0 0 0.6rem; font-size: 1.7rem; color: var(--wc15f-primary); }
.wc15f-cta p { margin: 0 0 1rem; color: var(--wc15f-soft); font-size: 1.3rem; }

/* ---------- Payment chips ---------- */
.wc15f-payments { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wc15f-pay {
  flex: 1 1 30%;
  background: var(--wc15f-bg-3);
  border-radius: 10px;
  padding: 0.9rem;
  text-align: center;
  font-size: 1.15rem; color: var(--wc15f-muted);
  border: 1px solid rgba(255,255,255,0.05);
}
.wc15f-pay i { display: block; font-size: 1.8rem; margin-bottom: 0.3rem; color: var(--wc15f-soft); }

/* ---------- FAQ ---------- */
.wc15f-faq dt {
  font-weight: 700; color: var(--wc15f-soft);
  margin: 1rem 0 0.4rem; font-size: 1.35rem;
}
.wc15f-faq dd { margin: 0 0 0.6rem; color: var(--wc15f-muted); font-size: 1.25rem; }

/* ---------- Promo link inline ---------- */
.wc15f-promo-link {
  color: var(--wc15f-primary);
  font-weight: 800;
  cursor: pointer;
  border-bottom: 2px dotted rgba(255, 182, 193, 0.6);
}

/* ============================================================
 * Footer
 * ============================================================ */
.wc15f-footer {
  margin-top: 3rem;
  padding: 2.2rem 1.2rem 2rem;
  background: var(--wc15f-bg-2);
  border-top: 1px solid rgba(255, 182, 193, 0.15);
}
.wc15f-footer h3 { font-size: 1.7rem; color: var(--wc15f-primary); margin: 0 0 0.8rem; }
.wc15f-footer p { color: var(--wc15f-muted); font-size: 1.25rem; line-height: 1.6; }
.wc15f-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1rem;
  margin: 1rem 0;
}
.wc15f-footer-links a {
  color: var(--wc15f-soft); font-size: 1.2rem;
  text-decoration: underline;
}
.wc15f-promo-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem;
  margin: 1rem 0;
}
.wc15f-promo-row .wc15f-btn { width: 100%; font-size: 1.25rem; padding: 0.9rem; }
.wc15f-copy {
  text-align: center; color: var(--wc15f-muted);
  font-size: 1.15rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
 * Mobile bottom navigation (5 buttons)
 * ============================================================ */
.wc15f-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--wc15f-nav-h);
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.98), rgba(20, 20, 20, 0.99));
  border-top: 1px solid rgba(255, 182, 193, 0.25);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.wc15f-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.2rem;
  background: none; border: none; color: var(--wc15f-muted);
  text-decoration: none;
  min-width: 60px; min-height: 60px;
  cursor: pointer;
  transition: color 0.18s, transform 0.18s;
  position: relative;
}
.wc15f-nav-btn .wc15f-nav-icon {
  font-size: 2.2rem;
  line-height: 1;
  transition: transform 0.18s, color 0.18s;
}
.wc15f-nav-btn .wc15f-nav-label {
  font-size: 1.05rem; font-weight: 600;
}
.wc15f-nav-btn:hover { color: var(--wc15f-soft); }
.wc15f-nav-btn:hover .wc15f-nav-icon { transform: translateY(-2px); }
.wc15f-nav-btn.wc15f-nav-current { color: var(--wc15f-primary); }
.wc15f-nav-btn.wc15f-nav-current .wc15f-nav-icon {
  background: linear-gradient(135deg, var(--wc15f-primary), var(--wc15f-accent));
  color: #262626;
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-top: -1rem;
  box-shadow: 0 4px 10px rgba(255, 138, 163, 0.4);
}
.wc15f-nav-btn:active { transform: scale(0.92); }

/* Mobile bottom padding so content is not hidden behind nav */
@media (max-width: 768px) {
  .wc15f-main { padding-bottom: calc(var(--wc15f-nav-h) + 1.5rem); }
}

/* ============================================================
 * Desktop: hide bottom nav, widen container
 * ============================================================ */
@media (min-width: 769px) {
  .wc15f-bottom-nav { display: none; }
  .wc15f-container { max-width: 760px; }
  .wc15f-grid { grid-template-columns: repeat(6, 1fr); }
  .wc15f-slides { height: 26rem; }
}
