/* ============================================================
 * Playtime Casino - style-d7fb.css
 * All custom classes use prefix: vb64-
 * Palette: deep midnight + gold accents + warm coral CTA
 * ============================================================ */

:root {
  --vb64-bg: #0b1020;
  --vb64-bg2: #131a32;
  --vb64-bg3: #1c2547;
  --vb64-card: #182144;
  --vb64-card2: #1f2a55;
  --vb64-gold: #f5c451;
  --vb64-gold2: #e0a233;
  --vb64-coral: #ff5a6e;
  --vb64-coral2: #ff3d57;
  --vb64-purple: #8b5cf6;
  --vb64-cyan: #38d9d9;
  --vb64-text: #f3f5ff;
  --vb64-text2: #aab2d5;
  --vb64-muted: #7c85ab;
  --vb64-border: rgba(255, 255, 255, 0.08);
  --vb64-grad: linear-gradient(135deg, #f5c451 0%, #ff8a3d 50%, #ff5a6e 100%);
  --vb64-grad2: linear-gradient(135deg, #8b5cf6 0%, #5b8def 100%);
  --vb64-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --vb64-radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 20% 0%, #1a2350 0%, #0b1020 55%);
  color: var(--vb64-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============== Container ============== */
.vb64-wrap {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background: var(--vb64-bg);
  min-height: 100vh;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}
.vb64-container {
  width: 100%;
  padding: 0 14px;
}

/* ============== Header ============== */
.vb64-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 16, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vb64-border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.vb64-header.vb64-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  background: rgba(11, 16, 32, 0.98);
}
.vb64-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 8px;
}
.vb64-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.vb64-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--vb64-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1206;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(245, 196, 81, 0.35);
}
.vb64-logo-text span { color: var(--vb64-gold); }

.vb64-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vb64-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.vb64-btn:active { transform: scale(0.96); }
.vb64-btn-primary {
  background: var(--vb64-grad);
  color: #1a1206;
  box-shadow: 0 6px 18px rgba(255, 90, 110, 0.35);
}
.vb64-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--vb64-text);
  border: 1px solid var(--vb64-border);
}
.vb64-btn-ghost {
  background: transparent;
  color: var(--vb64-text);
  border: 1px solid rgba(245, 196, 81, 0.4);
}
.vb64-icon-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--vb64-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vb64-border);
  cursor: pointer;
  font-size: 18px;
}

/* ============== Hero / Carousel ============== */
.vb64-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--vb64-border);
}
.vb64-hero-track { position: relative; }
.vb64-hero-slide {
  display: none;
  position: relative;
  padding: 26px 16px 30px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(255, 90, 110, 0.18));
}
.vb64-hero-slide.vb64-active { display: block; animation: vb64Fade 0.6s ease; }
@keyframes vb64Fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.vb64-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vb64-gold);
  background: rgba(245, 196, 81, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.vb64-hero-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 8px;
}
.vb64-hero-title span { color: var(--vb64-gold); }
.vb64-hero-desc {
  font-size: 13px;
  color: var(--vb64-text2);
  margin-bottom: 16px;
  max-width: 320px;
}
.vb64-hero-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vb64-hero-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 0 0 14px;
}
.vb64-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  border: none;
  transition: width 0.25s ease, background 0.25s ease;
}
.vb64-hero-dot.vb64-active {
  background: var(--vb64-gold);
  width: 22px;
  border-radius: 999px;
}

/* ============== Section base ============== */
.vb64-section {
  padding: 26px 14px;
}
.vb64-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}
.vb64-section-title {
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vb64-section-title i { color: var(--vb64-gold); }
.vb64-section-link {
  font-size: 12px;
  color: var(--vb64-gold);
  font-weight: 600;
}

/* ============== Feature strip ============== */
.vb64-feat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
  background: var(--vb64-bg2);
  border-bottom: 1px solid var(--vb64-border);
}
.vb64-feat {
  text-align: center;
  font-size: 11px;
  color: var(--vb64-text2);
}
.vb64-feat i {
  display: block;
  font-size: 20px;
  color: var(--vb64-gold);
  margin-bottom: 4px;
}

/* ============== Category tabs ============== */
.vb64-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px;
  scrollbar-width: none;
}
.vb64-cats::-webkit-scrollbar { display: none; }
.vb64-cat-tab {
  flex: 0 0 auto;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--vb64-card);
  color: var(--vb64-text2);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--vb64-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vb64-cat-tab.vb64-active,
.vb64-cat-tab:active {
  background: var(--vb64-grad);
  color: #1a1206;
  border-color: transparent;
}

/* ============== Game grid ============== */
.vb64-game-section { padding: 8px 14px 22px; }
.vb64-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vb64-game-card {
  background: var(--vb64-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--vb64-border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vb64-game-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}
.vb64-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #2a3360, #1a2350);
  overflow: hidden;
}
.vb64-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vb64-game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.vb64-game-card:active .vb64-game-overlay { opacity: 1; }
.vb64-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vb64-grad);
  color: #1a1206;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}
.vb64-game-name {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 8px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vb64-game-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--vb64-coral);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.vb64-game-tag.vb64-hot { background: var(--vb64-grad); color: #1a1206; }

/* ============== Promo banners ============== */
.vb64-promo-banner {
  margin: 16px 14px;
  padding: 18px;
  border-radius: var(--vb64-radius);
  background: var(--vb64-grad2);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--vb64-shadow);
}
.vb64-promo-banner2 {
  background: linear-gradient(135deg, #ff5a6e 0%, #f5c451 100%);
  color: #1a1206;
}
.vb64-promo-banner h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.vb64-promo-banner p { font-size: 12px; opacity: 0.92; margin-bottom: 12px; }

/* ============== Featured / spotlight ============== */
.vb64-spotlight {
  margin: 16px 14px;
  padding: 16px;
  background: var(--vb64-card);
  border-radius: var(--vb64-radius);
  border: 1px solid var(--vb64-border);
  display: flex;
  gap: 12px;
  align-items: center;
}
.vb64-spotlight-thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--vb64-bg3);
}
.vb64-spotlight-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vb64-spotlight-body h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.vb64-spotlight-body p { font-size: 12px; color: var(--vb64-text2); margin-bottom: 10px; }
.vb64-rating { color: var(--vb64-gold); font-size: 12px; margin-bottom: 6px; }

/* ============== SEO content ============== */
.vb64-seo {
  padding: 24px 14px 8px;
  font-size: 13.5px;
  color: var(--vb64-text2);
}
.vb64-seo h2 {
  font-size: 19px;
  color: var(--vb64-text);
  font-weight: 800;
  margin: 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vb64-seo h2 i { color: var(--vb64-gold); }
.vb64-seo h3 {
  font-size: 15px;
  color: var(--vb64-gold);
  font-weight: 700;
  margin: 14px 0 6px;
}
.vb64-seo p { margin-bottom: 10px; }
.vb64-seo ul, .vb64-seo ol { margin: 0 0 12px 18px; }
.vb64-seo li { margin-bottom: 5px; }
.vb64-seo a { color: var(--vb64-gold); text-decoration: underline; }
.vb64-seo strong { color: var(--vb64-text); }

/* ============== FAQ ============== */
.vb64-faq { padding: 8px 14px 20px; }
.vb64-faq-item {
  background: var(--vb64-card);
  border: 1px solid var(--vb64-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.vb64-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--vb64-text);
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.vb64-faq-q i { color: var(--vb64-gold); transition: transform 0.25s ease; }
.vb64-faq-item.vb64-open .vb64-faq-q i { transform: rotate(45deg); }
.vb64-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
  font-size: 12.5px;
  color: var(--vb64-text2);
}
.vb64-faq-item.vb64-open .vb64-faq-a {
  max-height: 400px;
  padding: 0 16px 14px;
}

/* ============== Footer ============== */
.vb64-footer {
  background: var(--vb64-bg2);
  border-top: 1px solid var(--vb64-border);
  padding: 24px 14px 28px;
  margin-top: 12px;
}
.vb64-footer h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--vb64-text);
  margin: 14px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.vb64-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  font-size: 12px;
}
.vb64-footer-links a {
  color: var(--vb64-text2);
  transition: color 0.18s ease;
}
.vb64-footer-links a:hover { color: var(--vb64-gold); }
.vb64-footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--vb64-border);
  font-size: 11px;
  color: var(--vb64-muted);
  text-align: center;
}
.vb64-18plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--vb64-coral);
  color: var(--vb64-coral);
  font-weight: 800;
  font-size: 11px;
  margin: 8px auto;
}

/* ============== Bottom nav ============== */
.vb64-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: rgba(11, 16, 32, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--vb64-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 6px 4px;
}
.vb64-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 54px;
  background: transparent;
  border: none;
  color: var(--vb64-text2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.vb64-nav-btn i,
.vb64-nav-btn .material-symbols-outlined {
  font-size: 22px;
}
.vb64-nav-btn:active { transform: scale(0.92); }
.vb64-nav-btn.vb64-active { color: var(--vb64-gold); }
.vb64-nav-btn.vb64-cta {
  background: var(--vb64-grad);
  color: #1a1206;
  border-radius: 16px;
  margin: 0 4px;
  box-shadow: 0 6px 18px rgba(255, 90, 110, 0.35);
}

/* ============== Back to top ============== */
.vb64-back-top {
  position: fixed;
  right: 14px;
  bottom: 76px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vb64-gold);
  color: #1a1206;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
  box-shadow: var(--vb64-shadow);
}
.vb64-back-top.vb64-show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============== Mobile menu drawer ============== */
.vb64-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}
.vb64-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: var(--vb64-bg2);
  border-left: 1px solid var(--vb64-border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 18px 16px 30px;
}
.vb64-mobile-menu.vb64-open { transform: translateX(0); }
.vb64-menu-overlay.vb64-show { opacity: 1; visibility: visible; }
.vb64-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.vb64-menu-head h3 { font-size: 17px; font-weight: 800; }
.vb64-menu-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--vb64-text);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
.vb64-menu-section { margin-bottom: 18px; }
.vb64-menu-section h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--vb64-muted);
  margin-bottom: 8px;
}
.vb64-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--vb64-text2);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}
.vb64-menu-link:hover,
.vb64-menu-link:active {
  background: var(--vb64-card);
  color: var(--vb64-gold);
}
.vb64-menu-link i,
.vb64-menu-link .material-symbols-outlined { font-size: 18px; color: var(--vb64-gold); }

.vb64-no-scroll { overflow: hidden; }

/* ============== Marquee ticker ============== */
.vb64-ticker {
  background: var(--vb64-bg2);
  border-bottom: 1px solid var(--vb64-border);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 12px;
  color: var(--vb64-gold);
}
.vb64-ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: vb64Scroll 22s linear infinite;
}
@keyframes vb64Scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ============== Stats row ============== */
.vb64-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 14px;
}
.vb64-stat {
  background: var(--vb64-card);
  border: 1px solid var(--vb64-border);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.vb64-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--vb64-gold);
}
.vb64-stat-label {
  font-size: 11px;
  color: var(--vb64-text2);
}

/* ============== Desktop ============== */
@media (min-width: 769px) {
  .vb64-bottom-nav { display: none; }
  .vb64-wrap {
    max-width: 430px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  }
}

/* ============== Mobile padding for bottom nav ============== */
@media (max-width: 768px) {
  .vb64-main { padding-bottom: 80px; }
}

/* hide elements on tiny screens for readability */
@media (max-width: 360px) {
  .vb64-game-grid { grid-template-columns: repeat(2, 1fr); }
  .vb64-feat-strip { grid-template-columns: repeat(2, 1fr); }
}
