/*!
 * betso88 asia - style-439c.css
 * Mobile-first stylesheet. All custom classes use the "vc78-" prefix.
 * Palette: dark base #141414, coral accent #F08080.
 */

:root {
  --vc78-bg: #141414;
  --vc78-bg-2: #1d1d1d;
  --vc78-bg-3: #262626;
  --vc78-text: #F08080;
  --vc78-text-soft: #f4b6b6;
  --vc78-white: #ffffff;
  --vc78-muted: #b8b8b8;
  --vc78-accent: #F08080;
  --vc78-accent-2: #ffb199;
  --vc78-gold: #ffd27a;
  --vc78-border: rgba(240, 128, 128, 0.18);
  --vc78-radius: 14px;
  --vc78-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --vc78-primary: #F08080;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--vc78-bg);
  color: var(--vc78-white);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--vc78-text-soft); text-decoration: none; }
a:hover { color: var(--vc78-white); }

.vc78-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

.vc78-wrapper { width: 100%; }

/* ============ HEADER ============ */
.vc78-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #181818 0%, #141414 100%);
  border-bottom: 1px solid var(--vc78-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.vc78-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;
}
.vc78-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.vc78-brand img { width: 28px; height: 28px; border-radius: 8px; }
.vc78-brand-name {
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--vc78-white);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.vc78-brand-name span { color: var(--vc78-accent); }

.vc78-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.vc78-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  min-height: 38px;
}
.vc78-btn:active { transform: scale(0.95); }
.vc78-btn-primary {
  background: linear-gradient(135deg, var(--vc78-accent) 0%, #ff6b6b 100%);
  color: #2a0d0d;
}
.vc78-btn-ghost {
  background: transparent;
  color: var(--vc78-white);
  border: 1px solid var(--vc78-accent);
}
.vc78-btn-block {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.5rem;
}

.vc78-menu-btn {
  background: transparent;
  border: 1px solid var(--vc78-border);
  color: var(--vc78-white);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ============ MOBILE MENU ============ */
.vc78-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--vc78-bg-2);
  z-index: 9999;
  padding: 7rem 1.5rem 2rem;
  transform: translateX(110%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  border-left: 1px solid var(--vc78-border);
}
.vc78-mobile-menu.vc78-menu-open { transform: translateX(0); }
.vc78-mobile-menu a {
  display: block;
  padding: 1.1rem 0.6rem;
  border-bottom: 1px solid rgba(240, 128, 128, 0.08);
  font-size: 1.45rem;
  color: var(--vc78-white);
}
.vc78-mobile-menu a:hover { color: var(--vc78-accent); padding-left: 1.2rem; }
.vc78-menu-title {
  color: var(--vc78-accent);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 1.2rem 0 0.4rem;
}

.vc78-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.vc78-overlay.vc78-menu-open { opacity: 1; pointer-events: auto; }

/* ============ LAYOUT ============ */
main { padding-top: 6.5rem; }
.vc78-section { padding: 2.2rem 0; }
.vc78-section-alt { background: var(--vc78-bg-2); }

.vc78-h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 0.8rem;
  color: var(--vc78-white);
}
.vc78-h1 span { color: var(--vc78-accent); }
.vc78-h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--vc78-white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vc78-h2 i { color: var(--vc78-accent); }
.vc78-h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--vc78-text-soft);
  margin: 1.4rem 0 0.6rem;
}
.vc78-lead { color: var(--vc78-muted); font-size: 1.4rem; }
.vc78-text-accent { color: var(--vc78-accent); font-weight: 700; }

/* ============ HERO CAROUSEL ============ */
.vc78-carousel {
  position: relative;
  border-radius: var(--vc78-radius);
  overflow: hidden;
  box-shadow: var(--vc78-shadow);
  margin-bottom: 1.4rem;
}
.vc78-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.vc78-slide img { width: 100%; height: 180px; object-fit: cover; }
.vc78-slide-active { display: block; }
.vc78-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0) 100%);
  font-weight: 700;
  color: var(--vc78-white);
}
.vc78-slide-caption small { display: block; color: var(--vc78-text-soft); font-weight: 500; }
.vc78-dots {
  position: absolute;
  bottom: 8px; right: 10px;
  display: flex; gap: 5px;
}
.vc78-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.vc78-dot-active { background: var(--vc78-accent); }

/* ============ GAME GRID ============ */
.vc78-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.vc78-game-card {
  background: var(--vc78-bg-3);
  border-radius: 12px;
  padding: 0.6rem;
  text-align: center;
  border: 1px solid var(--vc78-border);
  transition: transform 0.15s ease, border-color 0.2s ease;
  cursor: pointer;
}
.vc78-game-card:hover, .vc78-game-card:active {
  transform: translateY(-2px);
  border-color: var(--vc78-accent);
}
.vc78-game-card img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.4rem;
}
.vc78-game-name {
  font-size: 1.15rem;
  color: var(--vc78-white);
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
}

.vc78-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.6rem 0 0.9rem;
}
.vc78-cat-tag {
  font-size: 1.15rem;
  color: var(--vc78-text-soft);
  background: rgba(240,128,128,0.1);
  border: 1px solid var(--vc78-border);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* ============ CARDS ============ */
.vc78-card {
  background: var(--vc78-bg-2);
  border: 1px solid var(--vc78-border);
  border-radius: var(--vc78-radius);
  padding: 1.4rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--vc78-shadow);
}
.vc78-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(240,128,128,0.08);
}
.vc78-card-row:last-child { border-bottom: none; }
.vc78-icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(240,128,128,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vc78-accent);
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* ============ RTP TABLE ============ */
.vc78-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.vc78-table th, .vc78-table td {
  padding: 0.7rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(240,128,128,0.1);
}
.vc78-table th { color: var(--vc78-accent); font-size: 1.15rem; }
.vc78-bar {
  height: 7px; border-radius: 4px;
  background: rgba(255,255,255,0.1);
  overflow: hidden; width: 100%;
}
.vc78-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--vc78-accent), var(--vc78-gold));
}

/* ============ FEATURES / STRIP ============ */
.vc78-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.vc78-tile {
  background: var(--vc78-bg-3);
  border: 1px solid var(--vc78-border);
  border-radius: 12px;
  padding: 1.1rem;
  text-align: center;
}
.vc78-tile i { color: var(--vc78-accent); font-size: 2.2rem; }
.vc78-tile strong { display: block; margin-top: 0.4rem; color: var(--vc78-white); font-size: 1.3rem; }
.vc78-tile small { color: var(--vc78-muted); }

/* ============ TESTIMONIALS ============ */
.vc78-quote {
  background: var(--vc78-bg-3);
  border-left: 3px solid var(--vc78-accent);
  padding: 1rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  font-style: italic;
  color: var(--vc78-white);
}
.vc78-quote footer { font-style: normal; color: var(--vc78-text-soft); font-size: 1.2rem; margin-top: 0.5rem; }

/* ============ PAYMENTS ============ */
.vc78-pay-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.vc78-pay {
  flex: 1 1 30%;
  background: var(--vc78-bg-3);
  border: 1px solid var(--vc78-border);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--vc78-white);
  min-width: 80px;
}
.vc78-pay i { display: block; color: var(--vc78-accent); font-size: 2rem; margin-bottom: 0.3rem; }

/* ============ WINNERS ============ */
.vc78-winner {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px dashed rgba(240,128,128,0.15);
  font-size: 1.3rem;
}
.vc78-winner b { color: var(--vc78-gold); }

/* ============ FAQ ============ */
.vc78-faq { margin-bottom: 0.8rem; }
.vc78-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--vc78-white);
  padding: 0.9rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.vc78-faq summary::-webkit-details-marker { display: none; }
.vc78-faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--vc78-accent);
  font-size: 1.8rem;
}
.vc78-faq[open] summary::after { content: "−"; }
.vc78-faq p { color: var(--vc78-muted); margin: 0 0 0.8rem; }

/* ============ CTA ============ */
.vc78-cta {
  background: linear-gradient(135deg, rgba(240,128,128,0.18), rgba(240,128,128,0.04));
  border: 1px solid var(--vc78-border);
  border-radius: var(--vc78-radius);
  padding: 1.6rem;
  text-align: center;
}
.vc78-cta h3 { margin-top: 0; color: var(--vc78-white); }

/* ============ REVEAL ============ */
[data-app439-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-app439-reveal].vc78-revealed { opacity: 1; transform: translateY(0); }

/* ============ FOOTER ============ */
.vc78-footer {
  background: #0f0f0f;
  border-top: 1px solid var(--vc78-border);
  padding: 2.2rem 1.4rem 9rem;
  margin-top: 1.5rem;
  color: var(--vc78-muted);
  font-size: 1.25rem;
}
.vc78-footer h4 { color: var(--vc78-accent); margin: 1.2rem 0 0.6rem; font-size: 1.4rem; }
.vc78-footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; }
.vc78-footer-links a { color: var(--vc78-muted); font-size: 1.2rem; }
.vc78-footer-links a:hover { color: var(--vc78-accent); }
.vc78-promo-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.vc78-promo-links .vc78-btn { flex: 1 1 45%; font-size: 1.2rem; }
.vc78-copy { text-align: center; border-top: 1px solid rgba(240,128,128,0.1); padding-top: 1.2rem; margin-top: 1.2rem; font-size: 1.15rem; }

/* ============ BOTTOM NAV ============ */
.vc78-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-top: 1px solid var(--vc78-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -3px 14px rgba(0,0,0,0.5);
}
.vc78-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  color: var(--vc78-muted);
  font-size: 1.05rem;
  gap: 2px;
  transition: color 0.18s ease, transform 0.18s ease;
}
.vc78-bottom-nav a i, .vc78-bottom-nav a .material-icons {
  font-size: 22px;
}
.vc78-bottom-nav a:active { transform: scale(0.9); }
.vc78-bottom-nav a:hover { color: var(--vc78-accent); }
.vc78-bottom-nav a.vc78-nav-active { color: var(--vc78-accent); }
.vc78-bottom-nav a.vc78-nav-active::after {
  content: "";
  width: 22px; height: 2px;
  background: var(--vc78-accent);
  border-radius: 2px;
  margin-top: 2px;
}
.vc78-nav-badge {
  position: absolute;
  top: 6px; right: 22%;
  background: var(--vc78-accent);
  color: #2a0d0d;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 10px;
  padding: 0 5px;
  line-height: 1.4;
}

/* ============ DESKTOP ============ */
@media (min-width: 769px) {
  .vc78-bottom-nav { display: none; }
  .vc78-container { max-width: 720px; }
  .vc78-header-inner { max-width: 720px; }
  .vc78-grid { grid-template-columns: repeat(5, 1fr); }
  .vc78-strip { grid-template-columns: repeat(4, 1fr); }
  main { padding-bottom: 0; }
}

/* ============ MOBILE TUNING <= 430px ============ */
@media (max-width: 430px) {
  html { font-size: 58%; }
  .vc78-container { padding: 0 1.1rem; }
  .vc78-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .vc78-game-card img { height: 62px; }
  .vc78-h1 { font-size: 2.1rem; }
  .vc78-h2 { font-size: 1.7rem; }
  .vc78-brand-name { font-size: 1.5rem; }
  .vc78-btn { padding: 0.6rem 0.9rem; font-size: 1.2rem; }
  main { padding-bottom: 80px; }
  .vc78-footer { padding-bottom: 8rem; }
  .vc78-slide img { height: 150px; }
}

@media (max-width: 360px) {
  .vc78-grid { grid-template-columns: repeat(2, 1fr); }
  .vc78-pay { flex: 1 1 45%; }
}
