:root {
  --w5ae3-primary: #DDA0DD;
  --w5ae3-primary-deep: #B873B8;
  --w5ae3-bg: #0F0F23;
  --w5ae3-bg-soft: #161634;
  --w5ae3-bg-card: #1d1d44;
  --w5ae3-text: #FAFAFA;
  --w5ae3-muted: #a9a9c8;
  --w5ae3-gold: #FFD56A;
  --w5ae3-success: #36c98a;
  --w5ae3-danger: #ff6b6b;
  --w5ae3-radius: 1.4rem;
  --w5ae3-shadow: 0 1.2rem 3rem rgba(0,0,0,.35);
}

/* Reset */
* { 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", Roboto, Arial, sans-serif;
  background: var(--w5ae3-bg);
  color: var(--w5ae3-text);
  line-height: 1.5;
  font-size: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--w5ae3-primary); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Layout shell */
.w5ae3-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(221,160,221,.10), transparent 45%),
    radial-gradient(circle at 100% 30%, rgba(54,201,138,.06), transparent 50%),
    var(--w5ae3-bg);
  min-height: 100vh;
}
@media (min-width: 768px) {
  .w5ae3-wrapper {
    max-width: 1280px;
    box-shadow: var(--w5ae3-shadow);
  }
}

main.w5ae3-main {
  padding-bottom: 80px; /* keep clear of the bottom nav */
  padding-top: 6.4rem;
}

/* ===== Header ===== */
.w5ae3-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,15,35,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(221,160,221,.18);
}
.w5ae3-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1rem;
  gap: .6rem;
}
.w5ae3-brand { display: flex; align-items: center; gap: .6rem; min-width: 0; }
.w5ae3-brand-logo {
  width: 3rem; height: 3rem; border-radius: .8rem;
  background: linear-gradient(135deg, var(--w5ae3-primary), var(--w5ae3-gold));
  display: flex; align-items: center; justify-content: center;
  color: #0F0F23; font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 0 .9rem rgba(221,160,221,.45);
}
.w5ae3-brand-name {
  font-size: 1.7rem; font-weight: 800; letter-spacing: .03em;
  color: var(--w5ae3-text);
}
.w5ae3-brand-name b { color: var(--w5ae3-primary); }
.w5ae3-header-actions { display: flex; align-items: center; gap: .5rem; }
.w5ae3-menu-btn {
  background: transparent; border: 0; color: var(--w5ae3-text);
  font-size: 2rem; width: 3.4rem; height: 3.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: .8rem; cursor: pointer;
}
.w5ae3-menu-btn:hover { background: rgba(221,160,221,.12); }

/* Buttons */
.w5ae3-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  font-weight: 700; font-size: 1.35rem;
  border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
  min-height: 4rem; text-align: center;
}
.w5ae3-btn:active { transform: scale(.96); }
.w5ae3-btn-primary {
  background: linear-gradient(135deg, var(--w5ae3-primary), var(--w5ae3-primary-deep));
  color: #0F0F23;
  box-shadow: 0 .6rem 1.4rem rgba(221,160,221,.35);
}
.w5ae3-btn-outline {
  background: transparent; color: var(--w5ae3-text);
  border: 1.5px solid var(--w5ae3-primary);
}
.w5ae3-btn-gold {
  background: linear-gradient(135deg, var(--w5ae3-gold), #ff9f43);
  color: #0F0F23;
}
.w5ae3-btn-block { width: 100%; }
.w5ae3-btn-lg { padding: 1.1rem 2rem; font-size: 1.55rem; }

/* ===== Mobile menu ===== */
.w5ae3-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 9998; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.w5ae3-backdrop-show { opacity: 1; pointer-events: auto; }
.w5ae3-mobile-menu {
  position: fixed; top: 0; right: -86%;
  width: 86%; max-width: 360px; height: 100vh;
  background: var(--w5ae3-bg-soft);
  z-index: 9999;
  padding: 6.5rem 1.4rem 2rem;
  overflow-y: auto;
  transition: right .28s ease;
  border-left: 1px solid rgba(221,160,221,.18);
}
.w5ae3-menu-open { right: 0; }
.w5ae3-menu-title {
  font-size: 1.7rem; color: var(--w5ae3-primary);
  margin: 1.4rem 0 .6rem; font-weight: 700;
}
.w5ae3-menu-list li a {
  display: block; padding: 1.05rem 1rem;
  color: var(--w5ae3-text); font-size: 1.45rem; font-weight: 600;
  border-radius: .8rem; border: 1px solid transparent;
}
.w5ae3-menu-list li a:hover { background: rgba(221,160,221,.10); border-color: rgba(221,160,221,.18); }
.w5ae3-menu-list li a i { margin-right: .8rem; color: var(--w5ae3-primary); }

/* ===== Hero carousel ===== */
.w5ae3-hero {
  position: relative; margin: 1rem; border-radius: var(--w5ae3-radius);
  overflow: hidden; box-shadow: var(--w5ae3-shadow);
}
.w5ae3-hero-track { position: relative; height: 18rem; }
.w5ae3-hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .6s ease;
}
.w5ae3-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.w5ae3-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,35,.05) 0%, rgba(15,15,35,.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem 1.4rem;
}
.w5ae3-hero-title { font-size: 2rem; font-weight: 800; line-height: 1.2; }
.w5ae3-hero-sub { font-size: 1.3rem; color: var(--w5ae3-muted); margin-top: .3rem; }
.w5ae3-slide-active { opacity: 1; }
.w5ae3-hero-dots {
  position: absolute; bottom: .8rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: .5rem; z-index: 2;
}
.w5ae3-hero-dot {
  width: .8rem; height: .8rem; border-radius: 50%;
  background: rgba(250,250,250,.45); cursor: pointer;
}
.w5ae3-dot-active { background: var(--w5ae3-primary); transform: scale(1.2); }

/* ===== Sections ===== */
.w5ae3-section {
  margin: 1.6rem 1rem; padding: 1.4rem;
  background: var(--w5ae3-bg-soft);
  border-radius: var(--w5ae3-radius);
  border: 1px solid rgba(221,160,221,.10);
}
.w5ae3-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.w5ae3-section-title {
  font-size: 1.7rem; font-weight: 800; color: var(--w5ae3-text);
}
.w5ae3-section-title b { color: var(--w5ae3-primary); }
.w5ae3-section-more {
  font-size: 1.25rem; color: var(--w5ae3-primary); font-weight: 600;
}
.w5ae3-lead { color: var(--w5ae3-muted); font-size: 1.35rem; line-height: 1.55; }
.w5ae3-lead a { font-weight: 700; }

/* ===== Game grid ===== */
.w5ae3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.w5ae3-game-card {
  background: var(--w5ae3-bg-card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(221,160,221,.10);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .2s;
}
.w5ae3-game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(221,160,221,.4);
  box-shadow: 0 .8rem 1.6rem rgba(221,160,221,.18);
}
.w5ae3-game-thumb { width: 100%; aspect-ratio: 1/1; background: #232354; }
.w5ae3-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.w5ae3-game-name {
  padding: .5rem .4rem .6rem;
  font-size: 1.15rem; text-align: center; color: var(--w5ae3-text);
  font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Featured big card */
.w5ae3-feature {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.w5ae3-feature-card {
  display: flex; gap: 1rem; padding: 1rem;
  background: var(--w5ae3-bg-card);
  border-radius: 1.2rem;
  border: 1px solid rgba(221,160,221,.14);
  align-items: center;
}
.w5ae3-feature-card .w5ae3-feature-thumb {
  width: 8rem; height: 8rem; border-radius: 1rem; overflow: hidden; flex-shrink: 0;
}
.w5ae3-feature-card .w5ae3-feature-thumb img { width: 100%; height: 100%; object-fit: cover; }
.w5ae3-feature-body h3 { font-size: 1.5rem; font-weight: 700; color: var(--w5ae3-text); }
.w5ae3-feature-body p { font-size: 1.25rem; color: var(--w5ae3-muted); margin-top: .25rem; }
.w5ae3-feature-tag {
  display: inline-block; padding: .2rem .7rem; border-radius: 999px;
  background: rgba(54,201,138,.18); color: var(--w5ae3-success);
  font-size: 1.05rem; margin-top: .4rem;
}

/* ===== Promo banners ===== */
.w5ae3-promo-banner {
  display: block; margin: 1rem; padding: 1.4rem;
  border-radius: var(--w5ae3-radius);
  background: linear-gradient(135deg, rgba(221,160,221,.20), rgba(255,213,106,.15));
  border: 1px solid rgba(221,160,221,.3);
}
.w5ae3-promo-banner h3 { font-size: 1.7rem; color: var(--w5ae3-gold); }
.w5ae3-promo-banner p { font-size: 1.3rem; color: var(--w5ae3-text); margin-top: .3rem; }

/* ===== Win / payment strips ===== */
.w5ae3-strip {
  display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .4rem;
  scrollbar-width: none;
}
.w5ae3-strip::-webkit-scrollbar { display: none; }
.w5ae3-pill {
  flex: 0 0 auto;
  padding: .6rem 1rem; border-radius: 999px;
  background: var(--w5ae3-bg-card);
  border: 1px solid rgba(221,160,221,.14);
  font-size: 1.2rem; color: var(--w5ae3-text);
  white-space: nowrap;
}
.w5ae3-pill i { color: var(--w5ae3-gold); margin-right: .35rem; }

/* ===== Testimonials ===== */
.w5ae3-testimonial {
  background: var(--w5ae3-bg-card);
  border-radius: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(221,160,221,.10);
  margin-bottom: .8rem;
}
.w5ae3-testimonial-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.w5ae3-avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--w5ae3-primary), var(--w5ae3-gold));
  display: flex; align-items: center; justify-content: center;
  color: #0F0F23; font-weight: 800;
}
.w5ae3-testimonial-name { font-weight: 700; font-size: 1.3rem; }
.w5ae3-stars { color: var(--w5ae3-gold); font-size: 1.2rem; }
.w5ae3-testimonial p { font-size: 1.25rem; color: var(--w5ae3-muted); }

/* ===== FAQ ===== */
.w5ae3-faq-item {
  border-bottom: 1px solid rgba(221,160,221,.10);
  padding: .9rem 0;
}
.w5ae3-faq-item h3 { font-size: 1.4rem; color: var(--w5ae3-text); margin-bottom: .3rem; }
.w5ae3-faq-item p { font-size: 1.25rem; color: var(--w5ae3-muted); }

/* ===== Footer ===== */
.w5ae3-footer {
  background: var(--w5ae3-bg-soft);
  border-top: 1px solid rgba(221,160,221,.16);
  padding: 2rem 1rem 1.5rem;
  color: var(--w5ae3-muted);
  font-size: 1.25rem;
}
.w5ae3-footer h4 { color: var(--w5ae3-text); font-size: 1.35rem; margin-bottom: .5rem; }
.w5ae3-footer p { line-height: 1.6; }
.w5ae3-footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: 1rem 0;
}
.w5ae3-footer-links a {
  color: var(--w5ae3-text); font-size: 1.2rem;
}
.w5ae3-footer-promos {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: .8rem 0;
}
.w5ae3-footer-promos .w5ae3-btn { padding: .6rem 1rem; font-size: 1.2rem; min-height: 0; }
.w5ae3-copyright {
  text-align: center; padding-top: 1rem;
  border-top: 1px solid rgba(221,160,221,.10);
  font-size: 1.15rem; color: var(--w5ae3-muted);
}

/* ===== Bottom nav ===== */
.w5ae3-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 6.2rem; z-index: 1000;
  background: rgba(15,15,35,.98);
  border-top: 1px solid rgba(221,160,221,.22);
  display: flex; justify-content: space-around; align-items: stretch;
}
.w5ae3-bottom-nav-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .15rem;
  background: transparent; border: 0; color: var(--w5ae3-muted);
  font-size: 1.05rem; cursor: pointer;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
  min-width: 60px; min-height: 60px;
}
.w5ae3-bottom-nav-btn i,
.w5ae3-bottom-nav-btn .material-icons-outlined,
.w5ae3-bottom-nav-btn ion-icon { font-size: 2.2rem; }
.w5ae3-bottom-nav-btn span { font-size: 1.05rem; }
.w5ae3-bottom-nav-btn:hover { color: var(--w5ae3-primary); }
.w5ae3-bottom-nav-btn:active { transform: scale(.92); }
.w5ae3-nav-active { color: var(--w5ae3-primary) !important; }
.w5ae3-nav-active i { color: var(--w5ae3-gold); }
.w5ae3-nav-badge {
  position: absolute; top: .55rem; right: 1.4rem;
  background: var(--w5ae3-danger); color: #fff;
  font-size: .9rem; font-weight: 700;
  padding: 0 .45rem; border-radius: 999px;
}
.w5ae3-bottom-center {
  position: relative; flex: 1;
  display: flex; align-items: center; justify-content: center;
}
.w5ae3-fab {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--w5ae3-primary), var(--w5ae3-gold));
  color: #0F0F23; font-size: 2.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: -2.2rem;
  box-shadow: 0 .4rem 1rem rgba(221,160,221,.45);
  border: 3px solid var(--w5ae3-bg);
}
.w5ae3-fab:active { transform: scale(.93); }

@media (min-width: 769px) {
  .w5ae3-bottom-nav { display: none; }
  main.w5ae3-main { padding-bottom: 2rem; }
}

/* ===== Utilities ===== */
.w5ae3-no-scroll { overflow: hidden; }
.w5ae3-text-center { text-align: center; }
.w5ae3-text-primary { color: var(--w5ae3-primary); font-weight: 700; }
.w5ae3-text-gold { color: var(--w5ae3-gold); font-weight: 700; }
.w5ae3-mt-1 { margin-top: .8rem; } .w5ae3-mt-2 { margin-top: 1.6rem; }
.w5ae3-row { display: flex; gap: .8rem; align-items: center; }
.w5ae3-row-wrap { flex-wrap: wrap; }
.w5ae3-badge {
  display: inline-block; padding: .2rem .6rem; border-radius: 999px;
  background: rgba(221,160,221,.18); color: var(--w5ae3-primary);
  font-size: 1.05rem;
}
.w5ae3-h1 {
  font-size: 2rem; font-weight: 800; color: var(--w5ae3-text);
  line-height: 1.25; margin: 1.4rem 1rem .6rem;
}
.w5ae3-h1 b { color: var(--w5ae3-primary); }
.w5ae3-h2 {
  font-size: 1.7rem; font-weight: 700; color: var(--w5ae3-text);
  margin: 1.4rem 0 .6rem;
}
.w5ae3-h2 b { color: var(--w5ae3-primary); }
.w5ae3-p { font-size: 1.35rem; color: var(--w5ae3-muted); line-height: 1.6; margin-bottom: .8rem; }

/* Desktop quick-find */
.w5ae3-quickfind-wrap { display: none; }
@media (min-width: 769px) {
  .w5ae3-quickfind-wrap {
    display: flex; align-items: center; gap: .5rem;
    background: var(--w5ae3-bg-card);
    padding: .5rem .8rem; border-radius: 999px;
  }
  .w5ae3-quickfind-wrap input {
    background: transparent; border: 0; color: var(--w5ae3-text);
    font-size: 1.3rem; outline: none; width: 14rem;
  }
}

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

/* Back to top */
.w5ae3-top-btn {
  position: fixed; right: 1rem; bottom: 7.4rem; z-index: 999;
  width: 4.2rem; height: 4.2rem; border-radius: 50%;
  background: var(--w5ae3-primary); color: #0F0F23;
  border: 0; font-size: 2rem; cursor: pointer;
  box-shadow: var(--w5ae3-shadow);
  display: flex; align-items: center; justify-content: center;
}
