/* 655 website stylesheet — all classes use w7f80- prefix */
/* Palette: #DDA0DD (plum) | #FAFAFA (light) | #141414 (dark) | #BAE1FF (blue) | #BAFFC9 (mint) | #9932CC (purple) */
/* Dark = background, light = text */

:root {
  --w7f80-bg: #141414;
  --w7f80-bg-alt: #1c1430;
  --w7f80-card: #221638;
  --w7f80-text: #FAFAFA;
  --w7f80-text-dim: #d8c9e8;
  --w7f80-primary: #DDA0DD;
  --w7f80-purple: #9932CC;
  --w7f80-blue: #BAE1FF;
  --w7f80-mint: #BAFFC9;
  --w7f80-border: rgba(221, 160, 221, 0.25);
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--w7f80-bg);
  color: var(--w7f80-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 76px;
}

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

/* ---------- Header ---------- */
.w7f80-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1a0f2e 0%, #2a1248 100%);
  border-bottom: 1px solid var(--w7f80-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.w7f80-headbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}
.w7f80-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--w7f80-text);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}
.w7f80-logo img { width: 28px; height: 28px; border-radius: 6px; }
.w7f80-logo span {
  background: linear-gradient(90deg, var(--w7f80-primary), var(--w7f80-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.w7f80-headbtns { display: flex; align-items: center; gap: 6px; }
.w7f80-btn {
  border: none;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 36px;
  transition: transform 0.15s, opacity 0.15s;
}
.w7f80-btn:active { transform: scale(0.94); }
.w7f80-btn--register {
  background: linear-gradient(90deg, var(--w7f80-purple), var(--w7f80-primary));
  color: #fff;
  box-shadow: 0 2px 8px rgba(153, 50, 204, 0.5);
}
.w7f80-btn--login {
  background: transparent;
  color: var(--w7f80-mint);
  border: 1px solid var(--w7f80-mint);
}

.w7f80-menutoggle {
  background: transparent;
  border: 1px solid var(--w7f80-border);
  color: var(--w7f80-primary);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile menu ---------- */
.w7f80-mobilemenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #1a0f2e;
  border-bottom: 1px solid var(--w7f80-border);
}
.w7f80-mobilemenu--open { max-height: 520px; }
.w7f80-mobilemenu ul { list-style: none; padding: 6px 0; }
.w7f80-mobilemenu li a {
  display: block;
  padding: 11px 16px;
  color: var(--w7f80-text);
  font-size: 1.3rem;
  border-left: 3px solid transparent;
}
.w7f80-mobilemenu li a:active { border-left-color: var(--w7f80-primary); background: rgba(221,160,221,0.08); }

/* ---------- Carousel ---------- */
.w7f80-carousel {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
}
.w7f80-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.w7f80-slide--active { opacity: 1; }
.w7f80-slide img { width: 100%; height: 180px; object-fit: cover; }
.w7f80-slide-cap {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(20,20,20,0.7);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--w7f80-mint);
}
.w7f80-slidedots {
  position: absolute;
  bottom: 8px; right: 12px;
  display: flex; gap: 6px;
}
.w7f80-slidedot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(250,250,250,0.4);
  cursor: pointer;
}
.w7f80-slidedot--active { background: var(--w7f80-primary); }

/* ---------- Main layout ---------- */
.w7f80-main { padding: 14px 12px 0; }
.w7f80-section { margin: 22px 0; }
.w7f80-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--w7f80-border);
}
.w7f80-section-head h2 {
  font-size: 1.7rem;
  color: var(--w7f80-primary);
  font-weight: 800;
}
.w7f80-section-head .w7f80-ic { font-size: 2rem; color: var(--w7f80-blue); }

.w7f80-h1 {
  font-size: 2rem;
  font-weight: 900;
  margin: 10px 0 6px;
  background: linear-gradient(90deg, var(--w7f80-primary), var(--w7f80-mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 2.4rem;
}

/* ---------- Promo banner ---------- */
.w7f80-promobanner {
  background: linear-gradient(120deg, #2a1248 0%, #9932CC 60%, #DDA0DD 100%);
  border-radius: 14px;
  padding: 14px;
  margin: 14px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.w7f80-promobanner h3 { font-size: 1.6rem; margin-bottom: 4px; font-weight: 800; }
.w7f80-promobanner p { font-size: 1.25rem; margin-bottom: 10px; color: #f0e6fa; }
.w7f80-promo-link {
  display: inline-block;
  font-weight: 800;
  color: var(--w7f80-mint);
  padding: 6px 14px;
  border: 1px solid var(--w7f80-mint);
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
}
.w7f80-promolink-text {
  color: var(--w7f80-primary);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- Game grid ---------- */
.w7f80-gamegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.w7f80-gamecard {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--w7f80-card);
  border: 1px solid var(--w7f80-border);
  border-radius: 12px;
  padding: 8px 6px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}
.w7f80-gamecard:active {
  transform: scale(0.96);
  box-shadow: 0 0 12px rgba(221,160,221,0.4);
}
.w7f80-gamecard img {
  width: 70px; height: 70px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 6px;
}
.w7f80-gamecard-name {
  font-size: 1.05rem;
  color: var(--w7f80-text);
  font-weight: 600;
  line-height: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Category cat chips */
.w7f80-catrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.w7f80-catrow span {
  background: rgba(186,225,255,0.12);
  color: var(--w7f80-blue);
  border: 1px solid rgba(186,225,255,0.3);
  border-radius: 14px;
  padding: 4px 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

/* ---------- Content / feature blocks ---------- */
.w7f80-card {
  background: var(--w7f80-card);
  border: 1px solid var(--w7f80-border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}
.w7f80-card h3 { font-size: 1.5rem; color: var(--w7f80-primary); margin-bottom: 8px; font-weight: 700; }
.w7f80-card p { font-size: 1.25rem; color: var(--w7f80-text-dim); line-height: 1.7rem; margin-bottom: 8px; }
.w7f80-card ul { padding-left: 18px; }
.w7f80-card li { font-size: 1.2rem; color: var(--w7f80-text-dim); margin-bottom: 5px; line-height: 1.6rem; }

/* RTP table */
.w7f80-rtptable { width: 100%; border-collapse: collapse; font-size: 1.15rem; }
.w7f80-rtptable th, .w7f80-rtptable td {
  padding: 7px 8px;
  border-bottom: 1px solid var(--w7f80-border);
  text-align: left;
}
.w7f80-rtptable th { color: var(--w7f80-blue); font-size: 1.15rem; }
.w7f80-rtptable td.rtp { color: var(--w7f80-mint); font-weight: 700; }

/* Testimonials */
.w7f80-quote {
  background: rgba(186,255,201,0.06);
  border-left: 3px solid var(--w7f80-mint);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.w7f80-quote p { font-size: 1.2rem; color: var(--w7f80-text-dim); font-style: italic; }
.w7f80-quote .author { display: block; margin-top: 5px; font-size: 1.1rem; color: var(--w7f80-primary); font-weight: 700; }

/* Winners */
.w7f80-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: rgba(221,160,221,0.08);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.w7f80-winner .amt { color: var(--w7f80-mint); font-weight: 800; }

/* Payment methods */
.w7f80-payrow { display: flex; flex-wrap: wrap; gap: 8px; }
.w7f80-paychip {
  background: rgba(186,225,255,0.1);
  border: 1px solid rgba(186,225,255,0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 1.15rem;
  color: var(--w7f80-blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* App download CTA */
.w7f80-appcta {
  background: linear-gradient(120deg, #1c1430, #2a1248);
  border: 1px solid var(--w7f80-primary);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}
.w7f80-appcta h3 { color: var(--w7f80-mint); margin-bottom: 6px; }
.w7f80-appbtns { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }

/* Play now CTA */
.w7f80-playnow {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, var(--w7f80-purple), var(--w7f80-primary));
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 13px;
  border-radius: 12px;
  border: none;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(153,50,204,0.5);
  margin: 14px 0;
}
.w7f80-playnow:active { transform: scale(0.97); }

/* Features list */
.w7f80-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.w7f80-feature .ic { font-size: 2.2rem; color: var(--w7f80-primary); flex-shrink: 0; }
.w7f80-feature h4 { font-size: 1.35rem; color: var(--w7f80-blue); margin-bottom: 3px; }
.w7f80-feature p { font-size: 1.2rem; color: var(--w7f80-text-dim); line-height: 1.6rem; }

/* Achievements */
.w7f80-achvrow { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.w7f80-achv {
  flex: 1 1 45%;
  background: rgba(153,50,204,0.12);
  border: 1px solid rgba(153,50,204,0.3);
  border-radius: 10px;
  padding: 9px;
  text-align: center;
}
.w7f80-achv .num { font-size: 1.7rem; font-weight: 800; color: var(--w7f80-mint); display: block; }
.w7f80-achv .lbl { font-size: 1.05rem; color: var(--w7f80-text-dim); }

/* Tricks */
.w7f80-trick {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 9px;
  background: rgba(186,255,201,0.06);
  border-radius: 8px;
  margin-bottom: 8px;
}
.w7f80-trick .num {
  width: 24px; height: 24px;
  background: var(--w7f80-mint);
  color: #141414;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.w7f80-footer {
  background: #0d0b16;
  border-top: 1px solid var(--w7f80-border);
  padding: 16px 14px 26px;
  margin-top: 20px;
}
.w7f80-footer-brand {
  font-size: 1.2rem;
  color: var(--w7f80-text-dim);
  line-height: 1.7rem;
  margin-bottom: 12px;
}
.w7f80-footer-brand strong { color: var(--w7f80-primary); }
.w7f80-footer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.w7f80-footer-btns button {
  flex: 1 1 45%;
  background: linear-gradient(90deg, var(--w7f80-purple), var(--w7f80-primary));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
}
.w7f80-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 10px;
}
.w7f80-footer-links a { color: var(--w7f80-text-dim); font-size: 1.15rem; text-decoration: underline; }
.w7f80-copy {
  font-size: 1.1rem;
  color: #8a7ca0;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid var(--w7f80-border);
}

/* ---------- Bottom nav (mobile only) ---------- */
.w7f80-bottomnav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: rgba(26, 15, 46, 0.98);
  border-top: 1px solid var(--w7f80-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -3px 14px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}
.w7f80-bottomnav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--w7f80-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: color 0.18s, transform 0.18s;
  position: relative;
}
.w7f80-bottomnav-btn .ic { font-size: 22px; line-height: 1; }
.w7f80-bottomnav-btn .label { font-size: 10px; font-weight: 600; }
.w7f80-bottomnav-btn:active { transform: scale(0.9); color: var(--w7f80-primary); }
.w7f80-bottomnav-btn--active { color: var(--w7f80-primary); }
.w7f80-bottomnav-btn--active::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 3px;
  background: var(--w7f80-primary);
  border-radius: 0 0 4px 4px;
}
.w7f80-bottomnav-btn--promo .ic { color: var(--w7f80-mint); }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  body { max-width: 430px; }
  .w7f80-bottomnav { display: none; }
  body { padding-bottom: 10px; }
}

/* Small screens — keep 3-col grid */
@media (max-width: 360px) {
  .w7f80-gamegrid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .w7f80-gamecard img { width: 62px; height: 62px; }
  .w7f80-gamecard-name { font-size: 0.98rem; }
}