/* ============================================================
 * playtime legit - layout.css
 * All custom classes use the "vf06-" prefix.
 * Mobile-first design (max-width: 430px primary target).
 * Palette: #ADFF2F | #FFB347 | #FF5722 | #32CD32 | #0F0F23
 * ============================================================ */

:root {
  --vf06-primary: #ADFF2F;
  --vf06-accent: #FFB347;
  --vf06-hot: #FF5722;
  --vf06-green: #32CD32;
  --vf06-bg: #0F0F23;
  --vf06-bg-2: #14142b;
  --vf06-bg-3: #1b1b3a;
  --vf06-text: #f5f7ff;
  --vf06-muted: #b6bcd6;
  --vf06-line: rgba(173, 255, 47, 0.18);
  --vf06-radius: 14px;
  --vf06-radius-lg: 22px;
  --vf06-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  --vf06-header-h: 60px;
  --vf06-bottom-h: 62px;
  --vf06-grad: linear-gradient(135deg, #ADFF2F 0%, #32CD32 60%, #FFB347 120%);
  --vf06-grad-hot: linear-gradient(135deg, #FF5722 0%, #FFB347 100%);
}

* { 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, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 20% 0%, #1a1a3e 0%, var(--vf06-bg) 55%);
  color: var(--vf06-text);
  line-height: 1.5;
  font-size: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--vf06-primary); text-decoration: none; }
a:hover { color: var(--vf06-accent); }

.vf06-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.vf06-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===================== HEADER ===================== */
.vf06-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--vf06-header-h);
  background: rgba(15, 15, 35, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vf06-line);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.vf06-header-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.vf06-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}

.vf06-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--vf06-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vf06-bg);
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(173, 255, 47, 0.4);
  flex-shrink: 0;
}

.vf06-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.vf06-logo-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--vf06-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vf06-logo-sub {
  font-size: 1rem;
  color: var(--vf06-primary);
  letter-spacing: 0.5px;
}

.vf06-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vf06-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 40px;
  text-decoration: none;
  font-family: inherit;
}

.vf06-btn-primary {
  background: var(--vf06-grad);
  color: var(--vf06-bg);
  box-shadow: 0 4px 14px rgba(173, 255, 47, 0.35);
}

.vf06-btn-primary:hover {
  transform: translateY(-1px);
  color: var(--vf06-bg);
  box-shadow: 0 6px 18px rgba(173, 255, 47, 0.5);
}

.vf06-btn-outline {
  background: transparent;
  color: var(--vf06-primary);
  border: 1.5px solid var(--vf06-primary);
}

.vf06-btn-outline:hover {
  background: rgba(173, 255, 47, 0.12);
  color: var(--vf06-primary);
}

.vf06-btn-hot {
  background: var(--vf06-grad-hot);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}

.vf06-btn-hot:hover { color: #fff; transform: translateY(-1px); }

.vf06-btn-block {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.5rem;
}

.vf06-menu-btn {
  background: transparent;
  border: none;
  color: var(--vf06-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.vf06-menu-btn:hover { background: rgba(173, 255, 47, 0.1); }

/* ===================== MOBILE MENU ===================== */
.vf06-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1500;
}

.vf06-overlay.vf06-visible {
  opacity: 1;
  visibility: visible;
}

.vf06-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: var(--vf06-bg-2);
  border-left: 1px solid var(--vf06-line);
  transform: translateX(105%);
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 1.6rem 1.4rem;
  overflow-y: auto;
}

.vf06-mobile-menu.vf06-open { transform: translateX(0); }

.vf06-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--vf06-line);
  margin-bottom: 1.2rem;
}

.vf06-menu-head h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--vf06-primary);
}

.vf06-menu-close {
  background: transparent;
  border: none;
  color: var(--vf06-text);
  font-size: 2.2rem;
  cursor: pointer;
}

.vf06-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vf06-menu-list li { margin-bottom: 0.4rem; }

.vf06-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0.8rem;
  border-radius: 10px;
  color: var(--vf06-text);
  font-size: 1.4rem;
  font-weight: 600;
  transition: background 0.15s;
}

.vf06-menu-list a:hover {
  background: rgba(173, 255, 47, 0.1);
  color: var(--vf06-primary);
}

.vf06-menu-list .material-icons,
.vf06-menu-list .fas,
.vf06-menu-list .bi {
  font-size: 2rem;
  color: var(--vf06-accent);
}

.vf06-menu-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ===================== MAIN ===================== */
main {
  padding-top: calc(var(--vf06-header-h) + 8px);
  padding-bottom: 1rem;
}

.vf06-section {
  padding: 2.2rem 0;
}

.vf06-section-alt {
  background: linear-gradient(180deg, rgba(20, 20, 43, 0.7) 0%, rgba(15, 15, 35, 0.4) 100%);
  border-top: 1px solid var(--vf06-line);
  border-bottom: 1px solid var(--vf06-line);
}

.vf06-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 0.6rem;
}

.vf06-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: var(--vf06-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vf06-section-title .accent { color: var(--vf06-primary); }
.vf06-section-title .accent-hot { color: var(--vf06-hot); }

.vf06-section-more {
  font-size: 1.2rem;
  color: var(--vf06-accent);
  font-weight: 600;
}

/* ===================== HERO CAROUSEL ===================== */
.vf06-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--vf06-radius-lg);
  box-shadow: var(--vf06-shadow);
  margin: 0.8rem 0 1.6rem;
}

.vf06-hero-viewport {
  overflow: hidden;
  border-radius: var(--vf06-radius-lg);
}

.vf06-hero-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.vf06-hero-slide {
  min-width: 100%;
  position: relative;
  display: block;
}

.vf06-hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vf06-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vf06-hero-caption h2 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.vf06-hero-caption p {
  margin: 0;
  font-size: 1.3rem;
  color: var(--vf06-accent);
}

.vf06-hero-dots {
  position: absolute;
  bottom: 0.6rem;
  right: 0.8rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.vf06-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.vf06-hero-dot.vf06-active {
  background: var(--vf06-primary);
  transform: scale(1.4);
}

/* ===================== H1 INTRO ===================== */
.vf06-h1 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0.4rem 0 0.8rem;
  color: var(--vf06-text);
}

.vf06-h1 .accent { color: var(--vf06-primary); }

.vf06-lead {
  font-size: 1.4rem;
  color: var(--vf06-muted);
  margin: 0 0 1.4rem;
}

/* ===================== FEATURE STRIP ===================== */
.vf06-feature-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 0.4rem 0 1.4rem;
}

.vf06-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--vf06-bg-2);
  border: 1px solid var(--vf06-line);
  border-radius: var(--vf06-radius);
  padding: 0.9rem;
  font-size: 1.2rem;
  color: var(--vf06-text);
}

.vf06-feature .material-icons,
.vf06-feature .fas,
.vf06-feature .bi {
  font-size: 2rem;
  color: var(--vf06-primary);
  flex-shrink: 0;
}

.vf06-feature strong { color: var(--vf06-accent); }

/* ===================== GAME GRID ===================== */
.vf06-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.vf06-card {
  background: var(--vf06-bg-2);
  border: 1px solid var(--vf06-line);
  border-radius: var(--vf06-radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
  cursor: pointer;
}

.vf06-card:hover {
  transform: translateY(-3px);
  border-color: var(--vf06-primary);
  box-shadow: 0 8px 20px rgba(173, 255, 47, 0.25);
}

.vf06-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0a1c;
}

.vf06-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf06-card-badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  background: var(--vf06-grad-hot);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.vf06-card-body {
  padding: 0.5rem 0.6rem 0.7rem;
  text-align: center;
}

.vf06-card-title {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--vf06-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.vf06-card-tag {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 1rem;
  color: var(--vf06-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===================== HIGHLIGHT / CTA BANNER ===================== */
.vf06-banner {
  background: var(--vf06-grad);
  border-radius: var(--vf06-radius-lg);
  padding: 1.6rem 1.4rem;
  color: var(--vf06-bg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.4rem 0;
  box-shadow: 0 8px 22px rgba(173, 255, 47, 0.25);
}

.vf06-banner h3 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
}

.vf06-banner p {
  margin: 0;
  font-size: 1.3rem;
  color: #1a1a2e;
}

.vf06-banner-dark {
  background: linear-gradient(135deg, #FF5722 0%, #FFB347 100%);
  color: #fff;
}

.vf06-banner-dark p { color: #fff7ec; }

/* ===================== RTP TABLE ===================== */
.vf06-rtp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
}

.vf06-rtp-row {
  background: var(--vf06-bg-2);
  border: 1px solid var(--vf06-line);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vf06-rtp-row .name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vf06-text);
}

.vf06-rtp-row .val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vf06-primary);
}

.vf06-rtp-row .label {
  font-size: 1rem;
  color: var(--vf06-muted);
}

/* ===================== TESTIMONIAL ===================== */
.vf06-testi {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.vf06-testi-card {
  background: var(--vf06-bg-2);
  border-left: 3px solid var(--vf06-primary);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.vf06-testi-card .who {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vf06-accent);
  margin-bottom: 0.2rem;
}

.vf06-testi-card .stars {
  color: #FFB347;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.vf06-testi-card p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--vf06-text);
}

/* ===================== PAYMENTS ===================== */
.vf06-payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
}

.vf06-pay {
  background: var(--vf06-bg-2);
  border: 1px solid var(--vf06-line);
  border-radius: 10px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--vf06-text);
  font-weight: 600;
}

.vf06-pay .material-icons,
.vf06-pay .fas {
  font-size: 1.9rem;
  color: var(--vf06-primary);
  display: block;
  margin-bottom: 0.2rem;
}

/* ===================== WINNERS ===================== */
.vf06-winners {
  background: var(--vf06-bg-2);
  border: 1px solid var(--vf06-line);
  border-radius: var(--vf06-radius);
  overflow: hidden;
}

.vf06-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--vf06-line);
  font-size: 1.2rem;
}

.vf06-winner-row:last-child { border-bottom: none; }

.vf06-winner-row .who { color: var(--vf06-accent); font-weight: 600; }
.vf06-winner-row .game { color: var(--vf06-muted); font-size: 1.1rem; }
.vf06-winner-row .amt { color: var(--vf06-primary); font-weight: 800; }

/* ===================== FAQ ===================== */
.vf06-faq-item {
  background: var(--vf06-bg-2);
  border: 1px solid var(--vf06-line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.7rem;
}

.vf06-faq-item h4 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  color: var(--vf06-primary);
}

.vf06-faq-item p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--vf06-text);
}

/* ===================== SEO TEXT ===================== */
.vf06-seo-text {
  font-size: 1.35rem;
  color: var(--vf06-muted);
  line-height: 1.7;
}

.vf06-seo-text h2 {
  color: var(--vf06-text);
  font-size: 1.9rem;
  margin: 1.4rem 0 0.6rem;
}

.vf06-seo-text h3 {
  color: var(--vf06-accent);
  font-size: 1.55rem;
  margin: 1rem 0 0.4rem;
}

.vf06-seo-text p { margin: 0 0 0.8rem; }

.vf06-seo-text ul {
  margin: 0 0 0.8rem;
  padding-left: 1.4rem;
}

.vf06-seo-text li {
  margin-bottom: 0.3rem;
}

.vf06-seo-text strong { color: var(--vf06-primary); }

/* ===================== PROMO INLINE LINK ===================== */
.vf06-promo-link {
  color: var(--vf06-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.vf06-promo-link:hover { color: var(--vf06-accent); }

/* ===================== FOOTER ===================== */
.vf06-footer {
  background: var(--vf06-bg-2);
  border-top: 1px solid var(--vf06-line);
  padding: 2rem 0 7rem;
  margin-top: 2rem;
}

.vf06-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.vf06-footer-col h4 {
  font-size: 1.3rem;
  color: var(--vf06-primary);
  margin: 0 0 0.6rem;
}

.vf06-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vf06-footer-col li { margin-bottom: 0.4rem; }

.vf06-footer-col a {
  color: var(--vf06-text);
  font-size: 1.2rem;
  transition: color 0.15s;
}

.vf06-footer-col a:hover { color: var(--vf06-primary); }

.vf06-footer-brand {
  font-size: 1.25rem;
  color: var(--vf06-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.vf06-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.vf06-footer-promo .vf06-btn {
  padding: 0.6rem 1rem;
  font-size: 1.15rem;
}

.vf06-footer-bottom {
  text-align: center;
  font-size: 1.1rem;
  color: var(--vf06-muted);
  border-top: 1px solid var(--vf06-line);
  padding-top: 1rem;
  margin-top: 1rem;
}

.vf06-18plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--vf06-hot);
  color: var(--vf06-hot);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0.4rem;
}

/* ===================== BOTTOM NAV ===================== */
.vf06-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--vf06-bottom-h);
  background: rgba(10, 10, 28, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--vf06-line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0.3rem 0.2rem;
}

.vf06-bottom-btn {
  flex: 1;
  min-width: 60px;
  min-height: 56px;
  background: transparent;
  border: none;
  color: var(--vf06-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  padding: 0.2rem;
  font-family: inherit;
}

.vf06-bottom-btn .material-icons,
.vf06-bottom-btn .fas,
.vf06-bottom-btn .bi,
.vf06-bottom-btn .ion {
  font-size: 22px;
}

.vf06-bottom-btn:hover {
  color: var(--vf06-primary);
  transform: translateY(-1px);
}

.vf06-bottom-btn.vf06-active {
  color: var(--vf06-primary);
}

.vf06-bottom-btn.vf06-hot {
  position: relative;
}

.vf06-bottom-btn.vf06-hot::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vf06-grad-hot);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.5);
  z-index: -1;
}

.vf06-bottom-btn.vf06-hot .material-icons,
.vf06-bottom-btn.vf06-hot .fas {
  color: #fff;
}

.vf06-bottom-label {
  font-size: 1rem;
  letter-spacing: 0.2px;
  font-weight: 600;
}

/* ===================== REVEAL ANIM ===================== */
.vf06-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vf06-reveal.vf06-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== TABLET / DESKTOP ===================== */
@media (min-width: 600px) {
  .vf06-grid { grid-template-columns: repeat(4, 1fr); }
  .vf06-feature-strip { grid-template-columns: repeat(4, 1fr); }
  .vf06-payments { grid-template-columns: repeat(5, 1fr); }
  .vf06-rtp { grid-template-columns: repeat(3, 1fr); }
  .vf06-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 769px) {
  .vf06-bottom-nav { display: none; }
  .vf06-footer { padding-bottom: 2rem; }
  main { padding-bottom: 2rem; }
  .vf06-grid { grid-template-columns: repeat(5, 1fr); }
  .vf06-menu-btn { display: none; }
}

@media (max-width: 768px) {
  main { padding-bottom: calc(var(--vf06-bottom-h) + 1.2rem); }
}

/* ===================== UTIL ===================== */
.vf06-text-center { text-align: center; }
.vf06-mt-1 { margin-top: 0.6rem; }
.vf06-mt-2 { margin-top: 1.2rem; }
.vf06-mb-2 { margin-bottom: 1.2rem; }
.vf06-hidden { display: none !important; }
