/* ============================================================
 * 33win game - core stylesheet
 * Prefix : ve96-
 * Palette: #273746 (dark) | #4682B4 (steel blue accent)
 * ============================================================ */

:root {
  --ve96-bg: #273746;
  --ve96-bg-deep: #1c2733;
  --ve96-bg-soft: #324657;
  --ve96-primary: #4682B4;
  --ve96-primary-dark: #356a96;
  --ve96-accent: #f5b94a;
  --ve96-accent-soft: #ffd884;
  --ve96-text: #f3f6f9;
  --ve96-text-muted: #b6c4d2;
  --ve96-border: rgba(120,160,190,0.18);
  --ve96-success: #4caf91;
  --ve96-danger: #e2615a;
  --ve96-radius: 14px;
  --ve96-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Roboto', 'Noto Sans', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #2d4050 0%, var(--ve96-bg) 55%, var(--ve96-bg-deep) 100%);
  color: var(--ve96-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

a { color: var(--ve96-accent-soft); text-decoration: none; }
a:hover { color: var(--ve96-accent); }

.ve96-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; }
.ve96-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* ---------- Header ---------- */
.ve96-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(28,39,51,0.98) 0%, rgba(39,55,70,0.95) 100%);
  border-bottom: 1px solid var(--ve96-border);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}
.ve96-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; min-height: 54px; gap: 8px;
}
.ve96-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1.8rem; color: #fff;
  letter-spacing: 0.3px;
}
.ve96-logo img { width: 30px; height: 30px; border-radius: 8px; }
.ve96-logo b { color: var(--ve96-accent); font-weight: 800; }

.ve96-header-actions { display: flex; align-items: center; gap: 6px; }
.ve96-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; cursor: pointer; border: none; border-radius: 10px;
  font-weight: 700; font-size: 1.35rem; padding: 8px 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none; line-height: 1.2; white-space: nowrap;
}
.ve96-btn:active { transform: scale(0.95); }
.ve96-btn-register {
  background: linear-gradient(135deg, var(--ve96-accent) 0%, #e09b2c 100%);
  color: #2a1d05;
  box-shadow: 0 4px 14px rgba(245,185,74,0.35);
}
.ve96-btn-login {
  background: linear-gradient(135deg, var(--ve96-primary) 0%, var(--ve96-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(70,130,180,0.35);
}
.ve96-btn-ghost {
  background: transparent; color: var(--ve96-text-muted);
  border: 1px solid var(--ve96-border); padding: 6px 10px;
}
.ve96-btn-block { display: flex; width: 100%; padding: 12px; font-size: 1.5rem; }

.ve96-menu-toggle {
  background: transparent; border: none; color: #fff;
  font-size: 2.1rem; cursor: pointer; padding: 4px 6px; line-height: 1;
}

/* ---------- Mobile slide menu ---------- */
.ve96-menu-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.ve96-menu-overlay.ve96-overlay-show { opacity: 1; visibility: visible; }

.ve96-mobile-menu {
  position: fixed; top: 0; right: -82%;
  width: 78%; max-width: 320px; height: 100vh; z-index: 9999;
  background: linear-gradient(180deg, #20303e 0%, #18242f 100%);
  padding: 18px 16px; overflow-y: auto;
  transition: right 0.28s ease;
  box-shadow: -6px 0 24px rgba(0,0,0,0.45);
}
.ve96-mobile-menu.ve96-menu-open { right: 0; }
.ve96-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; border-bottom: 1px solid var(--ve96-border);
}
.ve96-menu-head h3 { color: #fff; font-size: 1.7rem; }
.ve96-menu-close {
  background: transparent; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; padding: 2px 8px;
}
.ve96-menu-list { list-style: none; padding-top: 10px; }
.ve96-menu-list li { margin-bottom: 2px; }
.ve96-menu-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 12px; border-radius: 10px;
  color: var(--ve96-text); font-weight: 600; font-size: 1.45rem;
}
.ve96-menu-list a:hover, .ve96-menu-list a:active {
  background: var(--ve96-bg-soft); color: var(--ve96-accent);
}
.ve96-menu-list .ion { font-size: 1.8rem; color: var(--ve96-primary); }

.ve96-menu-cta { margin-top: 14px; display: grid; gap: 8px; }

/* ---------- Layout / main ---------- */
main { padding-top: 70px; padding-bottom: 90px; }
.ve96-section { padding: 22px 0; }
.ve96-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; gap: 8px;
}
.ve96-section-title {
  font-size: 1.85rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 8px; line-height: 1.25;
}
.ve96-section-title i { color: var(--ve96-accent); }
.ve96-section-link { font-size: 1.3rem; color: var(--ve96-primary); font-weight: 600; }
.ve96-lead { color: var(--ve96-text-muted); font-size: 1.4rem; margin-bottom: 10px; }

/* ---------- Carousel ---------- */
.ve96-carousel {
  position: relative; border-radius: var(--ve96-radius);
  overflow: hidden; box-shadow: var(--ve96-shadow);
  margin-bottom: 6px;
}
.ve96-carousel-track { display: flex; transition: transform var(--ve96-carousel-transition, 0.48s) ease; will-change: transform; }
.ve96-carousel-slide {
  position: relative; min-width: 100%; height: 180px;
}
.ve96-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.ve96-carousel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
  color: #fff;
}
.ve96-carousel-caption h2 { font-size: 1.7rem; font-weight: 800; }
.ve96-carousel-caption p { font-size: 1.25rem; color: #ffe1b0; }
.ve96-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); color: #fff; border: none;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.ve96-carousel-arrow:hover { background: var(--ve96-primary); }
.ve96-carousel-prev { left: 8px; }
.ve96-carousel-next { right: 8px; }
.ve96-carousel-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.ve96-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  border: none; padding: 0; transition: all 0.2s ease;
}
.ve96-carousel-dot-active { background: var(--ve96-accent); width: 22px; border-radius: 4px; }

/* ---------- Hero CTA ---------- */
.ve96-hero-cta { margin: 16px 0 4px; display: flex; gap: 10px; flex-wrap: wrap; }
.ve96-hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.ve96-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--ve96-bg-soft); border: 1px solid var(--ve96-border);
  padding: 5px 10px; border-radius: 20px; font-size: 1.2rem; color: var(--ve96-text-muted);
}
.ve96-chip b { color: var(--ve96-accent); }

/* ---------- Filter tabs ---------- */
.ve96-filter-bar {
  display: flex; gap: 8px; overflow-x: auto; padding: 6px 0 12px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ve96-filter-bar::-webkit-scrollbar { display: none; }
.ve96-filter-tab {
  flex: 0 0 auto; padding: 8px 14px; border-radius: 20px;
  background: var(--ve96-bg-soft); color: var(--ve96-text-muted);
  border: 1px solid var(--ve96-border); font-size: 1.3rem;
  font-weight: 600; cursor: pointer; transition: all 0.2s ease;
  white-space: nowrap;
}
.ve96-filter-tab-active {
  background: linear-gradient(135deg, var(--ve96-primary), var(--ve96-primary-dark));
  color: #fff; border-color: transparent;
}

/* ---------- Game grid ---------- */
.ve96-game-group { margin-bottom: 24px; }
.ve96-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ve96-game-card {
  background: linear-gradient(180deg, var(--ve96-bg-soft) 0%, #283a4b 100%);
  border: 1px solid var(--ve96-border); border-radius: 12px;
  overflow: hidden; cursor: pointer; position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.ve96-game-card:hover, .ve96-game-card:active {
  transform: translateY(-3px);
  border-color: var(--ve96-primary);
  box-shadow: 0 8px 20px rgba(70,130,180,0.28);
}
.ve96-game-thumb {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  background: #0f1820;
}
.ve96-game-name {
  padding: 6px 8px; font-size: 1.2rem; color: var(--ve96-text);
  text-align: center; font-weight: 600; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; min-height: 28px;
}
.ve96-game-badge {
  position: absolute; top: 6px; left: 6px;
  background: var(--ve96-accent); color: #2a1d05;
  font-size: 1rem; font-weight: 700; padding: 2px 6px;
  border-radius: 4px; line-height: 1;
}
.ve96-game-badge.hot { background: var(--ve96-danger); color: #fff; }

/* ---------- Feature / promo cards ---------- */
.ve96-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ve96-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ve96-card {
  background: linear-gradient(180deg, var(--ve96-bg-soft) 0%, #243645 100%);
  border: 1px solid var(--ve96-border); border-radius: var(--ve96-radius);
  padding: 14px; position: relative;
}
.ve96-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.ve96-card h3 i { color: var(--ve96-accent); }
.ve96-card p { font-size: 1.3rem; color: var(--ve96-text-muted); line-height: 1.5; }

.ve96-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ve96-primary), var(--ve96-primary-dark));
  color: #fff; font-size: 2rem; margin-bottom: 10px;
}

/* ---------- Promo banner ---------- */
.ve96-promo-banner {
  background: linear-gradient(135deg, #4682B4 0%, #2b5878 60%, #f5b94a 140%);
  border-radius: var(--ve96-radius); padding: 18px 16px;
  color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--ve96-shadow); margin-bottom: 6px;
}
.ve96-promo-banner::after {
  content: ''; position: absolute; right: -30px; top: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.ve96-promo-banner h3 { font-size: 1.7rem; margin-bottom: 4px; }
.ve96-promo-banner p { font-size: 1.3rem; opacity: 0.95; margin-bottom: 10px; }
.ve96-countdown {
  display: inline-flex; gap: 4px; align-items: center;
  background: rgba(0,0,0,0.32); padding: 6px 10px;
  border-radius: 8px; font-weight: 800; font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
}

/* ---------- RTP / data table ---------- */
.ve96-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.3rem; }
.ve96-rtp-table th, .ve96-rtp-table td {
  padding: 9px 8px; text-align: left; border-bottom: 1px solid var(--ve96-border);
}
.ve96-rtp-table th { color: var(--ve96-accent-soft); font-weight: 700; }
.ve96-rtp-table td.ve96-rtp-val { color: var(--ve96-success); font-weight: 700; text-align: right; }
.ve96-rtp-bar {
  height: 6px; background: var(--ve96-bg-deep); border-radius: 4px; overflow: hidden;
  margin-top: 4px;
}
.ve96-rtp-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--ve96-primary), var(--ve96-accent)); }

/* ---------- Testimonials ---------- */
.ve96-testimonial {
  background: var(--ve96-bg-soft); border-left: 3px solid var(--ve96-accent);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 10px;
}
.ve96-testimonial p { font-size: 1.32rem; color: var(--ve96-text); font-style: italic; }
.ve96-testimonial .ve96-author {
  margin-top: 6px; font-size: 1.2rem; color: var(--ve96-text-muted);
  display: flex; align-items: center; gap: 6px;
}
.ve96-stars { color: var(--ve96-accent); font-size: 1.2rem; }

/* ---------- Winners list ---------- */
.ve96-winner {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; background: var(--ve96-bg-soft);
  border-radius: 10px; margin-bottom: 8px;
}
.ve96-winner-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ve96-primary), var(--ve96-accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 1.3rem;
}
.ve96-winner-meta { flex: 1; min-width: 0; }
.ve96-winner-meta b { display: block; font-size: 1.32rem; color: #fff; }
.ve96-winner-meta small { color: var(--ve96-text-muted); font-size: 1.15rem; }
.ve96-winner-amount { color: var(--ve96-accent); font-weight: 800; font-size: 1.35rem; }

/* ---------- Payment icons ---------- */
.ve96-pay-item {
  background: #fff; border-radius: 10px; padding: 8px 6px;
  text-align: center; font-size: 1.1rem; color: #273746; font-weight: 700;
  min-height: 46px; display: flex; align-items: center; justify-content: center;
}

/* ---------- Long-form SEO article ---------- */
.ve96-article {
  background: rgba(28,39,51,0.6); border: 1px solid var(--ve96-border);
  border-radius: var(--ve96-radius); padding: 18px 16px;
}
.ve96-article h2 { font-size: 1.75rem; color: #fff; margin: 16px 0 8px; line-height: 1.3; }
.ve96-article h2:first-child { margin-top: 0; }
.ve96-article h3 { font-size: 1.5rem; color: var(--ve96-accent-soft); margin: 12px 0 6px; }
.ve96-article p { font-size: 1.38rem; color: var(--ve96-text-muted); margin-bottom: 10px; line-height: 1.65; }
.ve96-article ul, .ve96-article ol { margin: 0 0 10px 18px; color: var(--ve96-text-muted); font-size: 1.38rem; }
.ve96-article li { margin-bottom: 6px; line-height: 1.6; }
.ve96-article strong { color: var(--ve96-accent-soft); }
.ve96-article a { color: var(--ve96-primary); text-decoration: underline; }

/* ---------- FAQ ---------- */
.ve96-faq-item {
  background: var(--ve96-bg-soft); border: 1px solid var(--ve96-border);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 8px;
}
.ve96-faq-item h3 { font-size: 1.4rem; color: var(--ve96-accent-soft); margin-bottom: 4px; }
.ve96-faq-item p { font-size: 1.3rem; color: var(--ve96-text-muted); line-height: 1.55; }

/* ---------- Footer ---------- */
.ve96-footer {
  background: linear-gradient(180deg, var(--ve96-bg-deep) 0%, #131d26 100%);
  border-top: 1px solid var(--ve96-border);
  padding: 22px 14px 30px; margin-top: 16px;
}
.ve96-footer-brand { font-size: 1.35rem; color: var(--ve96-text-muted); line-height: 1.6; margin-bottom: 14px; }
.ve96-footer-brand b { color: #fff; }
.ve96-footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }
.ve96-footer-col h4 { font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.ve96-footer-col ul { list-style: none; }
.ve96-footer-col li { margin-bottom: 5px; }
.ve96-footer-col a { font-size: 1.25rem; color: var(--ve96-text-muted); }
.ve96-footer-col a:hover { color: var(--ve96-accent); }
.ve96-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.ve96-footer-promos .ve96-btn { flex: 1 1 auto; min-width: 110px; font-size: 1.25rem; padding: 7px 10px; }
.ve96-footer-bottom {
  border-top: 1px solid var(--ve96-border); padding-top: 12px;
  text-align: center; color: var(--ve96-text-muted); font-size: 1.2rem;
}
.ve96-18plus {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ve96-border); border-radius: 6px;
  padding: 2px 8px; font-weight: 800; color: var(--ve96-danger); font-size: 1.2rem;
  margin-right: 6px;
}

/* ---------- Mobile bottom nav ---------- */
.ve96-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-around; align-items: stretch;
  background: linear-gradient(180deg, #1f2f3d 0%, #14202b 100%);
  border-top: 1px solid var(--ve96-border);
  height: 62px;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.4);
}
.ve96-bottom-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: var(--ve96-text-muted); cursor: pointer;
  font-size: 1.05rem; font-weight: 600; text-decoration: none;
  position: relative; padding: 4px 0; min-width: 60px; min-height: 60px;
  transition: color 0.2s ease;
}
.ve96-bottom-nav-item i, .ve96-bottom-nav-item .material-icons-outlined,
.ve96-bottom-nav-item ion-icon {
  font-size: 2.2rem; line-height: 1; transition: transform 0.2s ease;
}
.ve96-bottom-nav-item:active { transform: scale(0.92); }
.ve96-bottom-nav-item:hover { color: var(--ve96-accent); }
.ve96-bottom-nav-item:hover i, .ve96-bottom-nav-item:hover .material-icons-outlined,
.ve96-bottom-nav-item:hover ion-icon { transform: translateY(-2px); }
.ve96-bottom-nav-item.active { color: var(--ve96-accent); }
.ve96-bottom-nav-item.active::before {
  content: ''; position: absolute; top: 0; left: 30%; right: 30%;
  height: 3px; background: var(--ve96-accent); border-radius: 0 0 3px 3px;
}
.ve96-nav-badge {
  position: absolute; top: 4px; right: 22%;
  background: var(--ve96-danger); color: #fff;
  font-size: 0.95rem; font-weight: 700; padding: 1px 5px;
  border-radius: 8px; line-height: 1.2;
}
.ve96-nav-fab {
  flex: 0 0 56px; align-self: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ve96-accent), #e09b2c);
  color: #2a1d05; margin-top: -22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(245,185,74,0.5);
  border: 3px solid #14202b;
}

/* ---------- Back to top ---------- */
.ve96-back-top {
  position: fixed; right: 12px; bottom: 74px; z-index: 900;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ve96-primary); color: #fff; border: none;
  font-size: 1.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.ve96-back-top.ve96-back-top-show { opacity: 1; visibility: visible; }

/* ---------- Reveal animation ---------- */
.ve96-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.ve96-reveal.ve96-reveal-in { opacity: 1; transform: none; }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  body { background: radial-gradient(circle at top, #2d4050 0%, #1c2733 100%); }
  .ve96-header-inner { max-width: 960px; padding: 10px 24px; min-height: 62px; }
  .ve96-container, .ve96-wrapper { max-width: 960px; }
  .ve96-bottom-nav { display: none; }
  main { padding-bottom: 40px; }
  .ve96-game-grid { grid-template-columns: repeat(6, 1fr); }
  .ve96-grid-2 { grid-template-columns: repeat(3, 1fr); }
  .ve96-grid-4 { grid-template-columns: repeat(6, 1fr); }
  .ve96-footer-cols { grid-template-columns: repeat(4, 1fr); }
  .ve96-carousel-slide { height: 280px; }
}

/* ---------- Tiny utility ---------- */
.ve96-text-accent { color: var(--ve96-accent); }
.ve96-text-muted { color: var(--ve96-text-muted); }
.ve96-mt-12 { margin-top: 12px; }
.ve96-mt-16 { margin-top: 16px; }
.ve96-divider { height: 1px; background: var(--ve96-border); margin: 14px 0; border: none; }
.ve96-promise-bar {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 14px;
}
.ve96-promise {
  flex: 1 1 auto; min-width: 95px; text-align: center;
  background: var(--ve96-bg-soft); border: 1px solid var(--ve96-border);
  padding: 8px; border-radius: 10px; font-size: 1.15rem; color: var(--ve96-text-muted);
}
.ve96-promise i { display: block; font-size: 1.6rem; color: var(--ve96-accent); margin-bottom: 2px; }
