/* ============================================================
   LINEMAKER — UNIFIED STYLESHEET
   Single source of truth for all pages.
   No page-specific <style> blocks needed anywhere.
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:            #06060a;
  --surface:       #0c0c12;
  --surface2:      #111118;
  --surface3:      #16161f;
  --border:        rgba(255,255,255,0.06);
  --border-mid:    rgba(255,255,255,0.10);
  --border-bright: rgba(255,255,255,0.14);
  --text:          #e2e2ee;
  --text-dim:      #9898b0;
  --muted:         #5a5a72;
  --accent:        #8b5cf6;
  --accent-light:  #a78bfa;
  --accent-dim:    rgba(139,92,246,0.10);
  --accent-glow:   rgba(139,92,246,0.22);
  --accent-border: rgba(139,92,246,0.28);
  --gold:          #f59e0b;
  --green:         #34d399;
  --green-dim:     rgba(52,211,153,0.10);
  --green-border:  rgba(52,211,153,0.20);

  --font-display: 'Cabinet Grotesk', 'Instrument Sans', sans-serif;
  --font-body:    'Instrument Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:    14px;
  --radius-lg: 20px;
  --radius-sm: 8px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

/* ============================================================
   HEADER  (injected by components.js into #lm-header)
   ============================================================ */
#lm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(6,6,10,0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.lm-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.lm-logo-img {
  height: 24px;
  width: auto;
  display: block;
}

#lm-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
#lm-header nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.18s;
}
#lm-header nav a:hover { color: var(--text); }

.lm-nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  box-shadow: 0 0 20px var(--accent-glow);
  transition: opacity 0.18s, transform 0.18s !important;
}
.lm-nav-cta:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
}

/* ============================================================
   FOOTER  (injected by components.js into #lm-footer)
   ============================================================ */
#lm-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.lm-footer-full { padding: 68px 40px 36px; }

.lm-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.lm-footer-brand .lm-logo { display: inline-flex; }
.lm-footer-brand p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 270px;
}
.lm-footer-col h4 {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.lm-footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}
.lm-footer-col a:hover { color: var(--text); }

.lm-footer-divider { height: 1px; background: var(--border); margin-bottom: 28px; }

.lm-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.lm-footer-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 640px;
}
.lm-footer-note strong { color: var(--text-dim); }
.lm-footer-note a { color: var(--muted); text-underline-offset: 3px; }
.lm-footer-copy {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 2px;
  font-family: var(--font-mono);
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.lm-container { max-width: 1160px; margin: 0 auto; }

.lm-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.lm-section-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.lm-section-p {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 440px;
  line-height: 1.75;
}

.lm-btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 0 28px var(--accent-glow);
  transition: opacity 0.18s, transform 0.18s;
  letter-spacing: -0.01em;
}
.lm-btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.lm-btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border-mid);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s, border-color 0.18s;
}
.lm-btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--border-bright); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center top, rgba(139,92,246,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: 0; right: -100px;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 10%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 820px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  animation: fadeUp 0.5s ease both;
}
.pill-dot {
  width: 6px; height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 26px;
  animation: fadeUp 0.5s 0.08s ease both;
}
.h1-grad {
  background: linear-gradient(120deg, var(--accent-light) 0%, #c084fc 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeUp 0.5s 0.16s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.5s 0.24s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.5s 0.32s ease both;
}
.stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }
.stat-item { padding: 28px 44px; text-align: center; flex: 1; }
.stat-val {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 900;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-val .hl { color: var(--accent-light); }
.stat-label {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   HOME PAGE — REVIEWS MARQUEE
   ============================================================ */
.reviews-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  overflow: hidden;
}
.reviews-header { text-align: center; padding: 0 40px 52px; }
.marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.rcard {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  width: 320px; flex-shrink: 0;
  transition: border-color 0.2s; cursor: default;
}
.rcard:hover { border-color: var(--border-mid); }
.rcard-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.rstar { color: var(--gold); font-size: 12px; }
.rcard-text { font-size: 14px; color: #b0b0c8; line-height: 1.72; margin-bottom: 16px; font-style: italic; }
.rcard-author { display: flex; flex-direction: column; gap: 3px; }
.rcard-name { font-size: 13px; font-weight: 600; color: var(--text); }
.rcard-stat { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }

/* ============================================================
   HOME PAGE — PRICING
   ============================================================ */
.pricing-sec { background: var(--bg); padding: 96px 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.pcard:hover { border-color: var(--border-mid); transform: translateY(-3px); }
.pcard.featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(139,92,246,0.06) 100%);
  box-shadow: 0 0 40px rgba(139,92,246,0.08);
}
.pcard.featured:hover { border-color: rgba(139,92,246,0.45); }
.featured-tag {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 12px;
  border-radius: 0 0 7px 7px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  white-space: nowrap;
}
.pcard-name {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
  font-weight: 500; margin-bottom: 16px;
}
.pcard-price {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 900;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 1; margin-bottom: 4px;
}
.pcard-price sup { font-size: 20px; font-weight: 700; vertical-align: top; margin-top: 9px; display: inline-block; }
.pcard-period { font-size: 12px; color: var(--muted); margin-bottom: 14px; font-weight: 500; line-height: 1.5; }
.pcard-trial {
  display: inline-flex;
  align-items: center; gap: 5px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 11px; font-family: var(--font-mono); font-weight: 500;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pcard-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pcard-features {
  list-style: none; flex: 1;
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 26px;
}
.pcard-features li { font-size: 13.5px; color: #b0b0c8; display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.fi { color: var(--accent-light); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.fi-x { color: var(--muted); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.btn-pplan {
  display: block; text-align: center;
  padding: 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all 0.18s;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.btn-pp-accent { background: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(139,92,246,0.3); }
.btn-pp-accent:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-pp-outline { border: 1px solid var(--border-mid); color: var(--text); }
.btn-pp-outline:hover { border-color: var(--border-bright); background: rgba(255,255,255,0.04); }
.pricing-foot { text-align: center; margin-top: 26px; font-size: 13px; color: var(--muted); line-height: 1.8; }
.pricing-foot a { color: var(--accent-light); text-decoration: none; }
.pricing-foot a:hover { text-decoration: underline; }

/* ============================================================
   HOME PAGE — BLOG SECTION
   ============================================================ */
.blog-sec {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 40px;
}
.blog-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; }
.blog-all {
  font-size: 14px; color: var(--accent-light);
  text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.18s;
}
.blog-all:hover { gap: 9px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bcard {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  text-decoration: none; display: block;
  transition: border-color 0.18s, transform 0.18s;
}
.bcard:hover { border-color: var(--border-mid); transform: translateY(-3px); }
.btag {
  display: inline-flex;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  color: var(--accent-light);
  font-size: 10px; font-family: var(--font-mono); font-weight: 500;
  padding: 3px 9px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.btitle { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 9px; letter-spacing: -0.025em; }
.bexcerpt { font-size: 13.5px; color: var(--text-dim); line-height: 1.72; margin-bottom: 18px; }
.bmeta { font-size: 12px; color: var(--muted); font-family: var(--font-mono); display: flex; align-items: center; gap: 7px; }
.bmeta-dot { color: var(--border-bright); }

/* ============================================================
   HOME PAGE — FAQ
   ============================================================ */
.faq-sec { background: var(--bg); padding: 96px 40px; }
.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar-note {
  margin-top: 22px; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px; color: var(--text-dim); line-height: 1.7;
}
.faq-sidebar-note a { color: var(--accent-light); text-decoration: none; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; cursor: pointer; }
.faq-item:hover { border-color: var(--border-mid); }
.faq-item.open { border-color: var(--accent-border); }
.faq-q { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 14.5px; font-weight: 600; color: var(--text); line-height: 1.45; user-select: none; }
.faq-icon { width: 22px; height: 22px; border: 1px solid var(--border-mid); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--muted); flex-shrink: 0; transition: all 0.22s; line-height: 1; }
.faq-item.open .faq-icon { background: var(--accent-dim); border-color: var(--accent-border); color: var(--accent-light); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease, padding 0.32s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-a p { font-size: 14px; color: var(--text-dim); line-height: 1.78; border-top: 1px solid var(--border); padding-top: 14px; }
.faq-a a { color: var(--accent-light); text-decoration: none; }

/* ============================================================
   BLOG INDEX PAGE  (blog.html)
   ============================================================ */
.blog-page-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px 100px;
}
.blog-page-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.blog-page-header .lm-page-eyebrow { margin-bottom: 14px; }
.blog-page-header p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 12px;
}
.blog-list { display: flex; flex-direction: column; gap: 20px; }
.blog-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s;
}
.blog-entry:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.blog-entry-tag {
  display: inline-flex;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent-light);
  font-size: 10px; font-family: var(--font-mono); font-weight: 500;
  padding: 3px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.blog-entry-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.blog-entry-excerpt {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.75; margin-bottom: 18px;
  max-width: 560px;
}
.blog-entry-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.blog-entry-meta-dot { color: var(--border-bright); }
.blog-entry-author { color: var(--text-dim); font-weight: 500; }
.blog-entry-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  flex-shrink: 0; align-self: center;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.blog-entry:hover .blog-entry-arrow {
  border-color: var(--accent-border);
  color: var(--accent-light);
  background: var(--accent-dim);
}

/* ============================================================
   LEGAL PAGES  (terms, privacy, responsible-gaming)
   ============================================================ */
.lm-legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 40px 100px;
}
.lm-page-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 14px;
  font-weight: 500;
}
.lm-page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 12px;
}
.lm-page-meta {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.lm-page-meta a { color: var(--accent-light); text-decoration: none; }
.lm-page-intro {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 640px;
}
.lm-legal-section { margin-bottom: 40px; }
.lm-legal-section h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  padding-top: 8px;
}
.lm-legal-section p { font-size: 15px; color: var(--text-dim); line-height: 1.82; margin-bottom: 12px; }
.lm-legal-section ul { padding-left: 20px; margin-bottom: 12px; }
.lm-legal-section li { font-size: 15px; color: var(--text-dim); line-height: 1.82; margin-bottom: 8px; }
.lm-legal-section a { color: var(--accent-light); text-decoration: none; }
.lm-section-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lm-legal-divider { height: 1px; background: var(--border); margin: 40px 0; }
.lm-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  margin-top: 48px;
  transition: gap 0.18s;
}
.lm-back-link:hover { gap: 11px; }

/* ============================================================
   RESPONSIBLE GAMING — EXTRAS
   ============================================================ */
.lm-warning-box {
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.lm-warning-box p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin: 0; }
.lm-warning-box strong { color: var(--green); }
.lm-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lm-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-dim); line-height: 1.7; }
.lm-checklist-icon { color: var(--accent-light); font-size: 11px; flex-shrink: 0; margin-top: 4px; font-weight: 700; }
.lm-helpline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.lm-helpline-card { background: var(--surface2); border: 1px solid var(--border-mid); border-radius: var(--radius); padding: 22px 24px; }
.lm-helpline-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.lm-helpline-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.7; margin: 0; }
.lm-helpline-card a { color: var(--accent-light); text-decoration: none; }

/* ============================================================
   BLOG POST PAGES  (blog/*.html)
   ============================================================ */
.lm-post-wrap { max-width: 760px; margin: 0 auto; padding: 120px 40px 100px; }
.lm-post-tag {
  display: inline-flex;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent-light);
  font-size: 10px; font-family: var(--font-mono); font-weight: 500;
  padding: 3px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.lm-post-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900; color: #fff;
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 18px;
}
.lm-post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
  font-family: var(--font-mono);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.lm-post-meta-dot { color: var(--border-bright); }
.lm-post-author { color: var(--text-dim); font-weight: 500; }
.lm-post-body { font-size: 16px; color: var(--text-dim); line-height: 1.85; }
.lm-post-body p { margin-bottom: 22px; }
.lm-post-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.025em; margin: 44px 0 14px; }
.lm-post-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin: 32px 0 10px; }
.lm-post-body ul, .lm-post-body ol { padding-left: 22px; margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.lm-post-body li { color: var(--text-dim); line-height: 1.75; }
.lm-post-body strong { color: var(--text); font-weight: 600; }
.lm-post-body a { color: var(--accent-light); text-decoration: none; }
.lm-post-body a:hover { text-decoration: underline; }
.lm-post-body hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.lm-post-callout {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 32px 0;
  font-size: 15px; color: var(--text-dim); line-height: 1.75;
}
.lm-post-callout strong { color: var(--accent-light); }
.lm-post-steps { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.lm-post-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.lm-step-num {
  width: 28px; height: 28px;
  background: var(--accent); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 900;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent-glow);
}
.lm-step-content { flex: 1; }
.lm-step-content strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.lm-step-content p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin: 0; }
.lm-post-cta {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(139,92,246,0.08) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px; margin-top: 56px; text-align: center;
}
.lm-post-cta h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 10px; }
.lm-post-cta p { font-size: 15px; color: var(--text-dim); margin-bottom: 24px; line-height: 1.7; }


/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.lm-footer-brand h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.lm-footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lm-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  flex-shrink: 0;
  margin-bottom: 0;
}
.lm-footer-socials a:hover {
  color: var(--text);
  border-color: var(--border-bright);
  background: var(--surface3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  /* Header */
  #lm-header { padding: 0 20px; }
  #lm-header nav { gap: 16px; }
  #lm-header nav a:not(.lm-nav-cta) { display: none; }

  /* Footer */
  .lm-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lm-footer-bottom { flex-direction: column; }
  .lm-footer-full { padding: 48px 20px 28px; }

  /* Home */
  .hero { padding: 110px 20px 64px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
  .pricing-sec, .blog-sec, .faq-sec { padding: 72px 20px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .blog-top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .reviews-wrap { padding: 60px 0; }
  .reviews-header { padding: 0 20px 40px; }

  /* Blog index */
  .blog-page-wrap { padding: 100px 20px 72px; }

  /* Legal */
  .lm-legal-wrap { padding: 100px 20px 72px; }
  .lm-helpline-grid { grid-template-columns: 1fr; }

  /* Blog posts */
  .lm-post-wrap { padding: 100px 20px 72px; }
}
@media (max-width: 640px) {
  .blog-entry { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .blog-entry-arrow { display: none; }
}
@media (max-width: 600px) {
  .lm-footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 20px 28px; }
}
