/* MapleScore — Neon Jackpot Arcade design system */
/* CSS prefix: mw- */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--mw-body);
  background: var(--mw-bg-deep);
  color: var(--mw-text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ─── CSS VARIABLES ─── */
:root {
  --mw-bg-deep:     #0a0418;
  --mw-bg-mid:      #120832;
  --mw-bg-card:     #1a0d42;
  --mw-bg-card2:    #1e1050;
  --mw-bg-nav:      #0c0626;
  --mw-bg-footer:   #08031a;
  --mw-ring:        #2d1a5e;
  --mw-border:      #3a2070;
  --mw-text:        #f0eaff;
  --mw-text-muted:  #b8a8d8;
  --mw-text-dim:    #7a6a9a;
  --mw-accent:      #ff2d78;
  --mw-accent2:     #00f5ff;
  --mw-accent3:     #ffd700;
  --mw-accent4:     #bf00ff;
  --mw-warn:        #ff4444;
  --mw-success:     #00e676;
  --mw-display:     'Monoton', cursive;
  --mw-body:        'Poppins', sans-serif;
  --mw-radius:      12px;
  --mw-radius-lg:   20px;
  --mw-shadow:      0 4px 24px rgba(255,45,120,0.2);
  --mw-glow-pink:   0 0 20px rgba(255,45,120,0.5);
  --mw-glow-cyan:   0 0 20px rgba(0,245,255,0.4);
  --mw-glow-gold:   0 0 20px rgba(255,215,0,0.5);
}

/* ─── TOPBAR / RESPONSIBLY STRIP ─── */
.mw-topbar {
  background: var(--mw-warn);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.mw-topbar a { color: #fff; text-decoration: underline; }

/* ─── NAVBAR ─── */
.mw-nav {
  background: var(--mw-bg-nav);
  border-bottom: 1px solid var(--mw-ring);
  position: sticky;
  top: 0;
  z-index: 900;
  height: 60px;
  display: flex;
  align-items: center;
}
.mw-nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mw-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-height: 44px;
}
.mw-nav__logo img { height: 36px; width: auto; }
.mw-nav__logo-text {
  font-family: var(--mw-display);
  font-size: 18px;
  color: var(--mw-accent);
  letter-spacing: 1px;
  text-shadow: var(--mw-glow-pink);
}
.mw-nav__links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.mw-nav__links a {
  color: var(--mw-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.mw-nav__links a:hover { color: var(--mw-accent2); }
.mw-nav__cta {
  display: none;
  background: var(--mw-accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--mw-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--mw-glow-pink);
  transition: opacity 0.2s;
  min-height: 44px;
  align-items: center;
}
.mw-nav__cta:hover { opacity: 0.85; }

/* Burger — variant B: stacked lines with neon glow */
.mw-nav__burger {
  background: none;
  border: 1px solid var(--mw-ring);
  border-radius: 6px;
  padding: 6px 9px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.mw-nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--mw-accent);
  border-radius: 2px;
  transition: all 0.25s;
  box-shadow: 0 0 6px var(--mw-accent);
}
.mw-nav__burger.mw-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mw-nav__burger.mw-open span:nth-child(2) { opacity: 0; }
.mw-nav__burger.mw-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drop */
.mw-mobile-nav {
  display: none;
  background: var(--mw-bg-nav);
  border-bottom: 1px solid var(--mw-ring);
  padding: 16px 20px;
  position: sticky;
  top: 60px;
  z-index: 899;
}
.mw-mobile-nav.mw-open { display: block; }
.mw-mobile-nav ul { list-style: none; }
.mw-mobile-nav li { border-bottom: 1px solid var(--mw-ring); }
.mw-mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--mw-text);
  text-decoration: none;
  font-weight: 500;
}
.mw-mobile-nav a:hover { color: var(--mw-accent2); }
.mw-mobile-nav .mw-mobile-cta {
  display: block;
  margin-top: 14px;
  background: var(--mw-accent);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: var(--mw-radius);
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 768px) {
  .mw-nav__links { display: flex; }
  .mw-nav__cta { display: inline-block; }
  .mw-nav__burger { display: none; }
}

/* ─── SECTIONS ─── */
.mw-section { padding: 56px 16px; }
.mw-section--dark { background: var(--mw-bg-mid); }
.mw-section--card { background: var(--mw-bg-card); }

@media (min-width: 768px) {
  .mw-section { padding: 96px 0; }
}

.mw-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── TYPOGRAPHY ─── */
.mw-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mw-accent2);
  margin-bottom: 10px;
}
.mw-h1 {
  font-family: var(--mw-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--mw-text);
  margin-bottom: 18px;
  text-shadow: 0 0 30px rgba(255,45,120,0.4);
}
.mw-h2 {
  font-family: var(--mw-display);
  font-size: 24px;
  line-height: 1.25;
  color: var(--mw-text);
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(0,245,255,0.3);
}
.mw-sub-h2 {
  font-family: var(--mw-display);
  font-size: 20px;
  color: var(--mw-text);
  margin-bottom: 12px;
}
.mw-lead {
  font-size: 17px;
  color: var(--mw-text-muted);
  margin-bottom: 24px;
  max-width: 640px;
}
.mw-sub-p {
  font-size: 15px;
  color: var(--mw-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.mw-section-title { text-align: center; margin-bottom: 40px; }

@media (min-width: 768px) {
  .mw-h1 { font-size: 44px; }
  .mw-h2 { font-size: 32px; }
}
@media (min-width: 992px) {
  .mw-h1 { font-size: 52px; }
}

/* ─── BUTTONS ─── */
.mw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--mw-radius);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.mw-btn--primary {
  background: var(--mw-accent);
  color: #fff;
  box-shadow: var(--mw-glow-pink);
}
.mw-btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }
.mw-btn--secondary {
  background: transparent;
  color: var(--mw-accent2);
  border: 2px solid var(--mw-accent2);
  box-shadow: var(--mw-glow-cyan);
}
.mw-btn--secondary:hover { background: rgba(0,245,255,0.1); }
.mw-btn--ghost {
  background: transparent;
  color: var(--mw-text-muted);
  border: 1px solid var(--mw-border);
}
.mw-btn--ghost:hover { color: var(--mw-text); border-color: var(--mw-accent); }

/* ─── HERO ─── */
.mw-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 64px 16px 48px;
  overflow: hidden;
  background-color: var(--mw-bg-deep);
}
.mw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,4,24,0.85) 0%, rgba(18,8,50,0.7) 60%, rgba(10,4,24,0.9) 100%);
  z-index: 1;
}
.mw-hero .mw-container { position: relative; z-index: 2; }
.mw-hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.mw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mw-accent3);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.mw-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.mw-hero__preview {
  background: var(--mw-bg-card);
  border: 1px solid var(--mw-ring);
  border-radius: var(--mw-radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255,45,120,0.15);
}
.mw-hero__preview-title {
  font-family: var(--mw-display);
  font-size: 14px;
  color: var(--mw-accent3);
  margin-bottom: 16px;
  text-shadow: var(--mw-glow-gold);
}
/* game-ui */
.mw-hero__preview-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.mw-hero__reel-cell {
  background: var(--mw-bg-mid);
  border: 1px solid var(--mw-border);
  border-radius: 8px;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mw-hero__reel-cell img { width: 40px; height: 40px; object-fit: contain; }
.mw-hero__preview-cta {
  display: block;
  background: var(--mw-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--mw-radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  box-shadow: var(--mw-glow-pink);
  margin-top: 8px;
}
.mw-hero__preview-cta:hover { opacity: 0.88; }
.mw-hero__preview-note {
  font-size: 11px;
  color: var(--mw-text-dim);
  margin-top: 10px;
}

@media (min-width: 768px) {
  .mw-hero { padding: 120px 0 80px; min-height: 640px; }
  .mw-hero__grid { grid-template-columns: 1fr 1fr; }
}

/* ─── FEATURES ─── */
.mw-features-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.mw-feature-card {
  background: var(--mw-bg-card);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mw-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,45,120,0.2);
}
.mw-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mw-accent), var(--mw-accent2));
}
.mw-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--mw-accent), var(--mw-accent4));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: var(--mw-glow-pink);
}
.mw-feature-card h3 {
  font-family: var(--mw-display);
  font-size: 16px;
  color: var(--mw-text);
  margin-bottom: 10px;
}
.mw-feature-card p { font-size: 14px; color: var(--mw-text-muted); line-height: 1.65; }

@media (min-width: 576px) {
  .mw-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .mw-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── ABOUT STRIP ─── */
.mw-about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.mw-about-image {
  border-radius: var(--mw-radius-lg);
  overflow: hidden;
  position: relative;
}
.mw-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--mw-accent);
  border-radius: var(--mw-radius-lg);
  box-shadow: inset 0 0 30px rgba(255,45,120,0.15);
  pointer-events: none;
}
.mw-about-image img { width: 100%; height: 300px; object-fit: cover; display: block; }
.mw-about-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
.mw-about-stat { text-align: center; }
.mw-about-stat-num {
  font-family: var(--mw-display);
  font-size: 28px;
  color: var(--mw-accent3);
  display: block;
  text-shadow: var(--mw-glow-gold);
}
.mw-about-stat-lbl { font-size: 12px; color: var(--mw-text-muted); }

@media (min-width: 768px) {
  .mw-about-grid { grid-template-columns: 1fr 1fr; }
  .mw-about-image img { height: 400px; }
}

/* ─── PLATFORM FACTS ─── */
.mw-platform-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.mw-platform-fact {
  background: var(--mw-bg-card);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.mw-platform-fact-num {
  font-family: var(--mw-display);
  font-size: 36px;
  color: var(--mw-accent2);
  flex-shrink: 0;
  min-width: 64px;
  text-align: center;
  text-shadow: var(--mw-glow-cyan);
}
.mw-platform-fact-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--mw-text);
  margin-bottom: 4px;
}
.mw-platform-fact-text p { font-size: 13px; color: var(--mw-text-muted); }

@media (min-width: 576px) { .mw-platform-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .mw-platform-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── WHY US ─── */
.mw-why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.mw-why-card {
  background: var(--mw-bg-card);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius);
  padding: 24px;
  display: flex;
  gap: 16px;
}
.mw-why-num {
  font-family: var(--mw-display);
  font-size: 22px;
  color: var(--mw-accent);
  flex-shrink: 0;
  min-width: 44px;
  text-shadow: var(--mw-glow-pink);
}
.mw-why-body h4 { font-size: 15px; font-weight: 700; color: var(--mw-text); margin-bottom: 6px; }
.mw-why-body p { font-size: 13px; color: var(--mw-text-muted); line-height: 1.6; }

@media (min-width: 576px) { .mw-why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .mw-why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── UPDATES ─── */
.mw-updates-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.mw-update-card {
  background: var(--mw-bg-card);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius-lg);
  overflow: hidden;
}
.mw-update-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.mw-update-card__body { padding: 18px 20px; }
.mw-update-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mw-accent2);
  margin-bottom: 8px;
}
.mw-update-card h3 { font-size: 15px; font-weight: 700; color: var(--mw-text); margin-bottom: 8px; }
.mw-update-card p { font-size: 13px; color: var(--mw-text-muted); }

@media (min-width: 576px) { .mw-updates-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .mw-updates-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── FAQ ─── */
.mw-faq-list { max-width: 720px; margin: 0 auto; }
.mw-faq-item {
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.mw-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--mw-bg-card);
  font-weight: 600;
  font-size: 15px;
  color: var(--mw-text);
  gap: 12px;
  border: none;
  width: 100%;
  text-align: left;
  min-height: 44px;
}
.mw-faq-q:hover { background: var(--mw-bg-card2); }
.mw-faq-icon {
  font-size: 20px;
  color: var(--mw-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.mw-faq-item.mw-faq-open .mw-faq-icon { transform: rotate(45deg); }
.mw-faq-a {
  display: none;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--mw-text-muted);
  line-height: 1.7;
  background: var(--mw-bg-mid);
}
.mw-faq-item.mw-faq-open .mw-faq-a { display: block; }

/* ─── CONTEXT STRIP ─── */
.mw-context-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.mw-context-col h3 {
  font-family: var(--mw-display);
  font-size: 16px;
  color: var(--mw-accent3);
  margin-bottom: 14px;
  text-shadow: var(--mw-glow-gold);
}
.mw-context-col p,
.mw-context-col li { font-size: 14px; color: var(--mw-text-muted); line-height: 1.7; margin-bottom: 8px; }
.mw-context-col ul { padding-left: 18px; }
.mw-context-info { border-top: 1px solid var(--mw-border); margin-top: 40px; padding-top: 24px; display: grid; grid-template-columns: 1fr; gap: 20px; }
.mw-context-info-item h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--mw-accent2); margin-bottom: 6px; }
.mw-context-info-item p { font-size: 14px; color: var(--mw-text-muted); }

@media (min-width: 768px) { .mw-context-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 576px) { .mw-context-info { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .mw-context-info { grid-template-columns: repeat(4, 1fr); } }

/* ─── FOOTER ─── */
.mw-footer {
  background: var(--mw-bg-footer);
  border-top: 1px solid var(--mw-ring);
  padding: 56px 0 24px;
}
.mw-footer__cols { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
.mw-footer-col h4 {
  font-family: var(--mw-display);
  font-size: 13px;
  color: var(--mw-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mw-footer-col ul { list-style: none; }
.mw-footer-col li { margin-bottom: 10px; }
.mw-footer-col a { color: var(--mw-text-muted); text-decoration: none; font-size: 14px; }
.mw-footer-col a:hover { color: var(--mw-accent2); }
.mw-footer-col p { font-size: 13px; color: var(--mw-text-muted); line-height: 1.7; margin-bottom: 10px; }
.mw-footer-col address { font-style: normal; font-size: 13px; color: var(--mw-text-dim); line-height: 1.7; }

@media (min-width: 576px) { .mw-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .mw-footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.mw-footer__rg {
  border-top: 1px solid var(--mw-ring);
  padding-top: 32px;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.mw-footer-rg-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mw-accent2);
  margin-bottom: 10px;
}
.mw-footer-rg-col p { font-size: 12px; color: var(--mw-text-dim); line-height: 1.7; }
.mw-footer-rg-col a { color: var(--mw-accent2); text-decoration: none; font-size: 12px; }

@media (min-width: 768px) { .mw-footer__rg { grid-template-columns: 1fr 1fr 1fr; } }

.mw-footer-regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--mw-ring);
  margin-top: 16px;
}
.mw-footer-regulators a {
  display: inline-flex;
  align-items: center;
  background: #1a0d42;
  border: 1px solid var(--mw-border);
  border-radius: 8px;
  padding: 8px 12px;
  transition: border-color 0.2s;
}
.mw-footer-regulators a:hover { border-color: var(--mw-accent2); }
.mw-footer-regulators img { display: block; }

.mw-footer__disclaimer {
  border-top: 1px solid var(--mw-ring);
  margin-top: 20px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--mw-text-dim);
  line-height: 1.7;
}
.mw-footer__bottom {
  border-top: 1px solid var(--mw-ring);
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--mw-text-dim);
}
.mw-footer__bottom a { color: var(--mw-text-dim); text-decoration: none; }

/* ─── AGE GATE ─── */
.mw-age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,3,26,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mw-age-overlay.mw-overlay-active { display: flex; }
.mw-age-card {
  background: var(--mw-bg-card);
  border: 1px solid var(--mw-accent);
  border-radius: var(--mw-radius-lg);
  padding: 36px 28px;
  max-width: min(460px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,45,120,0.3);
}
.mw-age-card__icon { font-size: 48px; margin-bottom: 16px; }
.mw-age-card h2 {
  font-family: var(--mw-display);
  font-size: 22px;
  color: var(--mw-text);
  margin-bottom: 14px;
  text-shadow: var(--mw-glow-pink);
}
.mw-age-card p { font-size: 14px; color: var(--mw-text-muted); margin-bottom: 20px; line-height: 1.6; }
.mw-age-card__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mw-age-card__actions button {
  padding: 12px 28px;
  border-radius: var(--mw-radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
  min-width: 120px;
  border: none;
}
.mw-age-yes { background: var(--mw-accent); color: #fff; box-shadow: var(--mw-glow-pink); }
.mw-age-no { background: var(--mw-bg-mid); color: var(--mw-text-muted); border: 1px solid var(--mw-border) !important; }

/* ─── COOKIE BANNER ─── */
.mw-cookies {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--mw-bg-card);
  border: 1px solid var(--mw-border);
  border-radius: var(--mw-radius);
  padding: 16px;
  z-index: 9000;
  display: none;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.mw-cookies.mw-ck-visible { display: flex; }
.mw-cookies p { font-size: 13px; color: var(--mw-text-muted); flex: 1; line-height: 1.5; }
.mw-cookies a { color: var(--mw-accent2); }
.mw-cookies button {
  padding: 9px 22px;
  border-radius: var(--mw-radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  border: none;
  min-height: 44px;
}
.mw-ck-accept { background: var(--mw-accent); color: #fff; }
.mw-ck-decline { background: var(--mw-bg-mid); color: var(--mw-text-muted); border: 1px solid var(--mw-border) !important; }

@media (min-width: 600px) {
  .mw-cookies {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 380px;
    padding: 20px 24px;
  }
}

/* ─── GAME MACHINE (Slot 3×5) ─── */
.mw-game-machine {
  background: var(--mw-bg-card);
  border: 2px solid var(--mw-accent);
  border-radius: var(--mw-radius-lg);
  padding: 24px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(255,45,120,0.25), inset 0 0 20px rgba(255,45,120,0.05);
}
.mw-game-top { text-align: center; margin-bottom: 16px; }
.mw-game-marquee {
  font-family: var(--mw-display);
  font-size: 14px;
  color: var(--mw-accent3);
  letter-spacing: 2px;
  text-shadow: var(--mw-glow-gold);
  margin-bottom: 10px;
}
.mw-game-lights {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.mw-game-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mw-accent);
  animation: mw-blink 1.4s infinite alternate;
}
.mw-game-lights span:nth-child(2n)   { background: var(--mw-accent2); animation-delay: 0.3s; }
.mw-game-lights span:nth-child(3n)   { background: var(--mw-accent3); animation-delay: 0.6s; }
.mw-game-lights span:nth-child(4n)   { background: var(--mw-accent4); animation-delay: 0.9s; }
@keyframes mw-blink {
  0%   { opacity: 1; box-shadow: 0 0 8px currentColor; }
  100% { opacity: 0.3; box-shadow: none; }
}

/* game-ui */
.mw-game-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.mw-stat {
  background: var(--mw-bg-mid);
  border: 1px solid var(--mw-border);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
}
.mw-stat-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--mw-text-dim); margin-bottom: 2px; }
.mw-stat-val { display: block; font-family: var(--mw-display); font-size: 18px; color: var(--mw-accent3); }
.mw-stat-win { color: var(--mw-success); }

@media (min-width: 576px) { .mw-game-stats { grid-template-columns: repeat(4, 1fr); } }

.mw-columns-frame,
.mw-reels-frame {
  position: relative;
  background: var(--mw-bg-deep);
  border: 2px solid var(--mw-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
/* game-ui */
.mw-columns-window,
.mw-reels-window {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  height: 264px;
}
.mw-column,
.mw-reel {
  border-right: 1px solid var(--mw-border);
  overflow: hidden;
  height: 264px;
  background-color: var(--mw-bg-deep);
  color: var(--mw-accent3);
}
.mw-column:last-child, .mw-reel:last-child { border-right: none; }
.mw-column-strip, .mw-reel-strip { will-change: transform; }
.mw-symbol {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background-color: var(--mw-bg-deep);
  color: var(--mw-accent3);
}
.mw-symbol img { width: 52px; height: 52px; object-fit: contain; }

/* game-ui — mobile base: compact symbol cells, expand at wider breakpoint */
.mw-symbol { height: 70px; }
.mw-symbol img { width: 40px; height: 40px; }
.mw-columns-window, .mw-reels-window { height: 210px; }
.mw-column, .mw-reel { height: 210px; }
@media (min-width: 481px) {
  .mw-columns-window, .mw-reels-window { height: 264px; }
  .mw-column, .mw-reel { height: 264px; }
  .mw-symbol { height: 88px; }
  .mw-symbol img { width: 52px; height: 52px; }
}

.mw-paylines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.mw-payline { stroke: var(--mw-accent3); stroke-width: 2px; opacity: 0; fill: none; }
.mw-payline-active { opacity: 0.7; filter: drop-shadow(0 0 6px var(--mw-accent3)); }
.mw-win-popup {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: var(--mw-accent);
  color: #fff;
  border-radius: var(--mw-radius);
  padding: 12px 24px;
  text-align: center;
  transition: transform 0.2s;
  box-shadow: 0 0 30px var(--mw-accent);
  pointer-events: none;
  z-index: 10;
}
.mw-win-popup-show { transform: translate(-50%,-50%) scale(1) !important; }
.mw-win-popup-label { display: block; font-family: var(--mw-display); font-size: 14px; letter-spacing: 2px; }
.mw-win-popup-amount { display: block; font-family: var(--mw-display); font-size: 32px; color: var(--mw-accent3); text-shadow: var(--mw-glow-gold); }

.mw-game-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.mw-stake-group,
.mw-bet-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.mw-ctrl-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--mw-text-muted); }
.mw-stake-btn,
.mw-bet-btn {
  background: var(--mw-bg-mid);
  border: 1px solid var(--mw-border);
  color: var(--mw-text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.2s;
}
.mw-stake-btn:hover,
.mw-stake-active,
.mw-bet-btn:hover,
.mw-bet-active {
  background: var(--mw-accent);
  border-color: var(--mw-accent);
  color: #fff;
  box-shadow: var(--mw-glow-pink);
}
.mw-play-btn,
.mw-spin-btn {
  background: linear-gradient(135deg, var(--mw-accent), var(--mw-accent4));
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: var(--mw-radius);
  font-family: var(--mw-display);
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  min-height: 54px;
  box-shadow: var(--mw-glow-pink);
  transition: all 0.2s;
  width: 100%;
  max-width: 280px;
}
.mw-play-btn:hover, .mw-spin-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.mw-play-btn:disabled, .mw-spin-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.mw-extra-controls { display: flex; gap: 10px; }
.mw-aux-btn {
  background: var(--mw-bg-mid);
  border: 1px solid var(--mw-border);
  color: var(--mw-text-muted);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  transition: all 0.2s;
}
.mw-aux-btn:hover { border-color: var(--mw-accent2); color: var(--mw-accent2); }
.mw-aux-active { border-color: var(--mw-accent2) !important; color: var(--mw-accent2) !important; }
.mw-game-message {
  text-align: center;
  font-size: 13px;
  color: var(--mw-text-muted);
  padding: 10px;
  min-height: 40px;
  border-radius: 8px;
  background: var(--mw-bg-mid);
  margin-top: 12px;
}

@media (min-width: 576px) {
  .mw-game-controls { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .mw-play-btn,
.mw-spin-btn { width: auto; }
}

/* ─── PAYTABLE ─── */
.mw-paytable { width: 100%; border-collapse: collapse; margin-top: 24px; }
.mw-paytable th, .mw-paytable td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--mw-border);
  font-size: 14px;
}
.mw-paytable th { color: var(--mw-accent3); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.mw-paytable td { color: var(--mw-text-muted); }
.mw-paytable td:last-child { color: var(--mw-accent); font-weight: 700; font-family: var(--mw-display); }
.mw-paytable tr:hover td { background: var(--mw-bg-card); }
.mw-sym-mini { width: 32px; height: 32px; object-fit: contain; vertical-align: middle; margin-right: 8px; }

/* ─── AVATARS (no people photos) ─── */
.mw-avatar {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mw-display);
  font-size: 22px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
}
.mw-avatar--rounded-sq { border-radius: 16%; }
.mw-avatar--sharp-sq   { border-radius: 0; }
.mw-avatar--circle     { border-radius: 50%; }
.mw-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.mw-avatar--sm { width: 40px; height: 40px; font-size: 14px; }

/* ─── SUBPAGE HERO ─── */
.mw-sub-hero {
  position: relative;
  padding: 64px 16px 48px;
  background-color: var(--mw-bg-mid);
  overflow: hidden;
}
.mw-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,4,24,0.6), rgba(10,4,24,0.85));
  z-index: 1;
}
.mw-sub-hero .mw-container { position: relative; z-index: 2; }
.mw-sub-hero h1 {
  font-family: var(--mw-display);
  font-size: 28px;
  color: var(--mw-text);
  margin-bottom: 14px;
  text-shadow: var(--mw-glow-pink);
}
.mw-sub-hero .mw-lead { max-width: 600px; }

@media (min-width: 768px) {
  .mw-sub-hero { padding: 96px 0 64px; }
  .mw-sub-hero h1 { font-size: 36px; }
}

/* ─── RESPONSIBLE GAMING SECTION ─── */
.mw-rg {
  background: var(--mw-bg-mid);
  border: 1px solid var(--mw-warn);
  border-radius: var(--mw-radius-lg);
  padding: 32px 24px;
  margin: 0 auto;
  max-width: 900px;
}
.mw-rg h2 { color: var(--mw-warn); margin-bottom: 14px; }
.mw-rg p { color: var(--mw-text-muted); font-size: 14px; margin-bottom: 10px; line-height: 1.7; }
.mw-rg ul { padding-left: 20px; }
.mw-rg li { color: var(--mw-text-muted); font-size: 14px; margin-bottom: 8px; }
.mw-rg a { color: var(--mw-accent2); }
.mw-rg-helpline {
  background: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--mw-text-muted);
}
.mw-rg-helpline strong { color: var(--mw-warn); }

/* ─── MISC ─── */
.mw-badge-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  color: var(--mw-accent2);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.mw-divider { border: none; border-top: 1px solid var(--mw-border); margin: 32px 0; }
.mw-tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.mw-tag {
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.2);
  color: var(--mw-text-muted);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--mw-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--mw-ring); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mw-accent); }

/* ─── FOCUS ─── */
:focus-visible { outline: 2px solid var(--mw-accent2); outline-offset: 2px; }

/* ─── SELECTION ─── */
::selection { background: rgba(255,45,120,0.3); color: #fff; }

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
