/* niceph21 theme stylesheet - prefix vd26- */
/* Mobile-first design, root font 62.5% for rem units */

:root {
  --vd26-primary: #DDA0DD; --vd26-secondary: #B2DFDB; --vd26-accent: #F5DEB3;
  --vd26-light: #E0FFFF; --vd26-bg: #262626; --vd26-bg-deep: #1a1a1a; --vd26-bg-soft: #333333;
  --vd26-text: #E0FFFF; --vd26-text-soft: #F5DEB3; --vd26-text-muted: #B2DFDB;
  --vd26-border: rgba(221, 160, 221, 0.25);
  --vd26-gold: #F5DEB3; --vd26-pink: #DDA0DD; --vd26-mint: #B2DFDB; --vd26-cyan: #E0FFFF;
  --vd26-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --vd26-radius: 14px; --vd26-radius-lg: 22px; --vd26-transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--vd26-bg); color: var(--vd26-text);
  line-height: 1.5rem; font-size: 1.5rem;
  max-width: 430px; margin: 0 auto; min-height: 100vh;
  position: relative; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--vd26-gold); text-decoration: none; transition: color var(--vd26-transition); }
a:hover, a:focus { color: var(--vd26-cyan); }
.vd26-container { width: 100%; padding: 0 1.2rem; }
.vd26-wrapper { max-width: 430px; margin: 0 auto; }

/* ============ HEADER ============ */
.vd26-header {
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2233 60%, #262626 100%);
  border-bottom: 1px solid var(--vd26-border);
  padding: 0.8rem 1rem; display: flex; align-items: center;
  justify-content: space-between; gap: 0.8rem;
}
.vd26-logo { display: flex; align-items: center; gap: 0.6rem; flex: 0 0 auto; }
.vd26-logo img { width: 28px; height: 28px; border-radius: 6px; }
.vd26-logo .vd26-brand {
  font-size: 1.7rem; font-weight: 700;
  background: linear-gradient(90deg, #F5DEB3, #DDA0DD);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; letter-spacing: 0.3px;
}
.vd26-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.vd26-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 36px; padding: 0.6rem 1.2rem; border: none; border-radius: 999px;
  font-size: 1.35rem; font-weight: 600; cursor: pointer;
  transition: transform var(--vd26-transition), box-shadow var(--vd26-transition), background var(--vd26-transition);
  color: #1a1a1a; font-family: inherit;
}
.vd26-btn:active { transform: scale(0.96); }
.vd26-btn-register { background: linear-gradient(135deg, #F5DEB3, #DDA0DD); box-shadow: 0 3px 12px rgba(221, 160, 221, 0.35); }
.vd26-btn-login { background: linear-gradient(135deg, #B2DFDB, #E0FFFF); box-shadow: 0 3px 12px rgba(178, 223, 219, 0.35); }
.vd26-btn-ghost { background: transparent; border: 1px solid var(--vd26-primary); color: var(--vd26-pink); }
.vd26-menu-toggle {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--vd26-border); border-radius: 10px;
  color: var(--vd26-text); cursor: pointer; font-size: 1.8rem;
}

/* ============ MOBILE MENU ============ */
.vd26-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 78%; max-width: 320px; height: 100vh;
  background: var(--vd26-bg-deep); z-index: 9999; padding: 1.8rem 1.4rem;
  overflow-y: auto; transition: right 0.3s ease; border-left: 1px solid var(--vd26-border);
}
.vd26-mobile-menu.vd26-menu-open { right: 0; }
.vd26-mobile-menu h3 {
  color: var(--vd26-gold); font-size: 1.6rem; margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--vd26-border);
}
.vd26-mobile-menu a {
  display: block; padding: 1rem 0.6rem; color: var(--vd26-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 1.4rem;
}
.vd26-mobile-menu a:hover { background: rgba(221, 160, 221, 0.08); }
.vd26-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55);
  z-index: 9998; opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
}
.vd26-backdrop.vd26-backdrop-show { opacity: 1; visibility: visible; }

/* ============ HERO CAROUSEL ============ */
.vd26-carousel {
  position: relative; width: 100%; border-radius: var(--vd26-radius-lg);
  overflow: hidden; margin: 1rem 0; box-shadow: var(--vd26-shadow);
}
.vd26-carousel-track { position: relative; width: 100%; height: 200px; }
.vd26-carousel-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.5s ease; cursor: pointer;
}
.vd26-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.vd26-carousel-slide.vd26-slide-active { opacity: 1; }
.vd26-carousel-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 1.6rem 1.2rem 1.2rem; color: #fff;
}
.vd26-carousel-overlay h2 { font-size: 1.8rem; color: var(--vd26-gold); margin-bottom: 0.4rem; }
.vd26-carousel-overlay p { font-size: 1.3rem; color: var(--vd26-cyan); }
.vd26-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
}
.vd26-carousel-arrow.vd26-prev { left: 8px; }
.vd26-carousel-arrow.vd26-next { right: 8px; }
.vd26-carousel-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.vd26-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.45); border: none; cursor: pointer; padding: 0;
}
.vd26-carousel-dot.vd26-dot-active { background: var(--vd26-gold); width: 22px; border-radius: 4px; }

/* ============ SECTIONS ============ */
main { padding-bottom: 90px; padding-top: 1rem; }
.vd26-section { padding: 1.4rem 0; }
.vd26-section-title {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; padding: 0 0.2rem;
}
.vd26-section-title h2 {
  font-size: 1.7rem; color: var(--vd26-gold);
  display: flex; align-items: center; gap: 0.5rem;
}
.vd26-section-title .vd26-more { font-size: 1.2rem; color: var(--vd26-mint); cursor: pointer; }
.vd26-h1 {
  font-size: 2rem; line-height: 1.3;
  background: linear-gradient(90deg, #F5DEB3, #DDA0DD, #B2DFDB);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; text-align: center; margin: 1.2rem 0; padding: 0 0.5rem;
}

/* ============ GAME GRID ============ */
.vd26-game-tabs {
  display: flex; gap: 0.5rem; overflow-x: auto;
  padding: 0.4rem 0; margin-bottom: 0.8rem; scrollbar-width: none;
}
.vd26-game-tabs::-webkit-scrollbar { display: none; }
.vd26-game-tab {
  flex: 0 0 auto; padding: 0.6rem 1.2rem; border-radius: 999px;
  background: var(--vd26-bg-soft); color: var(--vd26-text-muted);
  font-size: 1.25rem; cursor: pointer; white-space: nowrap; border: 1px solid transparent;
}
.vd26-game-tab.vd26-tab-active {
  background: linear-gradient(135deg, #F5DEB3, #DDA0DD);
  color: #1a1a1a; font-weight: 600;
}
.vd26-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.vd26-game-card {
  background: var(--vd26-bg-soft); border-radius: var(--vd26-radius);
  overflow: hidden; cursor: pointer; transition: transform var(--vd26-transition);
  border: 1px solid var(--vd26-border); position: relative;
}
.vd26-game-card:active { transform: scale(0.95); }
.vd26-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.vd26-game-card .vd26-game-name {
  font-size: 1.15rem; color: var(--vd26-text); text-align: center;
  padding: 0.4rem 0.3rem 0.6rem; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.vd26-game-card .vd26-game-tag {
  position: absolute; top: 4px; left: 4px;
  background: linear-gradient(135deg, #DDA0DD, #F5DEB3);
  color: #1a1a1a; font-size: 1rem; padding: 0.1rem 0.5rem;
  border-radius: 6px; font-weight: 600;
}

/* ============ CARDS / MODULES ============ */
.vd26-card {
  background: linear-gradient(135deg, #2a2233 0%, #262626 100%);
  border-radius: var(--vd26-radius-lg); padding: 1.4rem; margin-bottom: 1rem;
  border: 1px solid var(--vd26-border); box-shadow: var(--vd26-shadow);
}
.vd26-card h2 { font-size: 1.7rem; color: var(--vd26-gold); margin-bottom: 0.8rem; }
.vd26-card h3 { font-size: 1.45rem; color: var(--vd26-pink); margin: 0.8rem 0 0.5rem; }
.vd26-card p {
  color: var(--vd26-text-muted); font-size: 1.3rem;
  margin-bottom: 0.8rem; line-height: 1.65;
}
.vd26-card ul { list-style: none; padding-left: 0; }
.vd26-card ul li {
  padding: 0.4rem 0 0.4rem 1.6rem; position: relative;
  color: var(--vd26-text-muted); font-size: 1.3rem; line-height: 1.6;
}
.vd26-card ul li::before { content: '\2726'; position: absolute; left: 0; color: var(--vd26-gold); }
.vd26-promo-inline { color: var(--vd26-gold); font-weight: 700; cursor: pointer; text-decoration: underline; }

/* ============ FAQ ============ */
.vd26-faq-item { border-bottom: 1px solid var(--vd26-border); padding: 0.9rem 0; }
.vd26-faq-item summary {
  color: var(--vd26-gold); font-size: 1.35rem; cursor: pointer;
  font-weight: 600; list-style: none; position: relative; padding-right: 1.6rem;
}
.vd26-faq-item summary::-webkit-details-marker { display: none; }
.vd26-faq-item summary::after { content: '+'; position: absolute; right: 0; color: var(--vd26-pink); font-size: 1.6rem; }
.vd26-faq-item[open] summary::after { content: '-'; }
.vd26-faq-item p { margin-top: 0.6rem; color: var(--vd26-text-muted); font-size: 1.3rem; line-height: 1.6; }

/* ============ RTP GRID ============ */
.vd26-rtp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.vd26-rtp-item { background: var(--vd26-bg-soft); padding: 0.8rem; border-radius: 10px; border: 1px solid var(--vd26-border); }
.vd26-rtp-item .vd26-rtp-name { font-size: 1.2rem; color: var(--vd26-text); margin-bottom: 0.3rem; }
.vd26-rtp-item .vd26-rtp-value { font-size: 1.6rem; color: var(--vd26-gold); font-weight: 700; }
.vd26-rtp-bar {
  width: 100%; height: 6px; background: rgba(255, 255, 255, 0.1);
  border-radius: 3px; overflow: hidden; margin-top: 0.4rem;
}
.vd26-rtp-bar span { display: block; height: 100%; background: linear-gradient(90deg, #B2DFDB, #F5DEB3); }

/* ============ TESTIMONIALS ============ */
.vd26-testimonial {
  background: var(--vd26-bg-soft); border-radius: var(--vd26-radius);
  padding: 1rem; margin-bottom: 0.7rem; border-left: 3px solid var(--vd26-pink);
}
.vd26-testimonial .vd26-stars { color: var(--vd26-gold); font-size: 1.2rem; margin-bottom: 0.4rem; }
.vd26-testimonial p { color: var(--vd26-text-muted); font-size: 1.25rem; line-height: 1.55; }
.vd26-testimonial .vd26-author { margin-top: 0.6rem; color: var(--vd26-pink); font-size: 1.2rem; font-weight: 600; }

/* ============ WINNERS ============ */
.vd26-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0.8rem; background: var(--vd26-bg-soft);
  border-radius: 10px; margin-bottom: 0.5rem; border: 1px solid var(--vd26-border);
}
.vd26-winner-name { color: var(--vd26-text); font-size: 1.25rem; }
.vd26-winner-game { color: var(--vd26-mint); font-size: 1.15rem; }
.vd26-winner-amount { color: var(--vd26-gold); font-weight: 700; font-size: 1.35rem; }

/* ============ PAYMENTS ============ */
.vd26-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.vd26-pay-item {
  background: var(--vd26-bg-soft); padding: 0.8rem 0.4rem; border-radius: 10px;
  text-align: center; border: 1px solid var(--vd26-border);
  font-size: 1.1rem; color: var(--vd26-text-muted);
}
.vd26-pay-item i { font-size: 2rem; color: var(--vd26-pink); display: block; margin-bottom: 0.3rem; }

/* ============ CTA ============ */
.vd26-cta {
  background: linear-gradient(135deg, #DDA0DD 0%, #F5DEB3 100%);
  color: #1a1a1a; padding: 1.6rem; border-radius: var(--vd26-radius-lg);
  text-align: center; margin: 1.2rem 0;
  box-shadow: 0 6px 20px rgba(221, 160, 221, 0.3);
}
.vd26-cta h2 { color: #1a1a1a; margin-bottom: 0.5rem; font-size: 1.8rem; }
.vd26-cta p { color: #333; margin-bottom: 1rem; font-size: 1.3rem; }
.vd26-cta .vd26-btn { background: #1a1a1a; color: var(--vd26-gold); }

/* ============ FOOTER ============ */
.vd26-footer {
  background: var(--vd26-bg-deep); padding: 1.6rem 1.2rem 2rem;
  border-top: 1px solid var(--vd26-border); margin-top: 1rem;
}
.vd26-footer-brand { color: var(--vd26-text-muted); font-size: 1.25rem; line-height: 1.55; margin-bottom: 1rem; }
.vd26-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.vd26-footer-promos .vd26-btn { min-height: 32px; padding: 0.4rem 1rem; font-size: 1.2rem; }
.vd26-footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem; margin-bottom: 1rem;
}
.vd26-footer-links a {
  color: var(--vd26-text-muted); font-size: 1.2rem; padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vd26-footer-copy {
  text-align: center; color: var(--vd26-text-muted); font-size: 1.15rem;
  padding-top: 1rem; border-top: 1px solid var(--vd26-border);
}

/* ============ BOTTOM NAV ============ */
.vd26-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: linear-gradient(180deg, #2a2233 0%, #1a1a1a 100%);
  border-top: 1px solid var(--vd26-border); display: flex;
  justify-content: space-around; align-items: center;
  padding: 0.4rem 0.2rem; z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.5);
}
.vd26-bottom-nav-btn {
  flex: 1; min-width: 60px; min-height: 56px;
  background: transparent; border: none; color: var(--vd26-text-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; cursor: pointer; font-size: 1.05rem; font-family: inherit;
  transition: color var(--vd26-transition), transform var(--vd26-transition); position: relative;
  text-decoration: none;
}
.vd26-bottom-nav-btn .material-icons, .vd26-bottom-nav-btn i { font-size: 22px; }
.vd26-bottom-nav-btn:hover { color: var(--vd26-gold); }
.vd26-bottom-nav-btn:active { transform: scale(0.92); }
.vd26-bottom-nav-btn.vd26-nav-active { color: var(--vd26-pink); }
.vd26-bottom-nav-btn.vd26-nav-active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 3px;
  background: linear-gradient(90deg, #F5DEB3, #DDA0DD); border-radius: 0 0 4px 4px;
}
.vd26-bottom-nav-btn.vd26-nav-promo { color: var(--vd26-gold); }

/* ============ DESKTOP ============ */
@media (min-width: 769px) {
  .vd26-bottom-nav { display: none; }
  body { max-width: 430px; }
  main { padding-bottom: 2rem; }
}

/* ============ UTILS ============ */
.vd26-text-center { text-align: center; }
.vd26-mt-1 { margin-top: 0.5rem; }
.vd26-mt-2 { margin-top: 1rem; }
.vd26-hidden { display: none !important; }
.vd26-trust-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(178, 223, 219, 0.12); color: var(--vd26-mint);
  padding: 0.3rem 0.8rem; border-radius: 999px;
  font-size: 1.15rem; margin: 0.2rem 0.3rem 0.2rem 0;
  border: 1px solid rgba(178, 223, 219, 0.25);
}
.vd26-step-list { counter-reset: step; list-style: none; padding-left: 0; }
.vd26-step-list li {
  position: relative; padding-left: 3rem; margin-bottom: 0.8rem;
  color: var(--vd26-text-muted); font-size: 1.3rem; line-height: 1.6; counter-increment: step;
}
.vd26-step-list li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 2.2rem; height: 2.2rem;
  background: linear-gradient(135deg, #F5DEB3, #DDA0DD);
  color: #1a1a1a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.15rem;
}
.vd26-feature-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 0.6rem;
}
.vd26-feature-item {
  background: var(--vd26-bg-soft); border-radius: 10px; padding: 0.8rem;
  border: 1px solid var(--vd26-border); text-align: center;
}
.vd26-feature-item i { font-size: 1.8rem; color: var(--vd26-gold); margin-bottom: 0.4rem; display: block; }
.vd26-feature-item strong { display: block; color: var(--vd26-pink); font-size: 1.2rem; margin-bottom: 0.2rem; }
.vd26-feature-item span { color: var(--vd26-text-muted); font-size: 1.1rem; line-height: 1.4; }
