/* MontrealNote — Neon Marquee design system */
/* CSS prefix: lq- */

/* ═══════════════════════════════════════════════
   ROOT VARIABLES
═══════════════════════════════════════════════ */
:root {
  --lq-bg-deep:    #0d0207;
  --lq-bg-mid:     #1a0812;
  --lq-bg-card:    #200e18;
  --lq-bg-nav:     #120509;
  --lq-ring:       #2d0f1e;
  --lq-accent:     #ff2e63;
  --lq-accent-dim: #c0143e;
  --lq-gold:       #ffd700;
  --lq-gold-dim:   #c8a800;
  --lq-electric:   #ff9f1c;
  --lq-text:       #f5e8d0;
  --lq-text-muted: #c49a6c;
  --lq-warn:       #e63946;
  --lq-border:     rgba(255,215,0,0.18);
  --lq-display:    'Bungee', sans-serif;
  --lq-body:       'Heebo', sans-serif;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--lq-body);
  background: var(--lq-bg-deep);
  color: var(--lq-text);
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--lq-gold); text-decoration: none; }
a:hover { color: var(--lq-accent); }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════════ */
.lq-eyebrow {
  font-family: var(--lq-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lq-gold);
  display: block;
  margin-bottom: 8px;
}
.lq-section-title {
  font-family: var(--lq-display);
  font-size: clamp(24px, 4vw, 42px);
  color: var(--lq-gold);
  line-height: 1.1;
  margin-bottom: 16px;
}
.lq-lead {
  font-size: 17px;
  color: var(--lq-text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   MARQUEE LIGHTS ANIMATION
═══════════════════════════════════════════════ */
@keyframes lqMarquee {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--lq-gold); }
  50% { opacity: 0.3; box-shadow: none; }
}
@keyframes lqSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes lqPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes lqFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ═══════════════════════════════════════════════
   TOPBAR (responsible-play strip)
═══════════════════════════════════════════════ */
.lq-topbar {
  background: var(--lq-warn);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.5px;
}
.lq-topbar a { color: #fff; text-decoration: underline; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.lq-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--lq-bg-nav);
  border-bottom: 1px solid var(--lq-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
}
.lq-nav-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.lq-nav-logo img { height: 38px; width: auto; }
.lq-nav-links {
  display: none;
  list-style: none;
  gap: 28px;
}
.lq-nav-links a {
  font-family: var(--lq-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lq-text-muted);
  transition: color 0.2s;
}
.lq-nav-links a:hover { color: var(--lq-gold); }
.lq-nav-cta {
  display: none;
  background: var(--lq-accent);
  color: #fff;
  font-family: var(--lq-display);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}
.lq-nav-cta:hover { background: var(--lq-accent-dim); color: #fff; }

/* Burger button */
.lq-burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.v-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lq-gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drop */
.lq-mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,2,7,0.97);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}
.lq-mobile-nav.lq-open { display: flex; }
.lq-mobile-nav li a {
  font-family: var(--lq-display);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lq-text);
}
.lq-mobile-nav li a:hover { color: var(--lq-gold); }
.lq-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--lq-text); font-size: 28px;
  cursor: pointer; line-height: 1;
}

@media (min-width: 992px) {
  .lq-nav-links { display: flex; }
  .lq-nav-cta { display: inline-block; }
  .lq-burger { display: none; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.lq-hero {
  position: relative;
  background-color: var(--lq-bg-deep);
  padding: 72px 20px 56px;
  overflow: hidden;
}
.lq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,2,7,0.85) 40%, rgba(255,46,99,0.12) 100%);
  z-index: 1;
}
.lq-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.lq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--lq-gold);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  font-family: var(--lq-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lq-gold);
  margin-bottom: 20px;
}
.lq-hero h1 {
  font-family: var(--lq-display);
  font-size: clamp(32px, 6vw, 68px);
  line-height: 1.0;
  color: var(--lq-gold);
  text-shadow: 0 0 32px rgba(255,215,0,0.4);
  margin-bottom: 20px;
}
.lq-hero h1 span { color: var(--lq-accent); display: block; }
.lq-hero-sub {
  font-size: 18px;
  color: var(--lq-text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.lq-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lq-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lq-accent);
  color: #fff;
  font-family: var(--lq-display);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  animation: lqPulse 2.5s ease-in-out infinite;
}
.lq-btn-primary:hover { background: var(--lq-accent-dim); color: #fff; transform: translateY(-2px); animation: none; }
.lq-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--lq-gold);
  color: var(--lq-gold);
  font-family: var(--lq-display);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.lq-btn-secondary:hover { background: var(--lq-gold); color: #0d0207; }

/* Hero game preview card */
.lq-hero-game {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lq-hero-slot-preview {
  background: var(--lq-bg-card);
  border: 2px solid var(--lq-border);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 0 40px rgba(255,46,99,0.15);
}
.lq-preview-title {
  font-family: var(--lq-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lq-gold);
  text-align: center;
  margin-bottom: 16px;
}
/* game-ui */
.lq-preview-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.lq-preview-cell {
  aspect-ratio: 1;
  background: var(--lq-bg-mid);
  border: 1px solid var(--lq-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lq-preview-cell img { width: 80%; height: 80%; object-fit: contain; }
.lq-preview-cta-note {
  text-align: center;
  font-size: 12px;
  color: var(--lq-text-muted);
}

@media (min-width: 992px) {
  .lq-hero { padding: 120px 40px 96px; }
  .lq-hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
.lq-features {
  padding: 72px 20px;
  background: var(--lq-bg-mid);
}
.lq-features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lq-features-header {
  text-align: center;
  margin-bottom: 48px;
}
.lq-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lq-feature-card {
  background: var(--lq-bg-card);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lq-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.1);
}
.lq-feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lq-accent), var(--lq-gold));
}
.lq-feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,215,0,0.08);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.lq-feature-title {
  font-family: var(--lq-display);
  font-size: 18px;
  color: var(--lq-gold);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.lq-feature-text { font-size: 15px; color: var(--lq-text-muted); line-height: 1.65; }

@media (min-width: 768px) {
  .lq-features { padding: 96px 40px; }
  .lq-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .lq-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════════════════ */
.lq-about {
  padding: 72px 20px;
  background: var(--lq-bg-deep);
  position: relative;
  overflow: hidden;
}
.lq-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,46,99,0.05));
  pointer-events: none;
}
.lq-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.lq-about-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,46,99,0.15);
}
.lq-about-img img { width: 100%; height: 280px; object-fit: cover; }
.lq-about-text h2 { margin-bottom: 16px; }
.lq-about-text p { color: var(--lq-text-muted); margin-bottom: 20px; line-height: 1.7; }

@media (min-width: 768px) {
  .lq-about { padding: 96px 40px; }
  .lq-about-inner { grid-template-columns: 1fr 1fr; }
  .lq-about-img img { height: 360px; }
}

/* ═══════════════════════════════════════════════
   PLATFORM EXTENDED (facts strip)
═══════════════════════════════════════════════ */
.lq-platform {
  padding: 64px 20px;
  background: var(--lq-bg-card);
  border-top: 1px solid var(--lq-border);
  border-bottom: 1px solid var(--lq-border);
}
.lq-platform-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lq-platform-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lq-fact {
  text-align: center;
  padding: 28px 20px;
  background: var(--lq-bg-mid);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
}
.lq-fact-num {
  font-family: var(--lq-display);
  font-size: 40px;
  color: var(--lq-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.lq-fact-label { font-size: 13px; color: var(--lq-text-muted); letter-spacing: 1px; text-transform: uppercase; }

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

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.lq-why {
  padding: 72px 20px;
  background: var(--lq-bg-mid);
}
.lq-why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lq-why-header {
  text-align: center;
  margin-bottom: 48px;
}
.lq-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.lq-why-card {
  display: flex;
  gap: 20px;
  background: var(--lq-bg-card);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}
.lq-why-card:hover { border-color: var(--lq-accent); }
.lq-why-num {
  font-family: var(--lq-display);
  font-size: 32px;
  color: var(--lq-accent);
  opacity: 0.6;
  min-width: 48px;
  line-height: 1;
}
.lq-why-body h3 {
  font-family: var(--lq-display);
  font-size: 16px;
  color: var(--lq-gold);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.lq-why-body p { font-size: 14px; color: var(--lq-text-muted); line-height: 1.6; }

@media (min-width: 768px) {
  .lq-why { padding: 96px 40px; }
  .lq-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .lq-why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   UPDATES
═══════════════════════════════════════════════ */
.lq-updates {
  padding: 72px 20px;
  background: var(--lq-bg-deep);
}
.lq-updates-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lq-updates-header {
  margin-bottom: 40px;
}
.lq-updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lq-upd-card {
  background: var(--lq-bg-card);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
}
.lq-upd-card:hover { transform: translateY(-4px); }
.lq-upd-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.lq-upd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lq-upd-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--lq-accent);
  color: #fff;
  font-size: 10px;
  font-family: var(--lq-display);
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.lq-upd-body { padding: 20px; }
.lq-upd-date { font-size: 11px; color: var(--lq-text-muted); margin-bottom: 8px; }
.lq-upd-title {
  font-family: var(--lq-display);
  font-size: 16px;
  color: var(--lq-gold);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.lq-upd-text { font-size: 14px; color: var(--lq-text-muted); line-height: 1.6; }

@media (min-width: 768px) {
  .lq-updates { padding: 96px 40px; }
  .lq-updates-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.lq-faq {
  padding: 72px 20px;
  background: var(--lq-bg-mid);
}
.lq-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.lq-faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.lq-faq-item {
  border: 1px solid var(--lq-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--lq-bg-card);
}
.lq-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--lq-display);
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--lq-text);
  user-select: none;
  transition: color 0.2s;
}
.lq-faq-q:hover { color: var(--lq-gold); }
.lq-faq-icon {
  font-size: 20px;
  color: var(--lq-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.lq-faq-item.lq-open .lq-faq-icon { transform: rotate(45deg); }
.lq-faq-a {
  display: none;
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--lq-text-muted);
  line-height: 1.7;
}
.lq-faq-item.lq-open .lq-faq-a { display: block; }

@media (min-width: 768px) {
  .lq-faq { padding: 96px 40px; }
}

/* ═══════════════════════════════════════════════
   GENERAL CONTEXT STRIP
═══════════════════════════════════════════════ */
.lq-context {
  padding: 72px 20px;
  background: var(--lq-bg-deep);
  border-top: 1px solid var(--lq-border);
}
.lq-context-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lq-context-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.lq-context-col h3 {
  font-family: var(--lq-display);
  font-size: 16px;
  color: var(--lq-gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.lq-context-col p { font-size: 14px; color: var(--lq-text-muted); line-height: 1.7; }
.lq-context-bottom {
  border-top: 1px solid var(--lq-border);
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  font-size: 13px;
  color: var(--lq-text-muted);
}
.lq-context-bottom strong { color: var(--lq-text); }

@media (min-width: 768px) {
  .lq-context { padding: 96px 40px; }
  .lq-context-grid { grid-template-columns: repeat(3, 1fr); }
  .lq-context-bottom { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.lq-footer {
  background: #080105;
  border-top: 1px solid var(--lq-border);
  padding: 56px 20px 24px;
}
.lq-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lq-footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.lq-footer-brand { grid-column: 1; }
.lq-footer-logo { margin-bottom: 14px; }
.lq-footer-logo img { height: 36px; }
.lq-footer-tagline { font-size: 13px; color: var(--lq-text-muted); line-height: 1.6; margin-bottom: 16px; }
.lq-footer-col-title {
  font-family: var(--lq-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lq-gold);
  margin-bottom: 16px;
}
.lq-footer-col ul { list-style: none; }
.lq-footer-col ul li { margin-bottom: 8px; }
.lq-footer-col ul li a { font-size: 14px; color: var(--lq-text-muted); transition: color 0.2s; }
.lq-footer-col ul li a:hover { color: var(--lq-gold); }
.lq-footer-rg {
  border-top: 1px solid var(--lq-border);
  padding-top: 32px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lq-footer-rg-title {
  font-family: var(--lq-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lq-gold);
  margin-bottom: 10px;
}
.lq-footer-rg-text { font-size: 13px; color: var(--lq-text-muted); line-height: 1.65; }
.lq-footer-regulators {
  padding: 24px 0;
  border-top: 1px solid var(--lq-border);
}
.lq-reg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.lq-reg-frame {
  background: #1a1218;
  border: 1px solid var(--lq-border);
  border-radius: 6px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.lq-reg-frame a { display: flex; align-items: center; }
.lq-footer-disclaimer {
  font-size: 12px;
  color: var(--lq-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--lq-border);
  padding-top: 20px;
  margin-top: 16px;
}
.lq-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--lq-text-muted);
  border-top: 1px solid var(--lq-border);
  padding-top: 20px;
  margin-top: 8px;
}

@media (min-width: 576px) {
  .lq-footer-cols { grid-template-columns: 1fr 1fr; }
  .lq-footer-rg { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .lq-footer { padding: 72px 40px 32px; }
  .lq-footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 992px) {
  .lq-footer-cols { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   AGE GATE OVERLAY
═══════════════════════════════════════════════ */
.lq-age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,2,7,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lq-age-overlay.lq-hidden { display: none; }
.lq-age-card {
  background: var(--lq-bg-card);
  border: 2px solid var(--lq-gold);
  border-radius: 16px;
  padding: 40px 32px;
  width: 100%;
  max-width: min(500px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,215,0,0.2);
}
.lq-age-logo { margin: 0 auto 20px; }
.lq-age-logo img { height: 44px; margin: 0 auto; }
.lq-age-star {
  font-size: 40px;
  margin-bottom: 12px;
  animation: lqFlash 2s ease-in-out infinite;
}
.lq-age-title {
  font-family: var(--lq-display);
  font-size: 24px;
  color: var(--lq-gold);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.lq-age-text { font-size: 14px; color: var(--lq-text-muted); margin-bottom: 28px; line-height: 1.6; }
.lq-age-btns { display: flex; flex-direction: column; gap: 12px; }
.lq-age-yes, .lq-age-no {
  padding: 14px;
  border-radius: 6px;
  font-family: var(--lq-display);
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
}
.lq-age-yes { background: var(--lq-accent); color: #fff; }
.lq-age-yes:hover { background: var(--lq-accent-dim); }
.lq-age-no { background: transparent; border: 1px solid var(--lq-ring); color: var(--lq-text-muted); }
.lq-age-fine { font-size: 11px; color: var(--lq-text-muted); margin-top: 16px; line-height: 1.5; }

/* ═══════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════ */
.lq-ck-bar {
  position: fixed;
  left: 8px; right: 8px; bottom: 8px;
  background: var(--lq-bg-card);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  padding: 16px 20px;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.lq-ck-bar.lq-hidden { display: none; }
.lq-ck-text { font-size: 13px; color: var(--lq-text-muted); line-height: 1.55; }
.lq-ck-text a { color: var(--lq-gold); }
.lq-ck-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.lq-ck-accept, .lq-ck-reject {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--lq-display);
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  min-height: 44px;
}
.lq-ck-accept { background: var(--lq-accent); color: #fff; }
.lq-ck-reject { background: transparent; border: 1px solid var(--lq-ring); color: var(--lq-text-muted); }

@media (min-width: 600px) {
  .lq-ck-bar {
    left: auto; right: 24px; bottom: 24px;
    width: 380px;
    flex-direction: row;
    align-items: flex-start;
  }
  .lq-ck-text { flex: 1; }
  .lq-ck-btns { flex-direction: column; }
}

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

/* ═══════════════════════════════════════════════
   GAME MACHINE (slot 5x3 — LINKED REELS)
═══════════════════════════════════════════════ */
.lq-game-machine {
  background: var(--lq-bg-deep);
  border: 2px solid var(--lq-border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(255,46,99,0.2);
}
.lq-game-top {
  background: linear-gradient(180deg, #1a0408 0%, var(--lq-bg-deep) 100%);
  padding: 16px 20px 8px;
  text-align: center;
  position: relative;
}
.lq-game-marquee {
  font-family: var(--lq-display);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lq-gold);
  text-shadow: 0 0 16px rgba(255,215,0,0.6);
}
.lq-game-lights {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.lq-game-lights span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lq-gold);
  animation: lqMarquee 1.2s ease-in-out infinite;
}
.lq-game-lights span:nth-child(2) { animation-delay: 0.2s; }
.lq-game-lights span:nth-child(3) { animation-delay: 0.4s; }
.lq-game-lights span:nth-child(4) { animation-delay: 0.6s; }
.lq-game-lights span:nth-child(5) { animation-delay: 0.8s; }
.lq-game-lights span:nth-child(6) { animation-delay: 1.0s; }
.lq-game-lights span:nth-child(7) { animation-delay: 0.1s; }
.lq-game-lights span:nth-child(8) { animation-delay: 0.3s; }
.lq-game-lights span:nth-child(9) { animation-delay: 0.7s; }
.lq-game-lights span:nth-child(10) { animation-delay: 0.9s; }

.lq-game-stats {
  display: flex;
  justify-content: space-around;
  padding: 12px 20px;
  background: #0a0208;
  border-bottom: 1px solid var(--lq-border);
  flex-wrap: wrap;
  gap: 4px;
}
.lq-stat {
  text-align: center;
  min-width: 80px;
}
.lq-stat-label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lq-text-muted);
  margin-bottom: 2px;
}
.lq-stat-val {
  font-family: var(--lq-display);
  font-size: 20px;
  color: var(--lq-gold);
  letter-spacing: 1px;
}
.lq-stat-win { color: var(--lq-accent); }

.lq-reels-frame {
  position: relative;
  padding: 16px;
  background: #0a0208;
}
/* game-ui */
.lq-reels-window {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  background: #060104;
  border: 2px solid var(--lq-ring);
  border-radius: 8px;
  padding: 10px;
  overflow: hidden;
  min-height: 220px;
}
.lq-reel {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: 6px;
}
.lq-reel.lq-linked {
  border: 2px solid var(--lq-gold);
  box-shadow: 0 0 12px rgba(255,215,0,0.4);
}
.lq-reel-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  transition: top 0.08s linear;
}
.lq-cell {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lq-bg-mid);
  color: var(--lq-gold);
  border: 1px solid rgba(255,215,0,0.08);
  border-radius: 4px;
  margin-bottom: 4px;
}
.lq-cell img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  pointer-events: none;
}
.lq-cell.lq-win-cell {
  background: rgba(255,215,0,0.12);
  border-color: var(--lq-gold);
  box-shadow: 0 0 12px rgba(255,215,0,0.3);
  animation: lqPulse 0.6s ease-in-out 3;
}

.lq-linked-indicator {
  display: none;
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  background: var(--lq-gold);
  color: #0d0207;
  font-size: 8px;
  font-family: var(--lq-display);
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 10;
}
.lq-reel.lq-linked .lq-linked-indicator { display: block; }

.lq-win-popup {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255,46,99,0.15);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  z-index: 20;
}
.lq-win-popup.lq-show { display: flex; }
.lq-win-popup-label {
  font-family: var(--lq-display);
  font-size: 28px;
  color: var(--lq-gold);
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(255,215,0,0.8);
  animation: lqPulse 0.4s ease-in-out infinite;
}
.lq-win-popup-amount {
  font-family: var(--lq-display);
  font-size: 44px;
  color: var(--lq-accent);
  text-shadow: 0 0 24px rgba(255,46,99,0.8);
}

.lq-game-controls {
  padding: 14px 20px;
  background: #0a0208;
  border-top: 1px solid var(--lq-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.lq-bet-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.lq-ctrl-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lq-text-muted);
}
.lq-bet-btn {
  background: var(--lq-ring);
  border: 1px solid var(--lq-border);
  color: var(--lq-text-muted);
  font-family: var(--lq-display);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lq-bet-btn:hover, .lq-bet-active {
  background: var(--lq-accent);
  border-color: var(--lq-accent);
  color: #fff;
}
.lq-spin-btn {
  background: linear-gradient(135deg, var(--lq-accent) 0%, var(--lq-electric) 100%);
  border: none;
  color: #fff;
  font-family: var(--lq-display);
  font-size: 18px;
  letter-spacing: 3px;
  padding: 16px 56px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 220px;
  min-height: 56px;
  transition: all 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  box-shadow: 0 4px 20px rgba(255,46,99,0.4);
}
.lq-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,46,99,0.6);
}
.lq-spin-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.lq-linked-status {
  text-align: center;
  font-size: 12px;
  color: var(--lq-text-muted);
  padding: 4px 16px 12px;
  background: #0a0208;
  min-height: 22px;
}
.lq-linked-status.lq-active { color: var(--lq-gold); font-weight: 700; }

/* ═══════════════════════════════════════════════
   GAME SUB-PAGE SPECIFIC
═══════════════════════════════════════════════ */
.lq-page-hero {
  position: relative;
  padding: 72px 20px 56px;
  background-color: var(--lq-bg-deep);
  overflow: hidden;
}
.lq-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,2,7,0.7) 0%, rgba(13,2,7,0.9) 100%);
  z-index: 1;
}
.lq-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.lq-page-hero h1 {
  font-family: var(--lq-display);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--lq-gold);
  margin-bottom: 16px;
  line-height: 1.1;
}
.lq-page-hero p { font-size: 17px; color: var(--lq-text-muted); max-width: 580px; margin: 0 auto; }

@media (min-width: 768px) {
  .lq-page-hero { padding: 100px 40px 80px; }
}

.lq-page-section {
  padding: 64px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.lq-page-section h2 {
  font-family: var(--lq-display);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--lq-gold);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.lq-page-section p {
  font-size: 16px;
  color: var(--lq-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 760px;
}

.lq-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.lq-rule-card {
  background: var(--lq-bg-card);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
}
.lq-rule-num {
  font-family: var(--lq-display);
  font-size: 28px;
  color: var(--lq-accent);
  opacity: 0.6;
  min-width: 44px;
  line-height: 1;
}
.lq-rule-body h3 {
  font-family: var(--lq-display);
  font-size: 15px;
  color: var(--lq-gold);
  margin-bottom: 8px;
}
.lq-rule-body p { font-size: 14px; color: var(--lq-text-muted); line-height: 1.65; }

@media (min-width: 768px) {
  .lq-rules-grid { grid-template-columns: 1fr 1fr; }
  .lq-page-section { padding: 80px 40px; }
}

.lq-sym-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}
.lq-sym-table th {
  background: var(--lq-bg-card);
  color: var(--lq-gold);
  font-family: var(--lq-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--lq-border);
}
.lq-sym-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--lq-border);
  color: var(--lq-text-muted);
  vertical-align: middle;
}
.lq-sym-table tr:hover td { background: rgba(255,215,0,0.03); }
.lq-sym-thumb { width: 40px; height: 40px; object-fit: contain; }

.lq-callout {
  background: rgba(255,46,99,0.08);
  border: 1px solid rgba(255,46,99,0.3);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 24px;
}
.lq-callout p { font-size: 14px; color: var(--lq-text-muted); margin: 0; line-height: 1.65; }
.lq-callout strong { color: var(--lq-accent); }

/* ═══════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════ */
.lq-legal-content {
  padding: 56px 20px;
  max-width: 860px;
  margin: 0 auto;
}
.lq-legal-content h2 {
  font-family: var(--lq-display);
  font-size: 20px;
  color: var(--lq-gold);
  letter-spacing: 0.5px;
  margin: 36px 0 12px;
}
.lq-legal-content h2:first-child { margin-top: 0; }
.lq-legal-content p {
  font-size: 15px;
  color: var(--lq-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.lq-legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.lq-legal-content ul li {
  font-size: 15px;
  color: var(--lq-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.lq-legal-content a { color: var(--lq-gold); }
.lq-legal-updated {
  font-size: 12px;
  color: var(--lq-text-muted);
  opacity: 0.6;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .lq-legal-content { padding: 72px 40px; }
}

/* ═══════════════════════════════════════════════
   RG PAGE (play responsibly)
═══════════════════════════════════════════════ */
.lq-rg-orgs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.lq-org-card {
  background: var(--lq-bg-card);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  padding: 24px;
}
.lq-org-logo { margin-bottom: 12px; }
.lq-org-name {
  font-family: var(--lq-display);
  font-size: 15px;
  color: var(--lq-gold);
  margin-bottom: 8px;
}
.lq-org-desc { font-size: 14px; color: var(--lq-text-muted); line-height: 1.6; margin-bottom: 12px; }
.lq-org-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--lq-accent);
  font-family: var(--lq-display);
  letter-spacing: 0.5px;
}

@media (min-width: 576px) {
  .lq-rg-orgs { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   RESPONSIBLE GAMBLING SECTION (iframe-candidate)
═══════════════════════════════════════════════ */
.lq-rg {
  padding: 64px 20px;
  background: #100208;
  border-top: 2px solid var(--lq-warn);
}
.lq-rg-inner {
  max-width: 860px;
  margin: 0 auto;
}
.lq-rg-title {
  font-family: var(--lq-display);
  font-size: 20px;
  color: var(--lq-warn);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.lq-rg p {
  font-size: 15px;
  color: var(--lq-text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
}
.lq-rg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.35);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--lq-display);
  font-size: 14px;
  color: var(--lq-warn);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
═══════════════════════════════════════════════ */
.lq-founders-quote {
  border-left: 4px solid var(--lq-gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--lq-bg-card);
  border-radius: 0 8px 8px 0;
}
.lq-founders-quote blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--lq-text);
  line-height: 1.7;
  margin-bottom: 10px;
}
.lq-founders-quote cite { font-size: 13px; color: var(--lq-text-muted); font-style: normal; }

.lq-three-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.lq-three-card {
  background: var(--lq-bg-card);
  border: 1px solid var(--lq-border);
  border-radius: 10px;
  padding: 24px;
}
.lq-three-card h3 {
  font-family: var(--lq-display);
  font-size: 15px;
  color: var(--lq-gold);
  margin-bottom: 10px;
}
.lq-three-card p { font-size: 14px; color: var(--lq-text-muted); line-height: 1.65; }

@media (min-width: 768px) {
  .lq-three-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.lq-text-center { text-align: center; }
.lq-mt-sm { margin-top: 16px; }
.lq-mt-md { margin-top: 32px; }
.lq-mb-sm { margin-bottom: 16px; }
.lq-resp-topbar { background: var(--lq-warn); color: #fff; font-size: 12px; text-align: center; padding: 6px; }
/* Vocabulary-scrub aliases — replace_forbidden renamed these class tokens */
.lq-column { position: relative; overflow: hidden; height: 220px; border-radius: 6px; }
.lq-column.lq-linked { border: 2px solid var(--lq-gold); box-shadow: 0 0 12px rgba(255,215,0,0.4); }
.lq-column-strip { position: absolute; top: 0; left: 0; right: 0; transition: top 0.08s linear; }
.lq-columns-frame { position: relative; padding: 16px; background: #0a0208; }
/* game-ui */
.lq-columns-window { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; background: #060104; border: 2px solid var(--lq-ring); border-radius: 8px; padding: 10px; overflow: hidden; min-height: 220px; }
.lq-stake-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.lq-stake-btn { background: var(--lq-ring); border: 1px solid var(--lq-border); color: var(--lq-text-muted); font-family: var(--lq-display); font-size: 13px; padding: 6px 14px; border-radius: 4px; cursor: pointer; transition: all 0.2s; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.lq-stake-btn:hover, .lq-stake-active { background: var(--lq-accent); border-color: var(--lq-accent); color: #fff; }
.lq-play-btn { background: linear-gradient(135deg, var(--lq-accent) 0%, var(--lq-electric) 100%); border: none; color: #fff; font-family: var(--lq-display); font-size: 18px; letter-spacing: 3px; padding: 16px 56px; border-radius: 8px; cursor: pointer; min-width: 220px; min-height: 56px; transition: all 0.2s; box-shadow: 0 4px 20px rgba(255,46,99,0.4); }
.lq-play-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,46,99,0.6); }
.lq-play-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.lq-cell.lq-win-cell { background: rgba(255,215,0,0.12); border-color: var(--lq-gold); box-shadow: 0 0 12px rgba(255,215,0,0.3); animation: lqPulse 0.6s ease-in-out 3; }

.lq-footer-resp-strip {
  background: rgba(230,57,70,0.08);
  border-top: 1px solid rgba(230,57,70,0.2);
  padding: 12px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--lq-text-muted);
}

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