/* ============================================================
   wvip win - core base stylesheet
   All custom classes use the w674f- prefix.
   Palette: #7FFF00 | #0097A7 | #0A0A0A | #00FA9A | #00FF00
   ============================================================ */

:root {
  --w674f-primary: #7FFF00;
  --w674f-accent: #00FF00;
  --w674f-cyan: #0097A7;
  --w674f-mint: #00FA9A;
  --w674f-bg: #0A0A0A;
  --w674f-bg2: #121212;
  --w674f-bg3: #1a1a1a;
  --w674f-text: #f5fff5;
  --w674f-muted: #9bb59b;
  --w674f-border: rgba(127, 255, 0, 0.18);
  --w674f-radius: 1.2rem;
}

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

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, Arial, sans-serif;
  background: var(--w674f-bg);
  color: var(--w674f-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

a { color: var(--w674f-primary); text-decoration: none; }

.w674f-wrapper { width: 100%; padding: 0 1.2rem; }

/* ---------- Header ---------- */
.w674f-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,10,0.96), rgba(10,10,10,0.88));
  border-bottom: 1px solid var(--w674f-border);
  backdrop-filter: blur(10px);
}
.w674f-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.6rem;
  padding: 0 1.2rem;
}
.w674f-brand { display: flex; align-items: center; gap: 0.7rem; }
.w674f-brand-logo {
  width: 3.2rem; height: 3.2rem;
  border-radius: 0.7rem;
  object-fit: cover;
  border: 1px solid var(--w674f-primary);
}
.w674f-brand-name {
  font-size: 1.7rem; font-weight: 800; letter-spacing: 0.03rem;
  color: var(--w674f-primary);
  text-transform: uppercase;
}
.w674f-brand-name span { color: var(--w674f-mint); }
.w674f-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.w674f-btn {
  font-size: 1.25rem; font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 0.8rem;
  border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 3.4rem;
}
.w674f-btn:active { transform: scale(0.96); }
.w674f-btn-login {
  background: transparent;
  color: var(--w674f-text);
  border: 1px solid var(--w674f-cyan);
}
.w674f-btn-register {
  background: linear-gradient(90deg, var(--w674f-primary), var(--w674f-accent));
  color: #06210a; font-weight: 800;
  box-shadow: 0 0 12px rgba(127,255,0,0.35);
}
.w674f-menu-btn {
  background: transparent;
  color: var(--w674f-primary);
  border: 1px solid var(--w674f-border);
  width: 3.4rem; height: 3.4rem;
  border-radius: 0.7rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Mobile expandable menu ---------- */
.w674f-mobile-menu {
  position: fixed;
  top: 5.6rem; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--w674f-bg2);
  border-bottom: 1px solid var(--w674f-border);
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.w674f-mobile-menu.w674f-menu-open { max-height: 60rem; }
.w674f-mobile-menu ul { list-style: none; padding: 0.6rem 1.2rem; }
.w674f-mobile-menu li { border-bottom: 1px solid rgba(127,255,0,0.08); }
.w674f-mobile-menu a {
  display: block;
  padding: 1.05rem 0.4rem;
  color: var(--w674f-text);
  font-size: 1.32rem;
}
.w674f-mobile-menu a:active { color: var(--w674f-primary); }

/* ---------- Main / Hero ---------- */
.w674f-main { padding-top: 5.6rem; }
.w674f-hero {
  position: relative;
  margin: 1rem 1.2rem 1.4rem;
  border-radius: var(--w674f-radius);
  overflow: hidden;
  border: 1px solid var(--w674f-border);
}
.w674f-slides { position: relative; }
.w674f-slide {
  display: none;
  cursor: pointer;
}
.w674f-slide.w674f-slide-active { display: block; }
.w674f-slide img { width: 100%; height: 16rem; object-fit: cover; }
.w674f-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  font-size: 1.28rem; font-weight: 700;
  color: var(--w674f-primary);
}
.w674f-dots {
  display: flex; gap: 0.5rem; justify-content: center;
  padding: 0.6rem;
}
.w674f-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer;
}
.w674f-dot.w674f-dot-active { background: var(--w674f-primary); }

/* ---------- Sections ---------- */
.w674f-section {
  margin: 1.8rem 1.2rem;
}
.w674f-section-title {
  font-size: 1.55rem; font-weight: 800;
  color: var(--w674f-text);
  margin-bottom: 0.9rem;
  border-left: 4px solid var(--w674f-primary);
  padding-left: 0.8rem;
}
.w674f-section-title em { color: var(--w674f-primary); font-style: normal; }
.w674f-lead { color: var(--w674f-muted); margin-bottom: 0.9rem; font-size: 1.32rem; }

/* ---------- Filter chips ---------- */
.w674f-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1rem;
}
.w674f-chip {
  padding: 0.45rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid var(--w674f-border);
  font-size: 1.18rem;
  color: var(--w674f-muted);
  cursor: pointer;
  background: var(--w674f-bg2);
}
.w674f-chip.w674f-chip-active {
  background: var(--w674f-primary); color: #06210a; font-weight: 700;
}

/* ---------- Game grid ---------- */
.w674f-cat-head {
  font-size: 1.32rem; font-weight: 800;
  color: var(--w674f-mint);
  margin: 1rem 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}
.w674f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.w674f-game {
  background: var(--w674f-bg2);
  border: 1px solid var(--w674f-border);
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.w674f-game:active {
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(127,255,0,0.4);
}
.w674f-game img {
  width: 100%; height: 7.5rem; object-fit: cover;
}
.w674f-game-name {
  font-size: 1.05rem;
  color: var(--w674f-text);
  padding: 0.35rem 0.4rem 0.5rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Cards / features ---------- */
.w674f-card {
  background: var(--w674f-bg2);
  border: 1px solid var(--w674f-border);
  border-radius: var(--w674f-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.w674f-feature-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem;
}
.w674f-feature {
  background: var(--w674f-bg3);
  border-radius: 0.9rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--w674f-border);
}
.w674f-feature .w674f-ico {
  font-size: 2rem; color: var(--w674f-primary); margin-bottom: 0.4rem;
}
.w674f-feature h3 { font-size: 1.22rem; margin-bottom: 0.3rem; color: var(--w674f-text); }
.w674f-feature p { font-size: 1.1rem; color: var(--w674f-muted); }

/* ---------- RTP table ---------- */
.w674f-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.18rem; }
.w674f-rtp-table th, .w674f-rtp-table td {
  padding: 0.55rem 0.4rem; text-align: left;
  border-bottom: 1px solid rgba(127,255,0,0.1);
}
.w674f-rtp-table th { color: var(--w674f-mint); font-size: 1.15rem; }
.w674f-rtp-badge {
  display: inline-block; padding: 0.1rem 0.5rem;
  border-radius: 0.4rem; background: var(--w674f-primary);
  color: #06210a; font-weight: 700; font-size: 1.05rem;
}

/* ---------- Testimonial / winner ---------- */
.w674f-list { list-style: none; }
.w674f-list li {
  background: var(--w674f-bg2);
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--w674f-cyan);
  font-size: 1.18rem;
}
.w674f-list li b { color: var(--w674f-primary); }

/* ---------- FAQ ---------- */
.w674f-faq { margin-bottom: 0.6rem; }
.w674f-faq-q {
  background: var(--w674f-bg2);
  border: 1px solid var(--w674f-border);
  border-radius: 0.7rem;
  padding: 0.9rem 1rem;
  font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.25rem;
}
.w674f-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--w674f-muted); font-size: 1.18rem;
  padding: 0 1rem;
  background: var(--w674f-bg3);
  border-radius: 0 0 0.7rem 0.7rem;
}
.w674f-faq.w674f-faq-open .w674f-faq-a { max-height: 30rem; padding: 0.8rem 1rem 1rem; }

/* ---------- CTA banner ---------- */
.w674f-cta {
  background: linear-gradient(90deg, rgba(127,255,0,0.12), rgba(0,154,167,0.12));
  border: 1px solid var(--w674f-primary);
  border-radius: var(--w674f-radius);
  padding: 1.3rem;
  text-align: center;
  margin: 1.4rem 1.2rem;
}
.w674f-cta h2 { color: var(--w674f-primary); font-size: 1.5rem; margin-bottom: 0.5rem; }
.w674f-cta p { color: var(--w674f-text); margin-bottom: 1rem; font-size: 1.22rem; }
.w674f-cta .w674f-btn { font-size: 1.3rem; padding: 0.85rem 2rem; }

/* ---------- SEO inline links ---------- */
.w674f-content p { margin-bottom: 0.9rem; font-size: 1.25rem; color: var(--w674f-text); }
.w674f-content a { color: var(--w674f-mint); font-weight: 700; border-bottom: 1px dashed var(--w674f-mint); }

/* ---------- Payment / app icons ---------- */
.w674f-pay-row, .w674f-app-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
}
.w674f-pay, .w674f-app {
  background: var(--w674f-bg3);
  border: 1px solid var(--w674f-border);
  border-radius: 0.7rem;
  padding: 0.55rem 0.9rem;
  font-size: 1.15rem;
  color: var(--w674f-text);
  display: flex; align-items: center; gap: 0.35rem;
}
.w674f-pay i, .w674f-app i { color: var(--w674f-primary); font-size: 1.4rem; }

/* ---------- Footer ---------- */
.w674f-footer {
  background: var(--w674f-bg2);
  border-top: 1px solid var(--w674f-border);
  padding: 1.6rem 1.2rem 9rem;
  margin-top: 1.4rem;
}
.w674f-footer h3 { color: var(--w674f-primary); font-size: 1.3rem; margin-bottom: 0.6rem; }
.w674f-footer p { color: var(--w674f-muted); font-size: 1.18rem; margin-bottom: 0.9rem; }
.w674f-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.w674f-footer-links a {
  color: var(--w674f-mint);
  font-size: 1.15rem;
}
.w674f-promo-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0;
}
.w674f-promo-btn {
  background: var(--w674f-primary); color: #06210a;
  padding: 0.45rem 0.85rem; border-radius: 0.6rem;
  font-weight: 700; font-size: 1.15rem; border: none; cursor: pointer;
}
.w674f-copy {
  text-align: center; color: var(--w674f-muted);
  font-size: 1.1rem; border-top: 1px solid var(--w674f-border);
  padding-top: 1rem; margin-top: 1rem;
}

/* ---------- Bottom nav ---------- */
.w674f-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 6rem;
  background: linear-gradient(180deg, #0f1a0f, #050a05);
  border-top: 1px solid var(--w674f-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.6);
}
.w674f-bn-btn {
  background: transparent; border: none;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.2rem;
  min-width: 6rem; min-height: 5.6rem;
  color: var(--w674f-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.15s ease, transform 0.15s ease;
}
.w674f-bn-btn:active { transform: scale(0.9); }
.w674f-bn-btn .w674f-bn-ico { font-size: 2.2rem; line-height: 1; }
.w674f-bn-btn .w674f-bn-label { font-size: 1.05rem; font-weight: 600; }
.w674f-bn-btn.w674f-bn-active { color: var(--w674f-primary); }
.w674f-bn-btn.w674f-bn-active::before {
  content: "";
  position: absolute; top: 0;
  width: 2.6rem; height: 0.25rem;
  background: var(--w674f-primary);
  border-radius: 0 0 0.3rem 0.3rem;
}
.w674f-bn-badge {
  position: absolute; top: 0.5rem; right: 1.4rem;
  background: #ff3b6b; color: #fff;
  font-size: 0.9rem; font-weight: 700;
  min-width: 1.5rem; height: 1.5rem;
  border-radius: 1rem; padding: 0 0.3rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Mobile bottom padding ---------- */
@media (max-width: 768px) {
  .w674f-main, body { padding-bottom: 7rem; }
}

/* ---------- Desktop: hide bottom nav, widen layout ---------- */
@media (min-width: 769px) {
  .w674f-bottom-nav { display: none; }
  .w674f-footer { padding-bottom: 2rem; }
}
