/* Poppy Playtime layout - v6d0 prefix */
:root {
  --v6d0-bg: #333333;
  --v6d0-bg-soft: #3d3d3d;
  --v6d0-bg-card: #2a2a2a;
  --v6d0-text: #F5F5F5;
  --v6d0-text-muted: #c8c8c8;
  --v6d0-primary: #DEB887;
  --v6d0-secondary: #A0522D;
  --v6d0-accent: #e8c99a;
  --v6d0-border: #4a4a4a;
  --v6d0-shadow: rgba(0, 0, 0, 0.35);
  --v6d0-header-h: 5.6rem;
  --v6d0-bottom-h: 6.2rem;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--v6d0-bg); color: var(--v6d0-text);
  line-height: 1.5rem; font-size: 1.4rem; min-height: 100vh; overflow-x: hidden;
}
a { color: var(--v6d0-primary); text-decoration: none; }
a:hover { color: var(--v6d0-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.v6d0-wrapper {
  width: 100%; max-width: 430px; margin: 0 auto; min-height: 100vh;
  position: relative; background: var(--v6d0-bg);
}
.v6d0-container { width: 100%; padding: 0 1.2rem; }

/* Header */
.v6d0-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: var(--v6d0-header-h);
  background: linear-gradient(180deg, #2a2a2a, #333);
  border-bottom: 1px solid var(--v6d0-border); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem; box-shadow: 0 2px 12px var(--v6d0-shadow);
}
.v6d0-logo-area { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.v6d0-logo-area img { width: 3.2rem; height: 3.2rem; border-radius: 0.6rem; object-fit: cover; }
.v6d0-logo-text {
  font-size: 1.4rem; font-weight: 700; color: var(--v6d0-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 12rem;
}
.v6d0-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v6d0-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 4.4rem; min-width: 4.4rem; padding: 0.8rem 1.2rem;
  border-radius: 0.8rem; font-size: 1.2rem; font-weight: 700;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.v6d0-btn:active { transform: scale(0.96); }
.v6d0-btn-primary {
  background: linear-gradient(135deg, var(--v6d0-primary), #c9a06a);
  color: #2a2a2a; box-shadow: 0 2px 8px rgba(222, 184, 135, 0.35);
}
.v6d0-btn-primary:hover { color: #1a1a1a; }
.v6d0-btn-secondary {
  background: linear-gradient(135deg, var(--v6d0-secondary), #8b4513);
  color: var(--v6d0-text); box-shadow: 0 2px 8px rgba(160, 82, 45, 0.35);
}
.v6d0-btn-outline {
  border: 1.5px solid var(--v6d0-primary); color: var(--v6d0-primary);
  background: transparent; padding: 0.7rem 1rem;
}
.v6d0-btn-sm { min-height: 3.6rem; min-width: auto; padding: 0.6rem 1rem; font-size: 1.1rem; }
.v6d0-menu-toggle {
  width: 4.4rem; height: 4.4rem; display: flex; align-items: center; justify-content: center;
  color: var(--v6d0-primary); font-size: 2.2rem; border-radius: 0.6rem;
}
.v6d0-menu-toggle:hover { background: var(--v6d0-bg-soft); }

/* Mobile menu */
.v6d0-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9998;
  opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s;
}
.v6d0-overlay-show { opacity: 1; visibility: visible; }
.v6d0-mobile-menu {
  position: fixed; top: 0; right: 0; width: 78%; max-width: 320px; height: 100%;
  background: #2a2a2a; z-index: 9999; transform: translateX(100%);
  transition: transform 0.28s; padding: 2rem 1.6rem; overflow-y: auto;
  box-shadow: -4px 0 20px var(--v6d0-shadow);
}
.v6d0-menu-open { transform: translateX(0); }
.v6d0-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--v6d0-border);
}
.v6d0-menu-header h3 { font-size: 1.6rem; color: var(--v6d0-primary); }
.v6d0-menu-close {
  width: 4.4rem; height: 4.4rem; display: flex; align-items: center;
  justify-content: center; font-size: 2.4rem; color: var(--v6d0-text); border-radius: 0.6rem;
}
.v6d0-menu-nav a {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1rem;
  color: var(--v6d0-text); font-size: 1.4rem; border-radius: 0.8rem;
  margin-bottom: 0.4rem; min-height: 4.4rem; transition: background 0.2s;
}
.v6d0-menu-nav a:hover { background: var(--v6d0-bg-soft); color: var(--v6d0-primary); }
.v6d0-menu-nav a i, .v6d0-menu-nav a .material-icons { font-size: 2rem; width: 2.4rem; color: var(--v6d0-primary); }

/* Main */
.v6d0-main { padding-top: calc(var(--v6d0-header-h) + 1rem); padding-bottom: 2rem; }
@media (max-width: 768px) { .v6d0-main { padding-bottom: 8rem; } }

/* Carousel */
.v6d0-carousel {
  position: relative; width: 100%; overflow: hidden; border-radius: 1.2rem;
  margin-bottom: 1.6rem; box-shadow: 0 4px 16px var(--v6d0-shadow);
}
.v6d0-carousel-track { display: flex; transition: transform 0.4s; }
.v6d0-carousel-slide { min-width: 100%; cursor: pointer; }
.v6d0-carousel-slide img { width: 100%; height: 16rem; object-fit: cover; }
.v6d0-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3.6rem; height: 3.6rem; background: rgba(0,0,0,0.45);
  color: var(--v6d0-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; z-index: 2;
}
.v6d0-carousel-prev { left: 0.8rem; }
.v6d0-carousel-next { right: 0.8rem; }
.v6d0-carousel-dots {
  position: absolute; bottom: 0.8rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 2;
}
.v6d0-carousel-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(245,245,245,0.4); transition: background 0.2s, transform 0.2s;
}
.v6d0-dot-active { background: var(--v6d0-primary); transform: scale(1.25); }

/* Hero & sections */
.v6d0-hero { text-align: center; padding: 1.2rem 0 1.6rem; }
.v6d0-hero h1 {
  font-size: 2rem; line-height: 1.35; color: var(--v6d0-primary);
  margin-bottom: 1rem; font-weight: 800;
}
.v6d0-hero p { font-size: 1.3rem; color: var(--v6d0-text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.v6d0-section { margin-bottom: 2.4rem; }
.v6d0-section-title {
  font-size: 1.7rem; color: var(--v6d0-primary); margin-bottom: 1.2rem;
  padding-left: 0.8rem; border-left: 3px solid var(--v6d0-secondary); font-weight: 700; line-height: 1.4;
}
.v6d0-section-sub { font-size: 1.5rem; color: var(--v6d0-accent); margin: 1.6rem 0 1rem; font-weight: 600; }
.v6d0-text-block { font-size: 1.3rem; line-height: 1.7; color: var(--v6d0-text-muted); margin-bottom: 1.2rem; }
.v6d0-text-block a, .v6d0-text-link {
  font-weight: 700; color: var(--v6d0-primary) !important;
  text-decoration: underline !important; cursor: pointer;
}

/* Game grid */
.v6d0-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-bottom: 1.2rem; }
.v6d0-game-card {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: transform 0.15s; min-width: 0;
}
.v6d0-game-card:active { transform: scale(0.95); }
.v6d0-game-card img {
  width: 100%; aspect-ratio: 1; border-radius: 1rem; object-fit: cover;
  border: 1.5px solid var(--v6d0-border); background: var(--v6d0-bg-card);
  box-shadow: 0 2px 8px var(--v6d0-shadow);
}
.v6d0-game-card:hover img { border-color: var(--v6d0-primary); }
.v6d0-game-card span {
  font-size: 1rem; color: var(--v6d0-text-muted); text-align: center;
  margin-top: 0.4rem; line-height: 1.3; max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%;
}

/* Cards / features */
.v6d0-card {
  background: var(--v6d0-bg-card); border: 1px solid var(--v6d0-border);
  border-radius: 1.2rem; padding: 1.4rem; margin-bottom: 1.2rem;
  box-shadow: 0 2px 10px var(--v6d0-shadow);
}
.v6d0-card h3 {
  font-size: 1.5rem; color: var(--v6d0-primary); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.v6d0-card p { font-size: 1.3rem; color: var(--v6d0-text-muted); line-height: 1.6; }
.v6d0-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.v6d0-feature-item {
  background: var(--v6d0-bg-soft); border-radius: 1rem; padding: 1.2rem;
  text-align: center; border: 1px solid var(--v6d0-border);
}
.v6d0-feature-item i, .v6d0-feature-item .material-icons, .v6d0-feature-item .bi {
  font-size: 2.4rem; color: var(--v6d0-primary); margin-bottom: 0.6rem; display: block;
}
.v6d0-feature-item h4 { font-size: 1.3rem; color: var(--v6d0-text); margin-bottom: 0.4rem; }
.v6d0-feature-item p { font-size: 1.1rem; color: var(--v6d0-text-muted); line-height: 1.4; }

/* RTP / FAQ / testimonial */
.v6d0-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; margin-bottom: 1.2rem; }
.v6d0-rtp-table th, .v6d0-rtp-table td {
  padding: 0.8rem 0.6rem; text-align: left; border-bottom: 1px solid var(--v6d0-border);
}
.v6d0-rtp-table th { color: var(--v6d0-primary); font-weight: 700; background: var(--v6d0-bg-soft); }
.v6d0-rtp-table td { color: var(--v6d0-text-muted); }
.v6d0-rtp-high { color: #7dcea0 !important; font-weight: 700; }
.v6d0-faq-item {
  background: var(--v6d0-bg-card); border: 1px solid var(--v6d0-border);
  border-radius: 1rem; padding: 1.2rem; margin-bottom: 0.8rem;
}
.v6d0-faq-item h3 { font-size: 1.4rem; color: var(--v6d0-primary); margin-bottom: 0.6rem; line-height: 1.4; }
.v6d0-faq-item p { font-size: 1.2rem; color: var(--v6d0-text-muted); line-height: 1.6; }
.v6d0-testimonial {
  background: var(--v6d0-bg-soft); border-left: 3px solid var(--v6d0-secondary);
  border-radius: 0 1rem 1rem 0; padding: 1.2rem; margin-bottom: 1rem;
}
.v6d0-testimonial p {
  font-size: 1.2rem; color: var(--v6d0-text-muted); font-style: italic;
  line-height: 1.6; margin-bottom: 0.6rem;
}
.v6d0-testimonial span { font-size: 1.1rem; color: var(--v6d0-primary); font-weight: 600; }

/* Winners / payments */
.v6d0-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 0; border-bottom: 1px solid var(--v6d0-border); font-size: 1.2rem;
}
.v6d0-winner-name { color: var(--v6d0-text); font-weight: 600; }
.v6d0-winner-game { color: var(--v6d0-text-muted); }
.v6d0-winner-amt { color: var(--v6d0-primary); font-weight: 700; }
.v6d0-payment-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.v6d0-payment-item {
  background: var(--v6d0-bg-soft); border: 1px solid var(--v6d0-border);
  border-radius: 0.8rem; padding: 0.8rem 1.2rem; font-size: 1.2rem;
  color: var(--v6d0-text); display: flex; align-items: center; gap: 0.5rem;
}
.v6d0-payment-item i { color: var(--v6d0-primary); }

/* CTA / steps */
.v6d0-cta-box {
  background: linear-gradient(135deg, #3d2a1a, #2a2a2a 50%, #3d2a1a);
  border: 1.5px solid var(--v6d0-secondary); border-radius: 1.2rem;
  padding: 2rem 1.4rem; text-align: center; margin: 1.6rem 0;
}
.v6d0-cta-box h2, .v6d0-cta-box h3 { color: var(--v6d0-primary); font-size: 1.7rem; margin-bottom: 0.8rem; }
.v6d0-cta-box p { color: var(--v6d0-text-muted); font-size: 1.3rem; margin-bottom: 1.4rem; line-height: 1.6; }
.v6d0-cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.v6d0-step { display: flex; gap: 1.2rem; margin-bottom: 1.2rem; align-items: flex-start; }
.v6d0-step-num {
  flex-shrink: 0; width: 3.2rem; height: 3.2rem;
  background: linear-gradient(135deg, var(--v6d0-primary), var(--v6d0-secondary));
  color: #2a2a2a; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 1.3rem;
}
.v6d0-step-body h4 { font-size: 1.4rem; color: var(--v6d0-text); margin-bottom: 0.3rem; }
.v6d0-step-body p { font-size: 1.2rem; color: var(--v6d0-text-muted); line-height: 1.5; }

/* Footer */
.v6d0-footer {
  background: #2a2a2a; border-top: 1px solid var(--v6d0-border);
  padding: 2.4rem 1.2rem 2rem; margin-top: 1rem;
}
.v6d0-footer-brand { text-align: center; margin-bottom: 1.6rem; }
.v6d0-footer-brand h3 { font-size: 1.6rem; color: var(--v6d0-primary); margin-bottom: 0.6rem; }
.v6d0-footer-brand p { font-size: 1.2rem; color: var(--v6d0-text-muted); line-height: 1.6; }
.v6d0-footer-promo { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-bottom: 1.6rem; }
.v6d0-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.2rem; margin-bottom: 1.6rem; }
.v6d0-footer-links a {
  font-size: 1.2rem; color: var(--v6d0-text-muted); padding: 0.4rem 0;
  min-height: 3.2rem; display: flex; align-items: center;
}
.v6d0-footer-links a:hover { color: var(--v6d0-primary); }
.v6d0-footer-copy {
  text-align: center; font-size: 1.1rem; color: #888;
  padding-top: 1.2rem; border-top: 1px solid var(--v6d0-border);
}

/* Bottom nav */
.v6d0-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: var(--v6d0-bottom-h);
  background: linear-gradient(0deg, #1f1f1f, #2a2a2a);
  border-top: 2px solid var(--v6d0-secondary);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000; box-shadow: 0 -4px 16px var(--v6d0-shadow); padding: 0 0.4rem;
}
.v6d0-bottom-nav a, .v6d0-bottom-nav button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 6rem; min-height: 6rem; gap: 0.3rem; color: var(--v6d0-text-muted);
  font-size: 1rem; transition: color 0.2s, transform 0.15s; border-radius: 1rem; padding: 0.4rem;
}
.v6d0-bottom-nav a i, .v6d0-bottom-nav button i,
.v6d0-bottom-nav a .material-icons, .v6d0-bottom-nav button .material-icons,
.v6d0-bottom-nav a .bi, .v6d0-bottom-nav button .bi { font-size: 2.2rem; line-height: 1; }
.v6d0-bottom-nav a .material-icons, .v6d0-bottom-nav button .material-icons { font-size: 2.4rem; }
.v6d0-bottom-nav a:active, .v6d0-bottom-nav button:active { transform: scale(0.9); }
.v6d0-bottom-nav a:hover, .v6d0-bottom-nav button:hover, .v6d0-nav-active { color: var(--v6d0-primary) !important; }
.v6d0-nav-active { position: relative; }
.v6d0-nav-active::after {
  content: ''; position: absolute; top: 0.2rem; width: 0.5rem; height: 0.5rem;
  background: var(--v6d0-primary); border-radius: 50%;
}
@media (min-width: 769px) {
  .v6d0-bottom-nav { display: none; }
  .v6d0-wrapper { box-shadow: 0 0 40px rgba(0,0,0,0.5); }
}

/* Utils */
.v6d0-mt-1 { margin-top: 1rem; }
.v6d0-mb-1 { margin-bottom: 1rem; }
.v6d0-text-center { text-align: center; }
.v6d0-flex-center { display: flex; justify-content: center; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.v6d0-list { margin: 0.8rem 0 1.2rem 1.6rem; }
.v6d0-list li { list-style: disc; font-size: 1.3rem; color: var(--v6d0-text-muted); line-height: 1.6; margin-bottom: 0.4rem; }
.v6d0-list li::marker { color: var(--v6d0-primary); }
