/*!
 * momo no hu - base styles
 * All custom classes use the v024- prefix.
 * Palette: #880E4F | #FFEF94 | #CCCCCC | #0A0A0A
 * Mobile-first, max 430px content width.
 * Comments in English.
 */

:root {
  --v024-primary: #880E4F;
  --v024-primary-dark: #5b0833;
  --v024-primary-light: #b81e6a;
  --v024-accent: #FFEF94;
  --v024-muted: #CCCCCC;
  --v024-bg: #0A0A0A;
  --v024-bg-2: #14060c;
  --v024-bg-3: #1f0a14;
  --v024-text: #f7e9ef;
  --v024-text-dim: #c9b6c0;
  --v024-border: rgba(255, 239, 148, 0.18);
  --v024-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  --v024-radius: 14px;
  --v024-radius-sm: 10px;
  --v024-maxw: 430px;
  --v024-header-h: 56px;
  --v024-bottomnav-h: 62px;
}

/* ---------------- base reset ---------------- */
* { box-sizing: border-box; }
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: radial-gradient(120% 80% at 50% -10%, #2a0b1c 0%, var(--v024-bg) 55%);
  color: var(--v024-text);
  font-family: "Be Vietnam Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--v024-accent); text-decoration: none; }
a:hover { color: #fff7c4; }
button { font-family: inherit; cursor: pointer; }

/* ---------------- layout helpers ---------------- */
.v024-container {
  width: 100%;
  max-width: var(--v024-maxw);
  margin: 0 auto;
  padding: 0 14px;
}
.v024-wrapper {
  width: 100%;
  max-width: var(--v024-maxw);
  margin: 0 auto;
}
.v024-section { padding: 26px 0 14px; }
.v024-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.v024-section-title {
  font-size: 2.0rem;
  font-weight: 800;
  color: var(--v024-accent);
  margin: 0;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v024-section-title i { color: var(--v024-primary-light); }
.v024-section-link {
  font-size: 1.25rem;
  color: var(--v024-muted);
}

/* ---------------- header ---------------- */
.v024-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v024-header-h);
  background: linear-gradient(180deg, #1a0510 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--v024-border);
  z-index: 1000;
}
.v024-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
}
.v024-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.v024-brand-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--v024-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--v024-accent);
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(255,239,148,.25) inset;
}
.v024-brand-name {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--v024-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v024-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.v024-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .15s ease, box-shadow .15s ease;
  line-height: 1;
}
.v024-btn:active { transform: scale(.96); }
.v024-btn-primary {
  background: var(--v024-accent);
  color: #4a0626;
}
.v024-btn-ghost {
  background: transparent;
  border: 1px solid var(--v024-accent);
  color: var(--v024-accent);
}
.v024-menu-btn {
  background: transparent;
  border: 0;
  color: var(--v024-accent);
  font-size: 1.9rem;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------------- mobile drawer menu ---------------- */
.v024-mobile-menu {
  position: fixed;
  top: 0; right: -85%;
  width: 78%;
  height: 100%;
  background: #14060c;
  z-index: 9999;
  padding: 22px 18px;
  transform: translateX(0);
  transition: right .28s ease;
  overflow-y: auto;
  border-left: 1px solid var(--v024-border);
}
.v024-mobile-menu.v024-menu-open { right: 0; }
.v024-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.v024-menu-overlay.v024-overlay-on {
  opacity: 1; visibility: visible;
}
.v024-menu-title {
  font-size: 1.7rem; color: var(--v024-accent);
  font-weight: 800; margin: 0 0 14px;
}
.v024-menu-list { list-style: none; padding: 0; margin: 0; }
.v024-menu-list li {
  border-bottom: 1px solid rgba(255,239,148,.08);
}
.v024-menu-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 6px;
  color: var(--v024-text);
  font-size: 1.4rem;
  font-weight: 600;
}
.v024-menu-list a i { color: var(--v024-primary-light); width: 22px; }
.v024-menu-cta {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}

/* ---------------- main ---------------- */
main { padding-top: calc(var(--v024-header-h) + 8px); }
@media (max-width: 768px) {
  main { padding-bottom: calc(var(--v024-bottomnav-h) + 18px); }
}

/* ---------------- hero / carousel ---------------- */
.v024-hero { padding: 10px 0 4px; }
.v024-carousel {
  position: relative;
  border-radius: var(--v024-radius);
  overflow: hidden;
  background: #1a0510;
  box-shadow: var(--v024-shadow);
}
.v024-carousel-track { position: relative; }
.v024-carousel-slide {
  display: none;
  position: relative;
}
.v024-carousel-slide.v024-slide-active { display: block; }
.v024-carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.v024-carousel-cap {
  position: absolute;
  left: 14px; right: 14px; bottom: 30px;
}
.v024-carousel-cap h2 {
  margin: 0 0 6px;
  font-size: 2.0rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
  font-weight: 800;
}
.v024-carousel-cap p {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: var(--v024-accent);
}
.v024-carousel-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.v024-carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 0; padding: 0;
}
.v024-carousel-dot.v024-dot-active {
  background: var(--v024-accent);
  width: 18px; border-radius: 5px;
}

/* ---------------- H1 ---------------- */
.v024-h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin: 18px 0 6px;
  line-height: 1.25;
  background: linear-gradient(90deg, #fff7c4, var(--v024-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v024-lead {
  font-size: 1.4rem;
  color: var(--v024-text-dim);
  margin: 0 0 8px;
}

/* ---------------- category nav strip ---------------- */
.v024-catnav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 14px;
  -webkit-overflow-scrolling: touch;
}
.v024-catnav::-webkit-scrollbar { display: none; }
.v024-catnav a {
  flex: 0 0 auto;
  background: #1a0510;
  border: 1px solid var(--v024-border);
  color: var(--v024-text);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}
.v024-catnav a:hover { background: var(--v024-primary); color: #fff; }

/* ---------------- game grid ---------------- */
.v024-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.v024-card {
  background: linear-gradient(180deg, #1f0a14 0%, #14060c 100%);
  border: 1px solid var(--v024-border);
  border-radius: var(--v024-radius);
  overflow: hidden;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.v024-card:active { transform: scale(.97); }
.v024-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0a0a0a;
}
.v024-card-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--v024-text);
  padding: 6px 6px 8px;
  line-height: 1.25;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v024-card-hot {
  position: relative;
}
.v024-card-hot::before {
  content: "HOT";
  position: absolute;
  top: 6px; left: 6px;
  background: var(--v024-primary);
  color: var(--v024-accent);
  font-size: 1.0rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  z-index: 2;
}

/* ---------------- promo / cta band ---------------- */
.v024-cta-band {
  background: linear-gradient(135deg, var(--v024-primary) 0%, var(--v024-primary-dark) 100%);
  border-radius: var(--v024-radius);
  padding: 18px 16px;
  margin: 16px 0;
  text-align: center;
  border: 1px solid rgba(255,239,148,.25);
}
.v024-cta-band h3 {
  margin: 0 0 6px;
  color: var(--v024-accent);
  font-size: 1.8rem;
}
.v024-cta-band p {
  margin: 0 0 12px;
  color: #ffe7c2;
  font-size: 1.3rem;
}
.v024-btn-lg {
  padding: 11px 22px;
  font-size: 1.5rem;
}

/* ---------------- info / feature blocks ---------------- */
.v024-prose p {
  margin: 0 0 12px;
  color: var(--v024-text-dim);
  font-size: 1.4rem;
}
.v024-prose strong { color: var(--v024-accent); }
.v024-prose a { font-weight: 700; }

.v024-step-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.v024-step-list li {
  display: flex;
  gap: 12px;
  background: #14060c;
  border: 1px solid var(--v024-border);
  border-radius: var(--v024-radius-sm);
  padding: 12px 14px;
}
.v024-step-num {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--v024-accent);
  color: #4a0626;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.v024-step-body strong { color: var(--v024-accent); display: block; margin-bottom: 3px; }
.v024-step-body span { color: var(--v024-text-dim); font-size: 1.3rem; }

/* feature cards */
.v024-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v024-feat {
  background: #14060c;
  border: 1px solid var(--v024-border);
  border-radius: var(--v024-radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.v024-feat i {
  font-size: 2.4rem;
  color: var(--v024-primary-light);
  margin-bottom: 6px;
}
.v024-feat h4 { margin: 0 0 4px; color: var(--v024-accent); font-size: 1.35rem; }
.v024-feat p { margin: 0; color: var(--v024-text-dim); font-size: 1.2rem; }

/* rtp compact table */
.v024-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
  background: #14060c;
  border-radius: var(--v024-radius-sm);
  overflow: hidden;
}
.v024-rtp-table th, .v024-rtp-table td {
  padding: 9px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255,239,148,.08);
}
.v024-rtp-table th { background: var(--v024-primary); color: var(--v024-accent); font-weight: 700; }
.v024-rtp-table tr:last-child td { border-bottom: 0; }
.v024-rtp-table .v024-rtp-bar {
  display: inline-block;
  height: 7px;
  background: var(--v024-accent);
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
}

/* testimonials */
.v024-testi {
  background: #14060c;
  border: 1px solid var(--v024-border);
  border-radius: var(--v024-radius-sm);
  padding: 14px;
  margin-bottom: 10px;
}
.v024-testi-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.v024-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--v024-primary);
  color: var(--v024-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem;
}
.v024-testi-name { font-weight: 700; color: var(--v024-accent); font-size: 1.3rem; }
.v024-stars { color: #ffd24a; font-size: 1.1rem; }
.v024-testi p { margin: 0; color: var(--v024-text-dim); font-size: 1.3rem; }

/* winners */
.v024-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px;
  background: #14060c;
  border: 1px solid var(--v024-border);
  border-radius: var(--v024-radius-sm);
  margin-bottom: 7px;
}
.v024-winner-name { font-weight: 700; color: var(--v024-text); font-size: 1.3rem; }
.v024-winner-game { color: var(--v024-text-dim); font-size: 1.15rem; }
.v024-winner-amount { color: var(--v024-accent); font-weight: 800; font-size: 1.4rem; }

/* payment */
.v024-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.v024-pay {
  background: #14060c;
  border: 1px solid var(--v024-border);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--v024-text-dim);
  font-weight: 600;
}
.v024-pay i { font-size: 2.0rem; color: var(--v024-primary-light); display: block; margin-bottom: 4px; }

/* faq */
.v024-faq-item {
  background: #14060c;
  border: 1px solid var(--v024-border);
  border-radius: var(--v024-radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.v024-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--v024-accent);
  font-weight: 700;
  font-size: 1.35rem;
  text-align: left;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.v024-faq-q .v024-faq-icon { transition: transform .2s ease; }
.v024-faq-item.v024-faq-open .v024-faq-icon { transform: rotate(45deg); }
.v024-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 14px;
  color: var(--v024-text-dim);
  font-size: 1.3rem;
}
.v024-faq-item.v024-faq-open .v024-faq-a {
  max-height: 320px;
  padding: 0 14px 12px;
}

/* footer */
.v024-footer {
  margin-top: 20px;
  padding: 22px 0 24px;
  background: #0a0306;
  border-top: 1px solid var(--v024-border);
}
.v024-footer-brand p {
  color: var(--v024-text-dim);
  font-size: 1.25rem;
  margin: 8px 0 14px;
  line-height: 1.55;
}
.v024-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  margin-bottom: 14px;
}
.v024-footer-links a {
  font-size: 1.2rem;
  color: var(--v024-text-dim);
}
.v024-footer-links a:hover { color: var(--v024-accent); }
.v024-footer-cta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.v024-copy {
  font-size: 1.15rem;
  color: #7e6c78;
  border-top: 1px solid rgba(255,239,148,.08);
  padding-top: 12px;
}

/* ---------------- bottom nav ---------------- */
.v024-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--v024-bottomnav-h);
  background: linear-gradient(180deg, #1a0510 0%, #060304 100%);
  border-top: 1px solid var(--v024-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
}
.v024-bottomnav-btn {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--v024-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 2px;
  min-width: 60px;
  min-height: 60px;
  position: relative;
  transition: color .15s ease, transform .15s ease;
}
.v024-bottomnav-btn i,
.v024-bottomnav-btn .material-icons,
.v024-bottomnav-btn .ion {
  font-size: 22px;
}
.v024-bottomnav-btn span {
  font-size: 1.05rem;
  font-weight: 600;
}
.v024-bottomnav-btn:active { transform: scale(.92); }
.v024-bottomnav-btn.v024-active { color: var(--v024-accent); }
.v024-bottomnav-btn.v024-active::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px;
  background: var(--v024-accent);
  border-radius: 0 0 4px 4px;
}
.v024-bottomnav-btn.v024-promo {
  color: var(--v024-accent);
}
.v024-bottomnav-btn.v024-promo span { color: var(--v024-accent); }

@media (min-width: 769px) {
  .v024-bottomnav { display: none; }
  .v024-menu-btn { display: none; }
}

/* desktop nav (hidden on mobile) */
.v024-desktop-nav {
  display: none;
}
@media (min-width: 769px) {
  .v024-desktop-nav {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .v024-desktop-nav a {
    color: var(--v024-text);
    font-size: 1.25rem;
    font-weight: 600;
  }
  .v024-container, .v024-wrapper { max-width: 960px; }
}

/* back to top */
.v024-back-top {
  position: fixed;
  right: 14px; bottom: calc(var(--v024-bottomnav-h) + 12px);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--v024-primary);
  color: var(--v024-accent);
  border: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease;
  z-index: 999;
}
.v024-back-top.v024-back-top-show { opacity: 1; visibility: visible; }

/* utility */
.v024-hide-mobile { display: none; }
@media (min-width: 769px) { .v024-hide-mobile { display: block; } .v024-hide-desktop { display: none; } }
