/* =========================================================
 * Color Plus - theme-deac.css
 * All custom classes use prefix "vc75-"
 * Palette: #FF1493 | #E91E63 | #DEB887 | #273746 | #FFEF94
 * Mobile-first (max 430px), bottom nav fixed, header floating
 * ========================================================= */

:root {
  --vc75-pink: #FF1493;
  --vc75-rose: #E91E63;
  --vc75-sand: #DEB887;
  --vc75-ink: #273746;
  --vc75-cream: #FFEF94;
  --vc75-bg: #1d2733;
  --vc75-bg-2: #243140;
  --vc75-card: #2c3a4c;
  --vc75-text: #f7f4ef;
  --vc75-muted: #b7c0cc;
  --vc75-line: rgba(255, 255, 255, 0.08);
  --vc75-radius: 14px;
  --vc75-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --vc75-header-h: 58px;
  --vc75-nav-h: 62px;
  --vc75-max-w: 430px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--vc75-bg);
  background-image: radial-gradient(120% 80% at 50% 0%, rgba(255, 20, 147, 0.18), transparent 55%),
                    radial-gradient(80% 60% at 100% 30%, rgba(233, 30, 99, 0.10), transparent 60%),
                    linear-gradient(180deg, #1d2733 0%, #161d27 100%);
  color: var(--vc75-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--vc75-cream); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.vc75-container { width: 100%; max-width: var(--vc75-max-w); margin: 0 auto; padding: 0 14px; }
.vc75-wrapper { padding-top: var(--vc75-header-h); padding-bottom: calc(var(--vc75-nav-h) + 18px); }

/* ---------- Header ---------- */
.vc75-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--vc75-header-h);
  background: rgba(39, 55, 70, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vc75-line);
  transition: box-shadow .25s ease, background .25s ease;
}
.vc75-header-scrolled { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45); background: rgba(29, 39, 51, 0.98); }
.vc75-header-inner {
  max-width: var(--vc75-max-w); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; padding: 0 12px;
}
.vc75-brand { display: flex; align-items: center; gap: 8px; }
.vc75-brand img { width: 28px; height: 28px; border-radius: 8px; }
.vc75-brand-name {
  font-weight: 800; font-size: 1.7rem; letter-spacing: .3px;
  background: linear-gradient(90deg, var(--vc75-pink), var(--vc75-cream));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vc75-header-actions { display: flex; align-items: center; gap: 8px; }
.vc75-hamburger {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06); font-size: 2.0rem; color: var(--vc75-text);
}

/* ---------- Buttons ---------- */
.vc75-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: 1.4rem;
  min-height: 38px; transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.vc75-btn:active { transform: scale(0.96); }
.vc75-btn-primary { background: linear-gradient(90deg, var(--vc75-pink), var(--vc75-rose)); color: #fff; box-shadow: 0 6px 18px rgba(255, 20, 147, 0.35); }
.vc75-btn-ghost { background: rgba(255, 255, 255, 0.08); color: var(--vc75-text); border: 1px solid var(--vc75-line); }
.vc75-btn-gold { background: linear-gradient(90deg, var(--vc75-sand), var(--vc75-cream)); color: var(--vc75-ink); }
.vc75-btn-lg { padding: 13px 24px; font-size: 1.6rem; min-height: 48px; width: 100%; }

/* ---------- Mobile menu ---------- */
.vc75-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 9998;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.vc75-backdrop-show { opacity: 1; pointer-events: auto; }
.vc75-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 82%; max-width: 320px;
  background: linear-gradient(180deg, #243140, #1a242f); z-index: 9999;
  transform: translateX(105%); transition: transform .3s ease; padding: 18px 16px; overflow-y: auto;
}
.vc75-menu-open { transform: translateX(0); }
.vc75-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.vc75-menu-head .vc75-brand-name { font-size: 1.8rem; }
.vc75-menu-close { font-size: 2.2rem; color: var(--vc75-muted); width: 40px; height: 40px; }
.vc75-menu-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0 18px; }
.vc75-menu-list li a {
  display: flex; align-items: center; gap: 10px; padding: 12px 12px; border-radius: 10px;
  color: var(--vc75-text); font-size: 1.5rem; border-bottom: 1px solid var(--vc75-line);
}
.vc75-menu-list li a:active { background: rgba(255, 255, 255, 0.05); }
.vc75-menu-list li i { color: var(--vc75-pink); width: 22px; text-align: center; }

/* ---------- Carousel ---------- */
.vc75-carousel {
  position: relative; border-radius: var(--vc75-radius); overflow: hidden; margin: 14px 0 6px;
  box-shadow: var(--vc75-shadow);
}
.vc75-slide {
  position: relative; display: none; cursor: pointer;
}
.vc75-slide-active { display: block; }
.vc75-slide img { width: 100%; height: 180px; object-fit: cover; }
.vc75-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}
.vc75-slide-overlay h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; }
.vc75-slide-overlay p { font-size: 1.25rem; color: var(--vc75-cream); }
.vc75-dots { display: flex; gap: 6px; justify-content: center; padding: 6px 0 4px; }
.vc75-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); }
.vc75-dot-active { background: var(--vc75-pink); width: 22px; border-radius: 6px; }

/* ---------- Sections ---------- */
.vc75-section { margin: 22px 0; }
.vc75-section-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.vc75-section-title { font-size: 1.9rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.vc75-section-title i { color: var(--vc75-pink); }
.vc75-section-more { font-size: 1.25rem; color: var(--vc75-cream); }
.vc75-eyebrow {
  text-align: center; margin: 16px 0 6px; color: var(--vc75-sand);
  font-size: 1.25rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
}
.vc75-h1 {
  font-size: 2.6rem; line-height: 3.0rem; font-weight: 800; text-align: center; margin: 4px 0 10px;
  background: linear-gradient(90deg, #fff, var(--vc75-cream));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vc75-lead { text-align: center; color: var(--vc75-muted); font-size: 1.4rem; padding: 0 8px; margin-bottom: 14px; }

/* ---------- Category chips ---------- */
.vc75-chips { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px; }
.vc75-chips::-webkit-scrollbar { display: none; }
.vc75-chip {
  flex: 0 0 auto; padding: 7px 14px; border-radius: 999px; font-size: 1.3rem; font-weight: 600;
  background: rgba(255, 255, 255, 0.06); color: var(--vc75-muted); border: 1px solid var(--vc75-line);
}
.vc75-chip-active { background: linear-gradient(90deg, var(--vc75-pink), var(--vc75-rose)); color: #fff; }

/* ---------- Game grid ---------- */
.vc75-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vc75-card {
  background: var(--vc75-card); border-radius: 12px; overflow: hidden; position: relative;
  border: 1px solid var(--vc75-line); transition: transform .15s ease, box-shadow .2s ease;
}
.vc75-card:active { transform: scale(0.97); }
.vc75-card-img { aspect-ratio: 1/1; width: 100%; object-fit: cover; background: #0e141c; }
.vc75-card-name {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 6px 4px; font-size: 1.2rem; color: var(--vc75-text); font-weight: 600;
  min-height: 32px; line-height: 1.3rem;
}
.vc75-badge {
  position: absolute; top: 6px; left: 6px; font-size: 1.0rem; font-weight: 800; padding: 2px 7px;
  border-radius: 6px; background: var(--vc75-pink); color: #fff;
}
.vc75-badge-hot { background: linear-gradient(90deg, #ff5e62, var(--vc75-pink)); }
.vc75-badge-new { background: linear-gradient(90deg, var(--vc75-sand), var(--vc75-cream)); color: var(--vc75-ink); }

/* ---------- Feature blocks ---------- */
.vc75-card-soft { background: var(--vc75-card); border-radius: var(--vc75-radius); padding: 16px; border: 1px solid var(--vc75-line); }
.vc75-feat-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.vc75-feat-item {
  display: flex; gap: 12px; padding: 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--vc75-line);
}
.vc75-feat-ico {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 44px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.25), rgba(233, 30, 99, 0.15)); color: var(--vc75-cream); font-size: 2.0rem;
}
.vc75-feat-item h3 { font-size: 1.5rem; margin-bottom: 4px; }
.vc75-feat-item p { font-size: 1.3rem; color: var(--vc75-muted); line-height: 1.45rem; }

/* ---------- Steps ---------- */
.vc75-steps { display: grid; gap: 10px; }
.vc75-step {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--vc75-line);
}
.vc75-step-num {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 30px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--vc75-pink), var(--vc75-rose)); color: #fff; font-weight: 800; font-size: 1.4rem;
}
.vc75-step h3 { font-size: 1.45rem; margin-bottom: 3px; }
.vc75-step p { font-size: 1.3rem; color: var(--vc75-muted); }

/* ---------- RTP table ---------- */
.vc75-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.3rem; }
.vc75-rtp-table th, .vc75-rtp-table td { padding: 9px 8px; border-bottom: 1px solid var(--vc75-line); text-align: left; }
.vc75-rtp-table th { color: var(--vc75-cream); font-weight: 700; }
.vc75-rtp-pill { background: rgba(255, 20, 147, 0.18); color: var(--vc75-cream); padding: 2px 8px; border-radius: 6px; font-weight: 700; }

/* ---------- Testimonials ---------- */
.vc75-testi { display: grid; gap: 10px; }
.vc75-testi-item { padding: 14px; border-radius: 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--vc75-line); }
.vc75-testi-stars { color: var(--vc75-cream); font-size: 1.3rem; margin-bottom: 6px; letter-spacing: 2px; }
.vc75-testi-text { font-size: 1.35rem; color: var(--vc75-text); margin-bottom: 6px; }
.vc75-testi-author { font-size: 1.2rem; color: var(--vc75-muted); }

/* ---------- Winners ---------- */
.vc75-winner-list { display: grid; gap: 8px; }
.vc75-winner {
  display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--vc75-line); font-size: 1.3rem;
}
.vc75-winner span:first-child { font-weight: 700; }
.vc75-winner-amount { color: var(--vc75-cream); font-weight: 800; }

/* ---------- FAQ ---------- */
.vc75-faq-item { background: var(--vc75-card); border-radius: 12px; margin-bottom: 8px; overflow: hidden; border: 1px solid var(--vc75-line); }
.vc75-faq-q {
  width: 100%; text-align: left; padding: 13px 14px; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; color: var(--vc75-text);
}
.vc75-faq-q i { color: var(--vc75-pink); transition: transform .2s ease; }
.vc75-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 14px; color: var(--vc75-muted); font-size: 1.3rem; }
.vc75-faq-open .vc75-faq-a { max-height: 320px; padding: 0 14px 13px; }
.vc75-faq-open .vc75-faq-q i { transform: rotate(45deg); }

/* ---------- Payment / app ---------- */
.vc75-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.vc75-pay {
  aspect-ratio: 1.6/1; border-radius: 10px; background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--vc75-cream);
  border: 1px solid var(--vc75-line); text-align: center; padding: 4px;
}
.vc75-app {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 18px;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.18), rgba(39, 55, 70, 0.4));
  border-radius: var(--vc75-radius); border: 1px solid var(--vc75-line);
}
.vc75-app h3 { font-size: 1.7rem; }
.vc75-app p { font-size: 1.3rem; color: var(--vc75-muted); }

/* ---------- Promo text link ---------- */
.vc75-link {
  color: var(--vc75-cream); font-weight: 700; border-bottom: 1px dashed rgba(255, 239, 148, 0.5);
}
.vc75-link-bold { color: var(--vc75-pink); font-weight: 800; }

/* ---------- SEO prose ---------- */
.vc75-prose p { margin-bottom: 10px; color: var(--vc75-muted); font-size: 1.35rem; line-height: 1.55rem; }
.vc75-prose strong { color: var(--vc75-text); }
.vc75-prose h3 { font-size: 1.6rem; margin: 14px 0 6px; color: var(--vc75-text); }

/* ---------- CTA banner ---------- */
.vc75-cta {
  margin: 20px 0; padding: 18px; border-radius: var(--vc75-radius); text-align: center;
  background: linear-gradient(135deg, var(--vc75-pink), var(--vc75-rose));
  box-shadow: 0 12px 30px rgba(255, 20, 147, 0.35);
}
.vc75-cta h3 { font-size: 1.9rem; color: #fff; margin-bottom: 6px; }
.vc75-cta p { color: rgba(255, 255, 255, 0.9); font-size: 1.3rem; margin-bottom: 12px; }
.vc75-cta .vc75-btn-gold { display: inline-flex; }

/* ---------- Footer ---------- */
.vc75-footer { background: #141c25; padding: 22px 14px calc(var(--vc75-nav-h) + 24px); margin-top: 22px; border-top: 1px solid var(--vc75-line); }
.vc75-footer-inner { max-width: var(--vc75-max-w); margin: 0 auto; }
.vc75-footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.vc75-footer-brand img { width: 26px; height: 26px; border-radius: 7px; }
.vc75-footer-desc { font-size: 1.3rem; color: var(--vc75-muted); margin-bottom: 14px; line-height: 1.5rem; }
.vc75-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.vc75-footer-links a { font-size: 1.25rem; color: var(--vc75-muted); padding: 4px 0; }
.vc75-footer-promo { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.vc75-footer-promo .vc75-btn { font-size: 1.2rem; padding: 7px 12px; min-height: 32px; }
.vc75-footer-copy { font-size: 1.15rem; color: #6b7785; text-align: center; border-top: 1px solid var(--vc75-line); padding-top: 12px; }

/* ---------- Bottom nav ---------- */
.vc75-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; height: var(--vc75-nav-h);
  background: linear-gradient(180deg, #243140, #18222e);
  border-top: 1px solid var(--vc75-line);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.4);
}
.vc75-bottom-nav-inner { max-width: var(--vc75-max-w); margin: 0 auto; display: flex; width: 100%; justify-content: space-around; }
.vc75-nav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-width: 60px; min-height: 60px; color: var(--vc75-muted); transition: color .2s ease, transform .15s ease;
}
.vc75-nav-btn:active { transform: scale(0.92); }
.vc75-nav-btn .vc75-nav-ico { font-size: 2.2rem; line-height: 1; }
.vc75-nav-btn .vc75-nav-label { font-size: 1.05rem; font-weight: 600; }
.vc75-nav-btn.vc75-active { color: var(--vc75-pink); }
.vc75-nav-btn.vc75-nav-promo { color: var(--vc75-cream); }
.vc75-nav-btn.vc75-nav-promo .vc75-nav-ico { background: linear-gradient(135deg, var(--vc75-pink), var(--vc75-rose)); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: -10px; box-shadow: 0 6px 16px rgba(255, 20, 147, 0.45); }

/* ---------- Back to top ---------- */
.vc75-to-top {
  position: fixed; right: 14px; bottom: calc(var(--vc75-nav-h) + 12px); z-index: 999;
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--vc75-sand), var(--vc75-cream)); color: var(--vc75-ink); font-size: 1.8rem;
  box-shadow: var(--vc75-shadow);
}

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  body { background-color: #11171f; }
  .vc75-bottom-nav, .vc75-to-top, .vc75-hamburger { display: none; }
  .vc75-wrapper { padding-bottom: 30px; }
  .vc75-footer { padding-bottom: 24px; }
}
@media (min-width: 600px) and (max-width: 768px) {
  :root { --vc75-max-w: 460px; }
}
