/* =========================================================================
   yyph theme stylesheet - class prefix: w621e-
   Palette: #228B22 #00FF7F #2D2D2D #FF8000 #006400 #E5E5E5
   ========================================================================= */

:root {
  --w621e-primary: #228B22;
  --w621e-accent: #00FF7F;
  --w621e-bg: #2D2D2D;
  --w621e-bg-2: #1a1a1a;
  --w621e-orange: #FF8000;
  --w621e-dark-green: #006400;
  --w621e-light: #E5E5E5;
  --w621e-text: #f5f5f5;
  --w621e-muted: #b8b8b8;
  --w621e-card: #333333;
  --w621e-border: #3d3d3d;
  --w621e-gold: #ffd24a;
}

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

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

body {
  font-family: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  background: var(--w621e-bg);
  color: var(--w621e-text);
  line-height: 1.5rem;
  font-size: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.w621e-container { width: 100%; padding: 0 1.2rem; }
.w621e-wrapper { max-width: 430px; margin: 0 auto; position: relative; }

/* ======================= Header ======================= */
.w621e-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: linear-gradient(180deg, #006400 0%, #228B22 100%);
  border-bottom: 2px solid var(--w621e-orange);
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.w621e-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; min-height: 52px;
}
.w621e-logo { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.w621e-logo img { width: 26px; height: 26px; border-radius: 6px; }
.w621e-logo span {
  font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: 0.5px;
  background: linear-gradient(90deg,#fff,var(--w621e-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.w621e-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.w621e-hamburger {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.w621e-hamburger i { font-size: 2rem; }
.w621e-btn {
  border: none; cursor: pointer; border-radius: 2rem; font-weight: 700;
  font-size: 1.3rem; padding: 0.7rem 1.4rem; transition: transform .15s, box-shadow .15s;
  min-height: 36px; display: inline-flex; align-items: center; gap: .4rem;
}
.w621e-btn:active { transform: scale(.94); }
.w621e-btn-register {
  background: var(--w621e-orange); color: #fff;
  box-shadow: 0 4px 10px rgba(255,128,0,.45);
}
.w621e-btn-login {
  background: transparent; color: #fff; border: 2px solid var(--w621e-accent);
}
.w621e-btn-block {
  background: var(--w621e-orange); color: #fff; width: 100%;
  padding: 1.2rem; font-size: 1.6rem; box-shadow: 0 6px 18px rgba(255,128,0,.5);
}
.w621e-btn-ghost {
  background: rgba(0,255,127,.12); color: var(--w621e-accent);
  border: 1px solid var(--w621e-accent);
}

/* ======================= Mobile menu ======================= */
#w621e-mobile-menu {
  position: fixed; top: 0; right: 0; height: 100%; width: 78%;
  max-width: 320px; background: var(--w621e-bg-2); z-index: 9999;
  transform: translateX(100%); transition: transform .3s ease;
  padding: 1.6rem 1.2rem; overflow-y: auto;
}
.w621e-menu-open { transform: translateX(0) !important; }
#w621e-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9998;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.w621e-backdrop-show { opacity: 1 !important; pointer-events: auto !important; }
.w621e-menu-title {
  font-size: 1.8rem; font-weight: 800; color: var(--w621e-accent);
  margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--w621e-border);
  display:flex; justify-content: space-between; align-items:center;
}
.w621e-menu-close {
  background: var(--w621e-card); color: #fff; border: none; width: 34px; height: 34px;
  border-radius: 50%; font-size: 1.6rem; cursor: pointer;
}
.w621e-menu-list { list-style: none; }
.w621e-menu-list li { margin-bottom: .8rem; }
.w621e-menu-list a {
  display: flex; align-items: center; gap: .8rem; padding: 1rem;
  background: var(--w621e-card); border-radius: 1rem; color: var(--w621e-text);
  border-left: 3px solid var(--w621e-primary); font-weight: 600;
}
.w621e-menu-list a i { font-size: 1.8rem; color: var(--w621e-accent); }
.w621e-menu-promo {
  margin-top: 1.4rem; padding: 1.2rem; background: linear-gradient(135deg,#006400,#228B22);
  border-radius: 1rem; text-align: center;
}
.w621e-menu-promo p { color: #fff; font-size: 1.3rem; margin-bottom: .8rem; }

/* ======================= Main ======================= */
main { padding-top: 60px; }
@media (max-width: 768px) { main { padding-bottom: 80px; } }

.w621e-section { padding: 2rem 1.2rem; }
.w621e-sec-title {
  font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
  border-left: 4px solid var(--w621e-orange); padding-left: .8rem;
}
.w621e-sec-title i { color: var(--w621e-accent); font-size: 2rem; }
.w621e-sec-sub {
  font-size: 1.4rem; color: var(--w621e-muted); margin-bottom: 1.4rem;
}

/* ======================= Hero carousel ======================= */
.w621e-hero { position: relative; margin: 1rem; border-radius: 1.4rem; overflow: hidden; }
.w621e-slide {
  display: none; position: relative; cursor: pointer;
}
.w621e-slide-active { display: block; }
.w621e-slide img { width: 100%; height: 180px; object-fit: cover; }
.w621e-slide-cap {
  position: absolute; left: 0; bottom: 0; width: 100%;
  padding: 1rem 1.2rem 1.2rem;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
}
.w621e-slide-cap h2 { font-size: 1.8rem; color: #fff; font-weight: 800; }
.w621e-slide-cap p { color: var(--w621e-accent); font-size: 1.3rem; font-weight: 700; }
.w621e-dots { display:flex; justify-content: center; gap: .5rem; padding: .6rem 0; }
.w621e-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; border: none; }
.w621e-dot-active { background: var(--w621e-orange); width: 22px; border-radius: 4px; }

/* ======================= Quick promo strip ======================= */
.w621e-quick-strip {
  display: flex; gap: .8rem; overflow-x: auto; padding: .8rem 1rem;
  scrollbar-width: none;
}
.w621e-quick-strip::-webkit-scrollbar { display: none; }
.w621e-quick-card {
  flex: 0 0 120px; background: var(--w621e-card); border-radius: 1rem;
  padding: 1rem; text-align: center; border: 1px solid var(--w621e-border);
}
.w621e-quick-card i { font-size: 2.4rem; color: var(--w621e-accent); }
.w621e-quick-card span { display:block; font-size:1.3rem; font-weight:700; color:#fff; margin-top:.4rem; }

/* ======================= Game grid ======================= */
.w621e-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 1.6rem 0 1rem; padding: 0 1.2rem;
}
.w621e-cat-head h3 {
  font-size: 1.7rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: .5rem;
}
.w621e-cat-head h3 i { color: var(--w621e-orange); font-size: 1.9rem; }
.w621e-cat-tag {
  font-size: 1.1rem; color: var(--w621e-bg-2); background: var(--w621e-accent);
  padding: .2rem .6rem; border-radius: 1rem; font-weight: 700;
}
.w621e-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem;
  padding: 0 1rem; margin-bottom: 1.6rem;
}
.w621e-game {
  text-align: center; cursor: pointer; background: var(--w621e-card);
  border-radius: .8rem; padding: .4rem; border: 1px solid var(--w621e-border);
  transition: transform .15s, border-color .15s;
}
.w621e-game:active { transform: scale(.93); border-color: var(--w621e-orange); }
.w621e-game img { width: 100%; height: 62px; object-fit: cover; border-radius: .6rem; }
.w621e-game span {
  display: block; font-size: 1.05rem; color: var(--w621e-light);
  margin-top: .3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3rem; font-weight: 600;
}

/* ======================= Generic cards ======================= */
.w621e-card {
  background: var(--w621e-card); border-radius: 1rem; padding: 1.2rem;
  margin-bottom: 1rem; border: 1px solid var(--w621e-border);
}
.w621e-card h4 { font-size: 1.5rem; color: var(--w621e-accent); margin-bottom: .5rem; }
.w621e-card p { font-size: 1.35rem; color: var(--w621e-muted); }
.w621e-card.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.w621e-feature {
  background: linear-gradient(135deg,#00640033,#228B2233); border: 1px solid var(--w621e-primary);
  border-radius: 1rem; padding: 1.2rem; text-align: center; margin-bottom: .8rem;
}
.w621e-feature i { font-size: 2.6rem; color: var(--w621e-accent); margin-bottom: .4rem; }
.w621e-feature h4 { font-size: 1.4rem; color: #fff; margin-bottom: .3rem; }
.w621e-feature p { font-size: 1.2rem; color: var(--w621e-muted); }

/* ======================= Text promo ======================= */
.w621e-text-link { color: var(--w621e-orange); font-weight: 700; cursor: pointer; }
.w621e-text-link:hover, .w621e-text-link:active { text-decoration: underline; }
.w621e-promo-banner {
  background: linear-gradient(135deg,#FF8000,#006400); border-radius: 1.2rem;
  padding: 1.4rem; text-align: center; margin: 1rem 1.2rem;
  box-shadow: 0 6px 20px rgba(255,128,0,.35);
}
.w621e-promo-banner h3 { color: #fff; font-size: 1.8rem; margin-bottom: .5rem; }
.w621e-promo-banner p { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; opacity: .95; }

/* ======================= RTP bars ======================= */
.w621e-rtp-row { margin-bottom: .9rem; }
.w621e-rtp-label { display: flex; justify-content: space-between; font-size: 1.3rem; color: var(--w621e-light); margin-bottom: .3rem; }
.w621e-rtp-bar { height: 8px; background: #444; border-radius: 4px; overflow: hidden; }
.w621e-rtp-fill { height: 100%; background: linear-gradient(90deg,var(--w621e-accent),var(--w621e-orange)); border-radius: 4px; }

/* ======================= VIP / club ======================= */
.w621e-vip {
  background: radial-gradient(circle at top, #006400, #2D2D2D); border: 1px solid var(--w621e-gold);
  border-radius: 1.2rem; padding: 1.4rem; margin: 1rem 1.2rem; text-align: center;
}
.w621e-vip i { font-size: 3rem; color: var(--w621e-gold); }
.w621e-vip h3 { color: var(--w621e-gold); font-size: 1.8rem; margin: .4rem 0; }
.w621e-vip-tiers { display: flex; gap: .6rem; margin-top: 1rem; justify-content: center; flex-wrap: wrap; }
.w621e-vip-tier {
  background: rgba(0,0,0,.4); border: 1px solid var(--w621e-gold); color: #fff;
  padding: .5rem 1rem; border-radius: 1rem; font-size: 1.2rem; font-weight: 700;
}

/* ======================= Winners ======================= */
.w621e-winners { display: flex; gap: .6rem; overflow-x: auto; padding: .5rem 1rem; scrollbar-width: none; }
.w621e-winners::-webkit-scrollbar { display: none; }
.w621e-winner {
  flex: 0 0 150px; background: var(--w621e-card); border: 1px solid var(--w621e-border);
  border-radius: .8rem; padding: .8rem; text-align: center;
}
.w621e-winner .w621e-avatar {
  width: 36px; height: 36px; border-radius: 50%; margin: 0 auto .4rem;
  background: linear-gradient(135deg,#00FF7F,#228B22);
  display: flex; align-items: center; justify-content: center; color: #006400; font-weight: 800;
}
.w621e-winner span { display: block; font-size: 1.2rem; color: var(--w621e-light); }
.w621e-winner b { color: var(--w621e-orange); font-size: 1.4rem; }

/* ======================= Testimonials ======================= */
.w621e-testimonial {
  background: var(--w621e-card); border-left: 3px solid var(--w621e-accent);
  padding: 1rem 1.2rem; border-radius: .6rem; margin-bottom: .8rem;
}
.w621e-testimonial .w621e-stars { color: var(--w621e-gold); font-size: 1.3rem; margin-bottom: .3rem; }
.w621e-testimonial p { font-size: 1.3rem; color: var(--w621e-light); margin-bottom: .4rem; }
.w621e-testimonial b { color: var(--w621e-accent); font-size: 1.2rem; }

/* ======================= Payment ======================= */
.w621e-pay { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; padding: .6rem 1rem; }
.w621e-pay-item {
  background: #fff; color: #006400; border-radius: .6rem; padding: .6rem 1rem;
  font-weight: 800; font-size: 1.2rem; min-width: 70px; text-align: center;
  border: 1px solid var(--w621e-border);
}

/* ======================= FAQ ======================= */
.w621e-faq-item {
  background: var(--w621e-card); border: 1px solid var(--w621e-border);
  border-radius: .8rem; margin-bottom: .7rem; overflow: hidden; cursor: pointer;
}
.w621e-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.2rem; font-weight: 700; color: #fff; font-size: 1.4rem;
}
.w621e-faq-q i { color: var(--w621e-orange); transition: transform .2s; }
.w621e-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 1.2rem; color: var(--w621e-muted); font-size: 1.3rem;
}
.w621e-faq-open .w621e-faq-a { max-height: 240px; padding-bottom: 1rem; }
.w621e-faq-open .w621e-faq-q i { transform: rotate(45deg); }

/* ======================= App download ======================= */
.w621e-app-cta {
  background: linear-gradient(135deg,#228B22,#006400); border: 1px solid var(--w621e-accent);
  border-radius: 1.2rem; padding: 1.4rem; margin: 1rem 1.2rem; text-align: center;
}
.w621e-app-cta h3 { color: #fff; font-size: 1.8rem; margin-bottom: .4rem; }
.w621e-app-cta p { color: var(--w621e-accent); font-size: 1.3rem; margin-bottom: 1rem; }
.w621e-app-btns { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.w621e-app-btn {
  background: #000; color: #fff; padding: .8rem 1.2rem; border-radius: .8rem;
  display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.2rem; cursor: pointer;
}

/* ======================= Play now CTA ======================= */
.w621e-play-cta {
  background: linear-gradient(90deg,#FF8000,#006400); padding: 1.6rem;
  text-align: center; border-radius: 1.2rem; margin: 1rem 1.2rem;
}
.w621e-play-cta h3 { color: #fff; font-size: 2rem; margin-bottom: .6rem; text-shadow: 0 2px 4px rgba(0,0,0,.5); }
.w621e-play-cta p { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }

/* ======================= Security ======================= */
.w621e-security { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; padding: 0 1.2rem; }
.w621e-sec-badge {
  background: var(--w621e-card); border-radius: .8rem; padding: 1rem; text-align: center;
  border: 1px solid var(--w621e-primary);
}
.w621e-sec-badge i { font-size: 2.2rem; color: var(--w621e-accent); }
.w621e-sec-badge span { display: block; font-size: 1.2rem; color: #fff; margin-top: .3rem; font-weight: 600; }

/* ======================= Reveal animation ======================= */
.w621e-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.w621e-revealed { opacity: 1; transform: translateY(0); }

/* ======================= Footer ======================= */
.w621e-footer {
  background: var(--w621e-bg-2); padding: 2rem 1.2rem 1rem; margin-top: 1rem;
  border-top: 2px solid var(--w621e-primary);
}
.w621e-footer brand { color: var(--w621e-accent); font-weight: 800; }
.w621e-footer-desc { color: var(--w621e-muted); font-size: 1.25rem; margin: .8rem 0; line-height: 1.6rem; }
.w621e-footer-links { display: flex; flex-wrap: wrap; gap: .6rem; margin: .8rem 0; }
.w621e-footer-links a {
  background: var(--w621e-card); padding: .4rem .8rem; border-radius: .5rem;
  font-size: 1.2rem; color: var(--w621e-light); border: 1px solid var(--w621e-border);
}
.w621e-footer-promos { display: flex; flex-wrap: wrap; gap: .5rem; margin: .8rem 0; }
.w621e-footer-promos button {
  background: var(--w621e-orange); color: #fff; border: none; border-radius: .5rem;
  padding: .6rem 1rem; font-weight: 700; font-size: 1.2rem; cursor: pointer;
}
.w621e-footer-copy {
  text-align: center; color: #888; font-size: 1.1rem; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--w621e-border);
}

/* ======================= Bottom nav ======================= */
.w621e-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 60px; z-index: 1000;
  background: linear-gradient(180deg,#006400,#228B22);
  display: flex; justify-content: space-around; align-items: center;
  border-top: 2px solid var(--w621e-orange); box-shadow: 0 -3px 12px rgba(0,0,0,.4);
}
.w621e-nav-btn {
  background: transparent; border: none; color: #fff; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px; gap: 2px; padding: .3rem;
  transition: transform .15s, color .15s;
}
.w621e-nav-btn:active { transform: scale(.88); }
.w621e-nav-btn i { font-size: 2.2rem; color: #fff; }
.w621e-nav-btn span { font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 600; }
.w621e-nav-active i { color: var(--w621e-orange) !important; }
.w621e-nav-active span { color: var(--w621e-accent) !important; font-weight: 800; }
.w621e-nav-badge {
  position: absolute; top: 6px; right: 14px; background: var(--w621e-orange);
  color: #fff; font-size: .9rem; min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px; font-weight: 700;
}
.w621e-nav-btn { position: relative; }

@media (min-width: 769px) { .w621e-bottom-nav { display: none; } }

/* Desktop nav helper - show simple top links instead of bottom nav on wide */
.w621e-desktop-nav { display: none; }
@media (min-width: 769px) { .w621e-desktop-nav { display: flex; gap: 1rem; } }