/*
Theme Name: Level Up Stats Astra Child
Theme URI: https://levelupstats.com
Description: Astra child theme for the Level Up Stats SEO Playbook and landing pages. Built by 314media.
Author: 314media
Author URI: https://314media.com
Template: astra
Version: 2.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: levelup-stats-astra-child
*/

:root {
  --lus-navy-950: #030914;
  --lus-navy-900: #07111f;
  --lus-navy-850: #09172a;
  --lus-navy-800: #0d1d34;
  --lus-panel: #0f2038;
  --lus-panel-2: #101c30;
  --lus-line: rgba(147, 166, 204, .28);
  --lus-line-strong: rgba(255, 211, 28, .58);
  --lus-yellow: #ffd51c;
  --lus-yellow-2: #ffb000;
  --lus-white: #f8fbff;
  --lus-text: #dbe7ff;
  --lus-muted: #9fafca;
  --lus-cyan: #5ee7ff;
  --lus-green: #36d875;
  --lus-red: #ff4f68;
  --lus-purple: #b567ff;
  --lus-orange: #ff9f1c;
  --lus-radius: 16px;
  --lus-pixel-shadow: 6px 6px 0 rgba(0, 0, 0, .38);
  --lus-wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--lus-navy-950) !important; }
body {
  margin: 0;
  color: var(--lus-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 213, 28, .08), transparent 24rem),
    radial-gradient(circle at 78% 12%, rgba(94, 231, 255, .08), transparent 26rem),
    linear-gradient(180deg, var(--lus-navy-900), var(--lus-navy-950));
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.18));
}

a { color: var(--lus-yellow); text-decoration: none; transition: color .18s ease, transform .18s ease, border-color .18s ease, background .18s ease; }
a:hover { color: #fff3a5; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6, .entry-title, .entry-title a {
  color: var(--lus-white);
  line-height: 1.08;
  font-weight: 900;
}

.lus-pixel-font,
.lus-hero-title,
.lus-section-title,
.lus-card-title,
.lus-nav a,
.lus-btn,
.lus-tag,
.lus-chip,
.lus-eyebrow,
.lus-mini-label,
.lus-footer-title {
  font-family: "Press Start 2P", Inter, system-ui, sans-serif;
}

/* Disable parent Astra chrome; this theme controls its own header/footer. */
#masthead,
.site-header,
.ast-primary-header-bar,
.ast-above-header-bar,
.ast-below-header-bar,
.ast-footer-overlay,
.site-footer,
#colophon {
  display: none !important;
}

#page, #content, .site-content, .ast-container, .entry-content, .site-main {
  background: transparent !important;
}
.ast-container { max-width: none !important; padding: 0 !important; }
.entry-content p { margin-bottom: 1.25rem; }

.lus-wrap { width: min(var(--lus-wrap), calc(100% - 40px)); margin-inline: auto; }

/* Header */
.lus-site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(3, 9, 20, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}
.lus-header-wrap {
  width: min(var(--lus-wrap), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lus-brand { display: inline-flex; align-items: center; min-width: 190px; }
.lus-brand img, .lus-brand .custom-logo { display: block; max-height: 52px !important; width: auto !important; object-fit: contain; }
.lus-brand-text { display: inline-flex; flex-direction: column; gap: 2px; color: var(--lus-yellow); letter-spacing: .03em; font-weight: 950; line-height: 1; }
.lus-brand-text span:last-child { color: #fff; letter-spacing: .25em; }
.lus-nav { display: flex; align-items: center; justify-content: flex-end; gap: 24px; flex: 1; min-width: 0; }
.lus-site-header .lus-brand { order: 1; }
.lus-site-header .lus-nav { order: 2; }
.lus-site-header .lus-header-actions { order: 3; }
.lus-site-header .lus-mobile-toggle { order: 4; }
.lus-menu { display: flex; align-items: center; justify-content: center; gap: 26px; padding: 0; margin: 0; list-style: none; }
.lus-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  color: var(--lus-text) !important;
  font-size: 10px;
  line-height: 1;
  padding: 30px 0 25px;
  text-decoration: none !important;
}
.lus-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--lus-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.lus-menu a:hover::after,
.lus-menu .current-menu-item > a::after,
.blog .lus-menu .lus-menu-blog a::after,
.archive .lus-menu .lus-menu-blog a::after,
.single-post .lus-menu .lus-menu-blog a::after { transform: scaleX(1); }
.lus-menu a:hover { color: #fff !important; transform: translateY(-1px); }
.lus-header-actions { display: inline-flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.lus-login { white-space: nowrap; }
.lus-btn,
button.lus-btn,
input[type="submit"].lus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 13px 18px;
  border: 2px solid rgba(0,0,0,.35);
  border-radius: 8px;
  color: #111827 !important;
  background: linear-gradient(180deg, #ffe760, var(--lus-yellow));
  box-shadow: 4px 4px 0 rgba(0,0,0,.42), inset 0 -4px 0 rgba(167, 104, 0, .2), inset 0 2px 0 rgba(255,255,255,.35);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none !important;
  cursor: pointer;
}
.lus-btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 rgba(0,0,0,.46), inset 0 -4px 0 rgba(167, 104, 0, .2), inset 0 2px 0 rgba(255,255,255,.35); color: #111827 !important; }
.lus-btn.secondary { background: rgba(15, 32, 56, .88); color: var(--lus-white) !important; border-color: rgba(255, 213, 28, .55); box-shadow: 4px 4px 0 rgba(0,0,0,.35); }
.lus-btn.small { min-height: 34px; padding: 10px 13px; font-size: 9px; }
.lus-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 2px solid rgba(255, 213, 28, .58) !important;
  border-radius: 8px !important;
  background: rgba(15, 32, 56, .9) !important;
  box-shadow: 4px 4px 0 rgba(0,0,0,.38);
  cursor: pointer;
}
.lus-mobile-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 3px;
  background: var(--lus-yellow);
  border-radius: 999px;
}
.lus-mobile-toggle[aria-expanded="true"] { background: rgba(255, 213, 28, .14) !important; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Shared pixel panels */
.lus-panel,
.lus-card,
.lus-featured,
.lus-start-card,
.lus-fix-strip,
.lus-cta-band,
.lus-article-shell,
.lus-sidebar-card,
.lus-page-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(16, 32, 56, .92), rgba(6, 17, 32, .92)),
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.08), transparent 12rem);
  border: 1px solid var(--lus-line);
  border-radius: var(--lus-radius);
  box-shadow: var(--lus-pixel-shadow);
}
.lus-panel::before,
.lus-card::before,
.lus-featured::before,
.lus-start-card::before,
.lus-fix-strip::before,
.lus-cta-band::before,
.lus-article-shell::before,
.lus-page-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: calc(var(--lus-radius) - 6px);
  pointer-events: none;
}
.lus-pixel-corners::after,
.lus-panel::after,
.lus-featured::after,
.lus-start-card::after,
.lus-cta-band::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(var(--lus-line) 0 0) top left/18px 2px no-repeat,
    linear-gradient(var(--lus-line) 0 0) top left/2px 18px no-repeat,
    linear-gradient(var(--lus-line) 0 0) top right/18px 2px no-repeat,
    linear-gradient(var(--lus-line) 0 0) top right/2px 18px no-repeat,
    linear-gradient(var(--lus-line) 0 0) bottom left/18px 2px no-repeat,
    linear-gradient(var(--lus-line) 0 0) bottom left/2px 18px no-repeat,
    linear-gradient(var(--lus-line) 0 0) bottom right/18px 2px no-repeat,
    linear-gradient(var(--lus-line) 0 0) bottom right/2px 18px no-repeat;
  border-radius: var(--lus-radius);
}

/* Landing / SEO Playbook */
.lus-home { min-height: 100vh; overflow: hidden; }
.lus-hero {
  position: relative;
  padding: 56px 0 26px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 78% 52%, rgba(255, 213, 28, .11), transparent 16rem),
    linear-gradient(180deg, rgba(8,18,33,.7), transparent);
}
.lus-hero .lus-wrap { position: relative; min-height: 360px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: center; gap: 44px; }
.lus-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--lus-yellow); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.lus-eyebrow::before, .lus-eyebrow::after { content: "✦"; font-family: Inter, sans-serif; }
.lus-hero-title { font-size: clamp(42px, 6vw, 84px); letter-spacing: .015em; margin: 0 0 18px; text-transform: uppercase; text-shadow: 5px 5px 0 rgba(0,0,0,.42); }
.lus-hero-title span { color: var(--lus-yellow); }
.lus-hero-copy { max-width: 740px; margin: 0 0 22px; color: var(--lus-text); font-size: clamp(17px, 1.5vw, 21px); }
.lus-search-form { display: flex; align-items: stretch; width: min(650px, 100%); border: 1px solid rgba(255,255,255,.18); background: rgba(7,17,31,.88); border-radius: 10px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 4px 4px 0 rgba(0,0,0,.34); overflow: hidden; }
.lus-search-form input[type="search"] { flex: 1; min-width: 0; height: 54px; padding: 0 18px; border: 0 !important; outline: none; background: transparent !important; color: #fff !important; font-size: 15px; }
.lus-search-form input::placeholder { color: rgba(219, 231, 255, .58); }
.lus-search-form button { width: 62px; border-radius: 0; box-shadow: inset 0 -4px 0 rgba(167,104,0,.2); font-size: 18px; border: 0; }
.lus-topic-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.lus-chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.18); background: rgba(12,28,49,.88); border-radius: 9px; color: #fff !important; font-size: 9px; line-height: 1; box-shadow: 3px 3px 0 rgba(0,0,0,.3); }
.lus-chip:hover { border-color: rgba(255, 213, 28, .7); transform: translate(-1px,-1px); }
.lus-chip .ico { font-family: Inter, sans-serif; color: var(--lus-yellow); font-size: 15px; line-height: 1; }
.lus-hero-art { position: relative; min-height: 360px; display: flex; align-items: flex-end; justify-content: center; }
.lus-hero-art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center 60%, rgba(255,213,28,.12), transparent 18rem); }
.lus-hero-art img { width: min(410px, 92%); max-height: 390px; object-fit: contain; filter: drop-shadow(0 20px 28px rgba(0,0,0,.48)); position: relative; z-index: 2; }
.lus-stars { position: absolute; inset: 0; pointer-events: none; opacity: .9; background-image:
  radial-gradient(circle, var(--lus-yellow) 0 2px, transparent 3px),
  radial-gradient(circle, #fff 0 2px, transparent 3px),
  radial-gradient(circle, rgba(255,255,255,.45) 0 1px, transparent 2px);
  background-size: 72px 72px, 104px 104px, 41px 41px;
  background-position: 0 0, 30px 24px, 12px 9px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}
.lus-pixel-hills { position: absolute; left: 0; right: 0; bottom: 0; height: 125px; opacity: .38; pointer-events: none; background:
  linear-gradient(135deg, transparent 0 45%, rgba(40,70,125,.65) 45% 55%, transparent 55%) left bottom/260px 110px repeat-x,
  linear-gradient(225deg, transparent 0 45%, rgba(32,56,105,.7) 45% 55%, transparent 55%) right bottom/310px 130px repeat-x; }

.lus-section { padding: 34px 0; }
.lus-section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.lus-section-title { margin: 0; font-size: clamp(22px, 2.5vw, 34px); }
.lus-section-kicker { color: var(--lus-yellow); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; margin: 0 0 4px; }
.lus-section-head p { color: var(--lus-muted); margin: 7px 0 0; }
.lus-view-link { font-weight: 900; white-space: nowrap; }

.lus-feature-row { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 28px; }
.lus-featured { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 24px; padding: 22px; align-items: center; min-height: 190px; }
.lus-feature-thumb { position: relative; overflow: hidden; border-radius: 10px; border: 1px solid rgba(255,255,255,.13); background: #061120; aspect-ratio: 16/9; }
.lus-feature-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lus-tag { display: inline-flex; align-items: center; width: fit-content; padding: 8px 10px; border-radius: 6px; background: var(--lus-yellow); color: #111827; font-size: 8px; line-height: 1; box-shadow: 3px 3px 0 rgba(0,0,0,.35); }
.lus-featured .lus-tag { position: absolute; left: 14px; top: 14px; z-index: 2; }
.lus-card-title { margin: 0 0 10px; font-size: clamp(18px, 1.7vw, 25px); }
.lus-card-title a { color: inherit; }
.lus-card-title a:hover { color: var(--lus-yellow); }
.lus-card-text { color: var(--lus-muted); margin: 0 0 14px; }
.lus-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--lus-muted); font-size: 13px; margin-bottom: 16px; }
.lus-start-card { padding: 28px; display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 20px; align-items: center; }
.lus-signpost { display: grid; place-items: center; width: 80px; height: 80px; border-radius: 14px; background: rgba(255,213,28,.11); color: var(--lus-yellow); font-size: 48px; border: 1px solid rgba(255,213,28,.35); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }

.lus-guides-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.lus-card { padding: 20px; min-height: 230px; display: flex; flex-direction: column; overflow: hidden; }
.lus-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.lus-mini-label { display: inline-flex; align-items: center; max-width: 100%; padding: 7px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: var(--lus-yellow); font-size: 7px; line-height: 1; text-transform: uppercase; }
.lus-mini-label.green { color: var(--lus-green); background: rgba(54,216,117,.08); border-color: rgba(54,216,117,.25); }
.lus-mini-label.blue { color: var(--lus-cyan); background: rgba(94,231,255,.08); border-color: rgba(94,231,255,.25); }
.lus-mini-label.purple { color: #cf9cff; background: rgba(181,103,255,.08); border-color: rgba(181,103,255,.25); }
.lus-mini-label.red { color: #ff9bab; background: rgba(255,79,104,.08); border-color: rgba(255,79,104,.25); }
.lus-card-ico { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,213,28,.1); border: 1px solid rgba(255,213,28,.32); font-size: 26px; box-shadow: 3px 3px 0 rgba(0,0,0,.28); }
.lus-card .lus-card-title { font-size: 18px; line-height: 1.22; margin-bottom: 10px; }
.lus-card .lus-card-text { font-size: 14px; flex: 1; }
.lus-read-link { margin-top: auto; display: inline-flex; justify-content: space-between; align-items: center; gap: 10px; border: 1px solid rgba(255,213,28,.45); border-radius: 8px; color: var(--lus-yellow) !important; padding: 10px 12px; font-weight: 900; font-size: 13px; }
.lus-read-link:hover { background: rgba(255,213,28,.1); color: #fff !important; }

.lus-fix-strip { padding: 18px; }
.lus-fix-strip-title { margin: 0 0 14px; font-weight: 950; color: #fff; letter-spacing: .02em; }
.lus-fix-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px; }
.lus-fix-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 58px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(2, 10, 23, .38); color: #fff !important; font-weight: 850; font-size: 13px; line-height: 1.2; }
.lus-fix-link span:first-child { font-size: 20px; }
.lus-fix-link:hover { border-color: rgba(255,213,28,.55); transform: translateY(-1px); }

.lus-cta-band { margin: 40px 0 0; padding: 24px 30px; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 22px; align-items: center; border-color: rgba(255,213,28,.33); }
.lus-cta-star { font-size: 48px; filter: drop-shadow(3px 4px 0 rgba(0,0,0,.4)); }
.lus-cta-band h2 { margin: 0 0 4px; font-size: clamp(20px, 2.4vw, 30px); }
.lus-cta-band p { margin: 0; color: var(--lus-muted); }

/* Archive + single */
.lus-archive-hero { padding: 60px 0 28px; }
.lus-archive-hero h1 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 60px); font-family: "Press Start 2P", Inter, sans-serif; text-shadow: 4px 4px 0 rgba(0,0,0,.4); }
.lus-archive-hero p { margin: 0; max-width: 760px; color: var(--lus-muted); font-size: 18px; }
.lus-archive-main { padding-bottom: 56px; }
.lus-pagination { margin-top: 34px; text-align: center; }
.lus-pagination .page-numbers { display: inline-flex; min-width: 38px; min-height: 38px; align-items: center; justify-content: center; margin: 4px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; color: var(--lus-text); background: rgba(15,32,56,.7); }
.lus-pagination .current, .lus-pagination a:hover { border-color: var(--lus-yellow); color: var(--lus-yellow); }

.lus-single { padding: 46px 0 64px; }
.lus-article-layout { display: grid; grid-template-columns: minmax(0, 760px) 330px; gap: 34px; align-items: start; }
.lus-article-shell { padding: clamp(24px, 4vw, 46px); }
.lus-article-shell h1 { font-size: clamp(34px, 5vw, 58px); margin: 8px 0 16px; font-family: "Press Start 2P", Inter, sans-serif; letter-spacing: -.02em; }
.lus-article-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--lus-muted); font-size: 14px; margin-bottom: 24px; }
.lus-article-content { color: #e6eefc; font-size: 18px; }
.lus-article-content h2 { margin-top: 2rem; font-size: 1.7rem; }
.lus-article-content h3 { margin-top: 1.6rem; font-size: 1.3rem; }
.lus-article-content a { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.lus-article-content ul, .lus-article-content ol { padding-left: 1.4em; }
.lus-article-content blockquote { border-left: 5px solid var(--lus-yellow); padding: 16px 18px; margin: 24px 0; background: rgba(255,213,28,.08); color: #fff; }
.lus-article-content img { border-radius: 14px; border: 1px solid rgba(255,255,255,.12); }
.lus-sidebar-card { padding: 22px; margin-bottom: 20px; }
.lus-sidebar-card h3 { margin: 0 0 10px; }
.lus-sidebar-card p { color: var(--lus-muted); margin-top: 0; }
.lus-related-list { display: grid; gap: 12px; }
.lus-related-list a { display: block; padding: 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); color: #fff; background: rgba(255,255,255,.035); font-weight: 850; }
.lus-related-list a:hover { border-color: rgba(255,213,28,.55); color: var(--lus-yellow); }

.lus-page { padding: 46px 0 64px; }
.lus-page-card { padding: clamp(24px, 4vw, 48px); max-width: 920px; margin: 0 auto; }
.lus-page-card h1 { font-family: "Press Start 2P", Inter, sans-serif; font-size: clamp(32px, 5vw, 54px); }

/* Footer */
.lus-footer { border-top: 1px solid rgba(255,255,255,.08); background: rgba(3,9,20,.92); padding: 34px 0 22px; }
.lus-footer-grid { display: grid; grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(120px, .55fr)) minmax(170px, .7fr); gap: 28px; align-items: start; }
.lus-footer-logo img { max-height: 54px; width: auto; }
.lus-footer p { color: var(--lus-muted); margin: 12px 0 0; }
.lus-footer-title { color: var(--lus-yellow); font-size: 9px; margin-bottom: 12px; }
.lus-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.lus-footer a { color: var(--lus-text); font-size: 14px; }
.lus-footer a:hover { color: var(--lus-yellow); }
.lus-socials { display: flex; gap: 10px; }
.lus-socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(255,255,255,.04); font-weight: 900; }
.lus-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: var(--lus-muted); font-size: 13px; }
.lus-footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Forms / WP blocks */
.wp-block-search { display: flex; gap: 8px; }
.wp-block-search__input, input, textarea, select {
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 9px !important;
  background: rgba(7,17,31,.88) !important;
  color: #fff !important;
}
.wp-block-button__link, .wp-element-button, button, input[type="submit"] { border-radius: 8px; }

@media (max-width: 1120px) {
  .lus-menu { gap: 16px; }
  .lus-guides-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lus-fix-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lus-article-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .lus-header-wrap { min-height: 70px; padding: 12px 0; align-items: center; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .lus-site-header .lus-brand { order: 1; min-width: 0; flex: 1 1 auto; }
  .lus-brand img, .lus-brand .custom-logo { max-height: 42px !important; }
  .lus-site-header .lus-header-actions { order: 2; margin-left: auto; }
  .lus-site-header .lus-mobile-toggle { order: 3; display: inline-flex; }
  .lus-site-header .lus-nav { order: 4; display: none; width: 100%; flex: 0 0 100%; justify-content: flex-start; padding: 10px 0 4px; border-top: 1px solid rgba(255,255,255,.08); }
  .lus-site-header.is-menu-open .lus-nav { display: flex; }
  .lus-menu { width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: 4px 0; }
  .lus-menu li { width: 100%; }
  .lus-menu a { width: 100%; padding: 14px 10px; white-space: nowrap; border-radius: 10px; background: rgba(255,255,255,.035); margin-top: 7px; }
  .lus-menu a::after { display: none; }
  .lus-login.lus-btn.small { min-height: 38px; padding: 10px 12px; font-size: 8px; }
  .lus-hero .lus-wrap { grid-template-columns: 1fr; min-height: 0; gap: 12px; }
  .lus-hero-art { min-height: 250px; order: -1; }
  .lus-hero-art img { max-height: 260px; }
  .lus-feature-row, .lus-featured { grid-template-columns: 1fr; }
  .lus-start-card { grid-template-columns: 1fr; }
  .lus-cta-band { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .lus-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .lus-wrap, .lus-header-wrap { width: min(100% - 28px, var(--lus-wrap)); }
  .lus-brand img, .lus-brand .custom-logo { max-height: 36px !important; }
  .lus-login.lus-btn.small { padding: 9px 10px; font-size: 7px; }
  .lus-mobile-toggle { width: 38px; height: 38px; }
  .lus-hero { padding-top: 28px; }
  .lus-hero-title { font-size: clamp(36px, 12vw, 54px); }
  .lus-search-form { height: auto; }
  .lus-topic-chips { gap: 9px; }
  .lus-chip { font-size: 8px; padding: 10px; }
  .lus-guides-grid, .lus-fix-grid { grid-template-columns: 1fr; }
  .lus-section-head { align-items: start; flex-direction: column; }
  .lus-card { min-height: 0; }
  .lus-footer-grid { grid-template-columns: 1fr; }
  .lus-footer-bottom { flex-direction: column; }
}

/* FAQ + inline CTA shortcodes */
.lus-faq-shortcode { display: grid; gap: 14px; margin: 34px 0; }
.lus-faq-item { border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: linear-gradient(135deg, rgba(9, 22, 42, .94), rgba(7, 13, 28, .96)); box-shadow: 0 16px 38px rgba(0,0,0,.22); overflow: hidden; }
.lus-faq-question { cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; color: #fff; font-weight: 900; list-style: none; }
.lus-faq-question::-webkit-details-marker { display: none; }
.lus-faq-toggle { flex: 0 0 auto; display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: #08111f; background: var(--lus-yellow); box-shadow: 0 0 0 2px rgba(255,255,255,.15) inset; font-weight: 950; }
.lus-faq-item[open] .lus-faq-toggle { transform: rotate(45deg); }
.lus-faq-answer { padding: 0 20px 20px; color: var(--lus-muted); }
.lus-faq-answer > *:last-child { margin-bottom: 0; }
.lus-faq-empty { margin: 28px 0; padding: 18px 20px; border: 1px dashed rgba(255,213,28,.4); border-radius: 14px; color: var(--lus-muted); background: rgba(255,255,255,.035); }
.lus-inline-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; margin: 42px 0; padding: clamp(22px, 4vw, 34px); border: 1px solid rgba(255,213,28,.35); border-radius: 24px; background: radial-gradient(circle at 14% 10%, rgba(255,213,28,.18), transparent 34%), linear-gradient(135deg, rgba(13, 31, 61, .96), rgba(8, 13, 30, .98)); box-shadow: 0 20px 55px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.04) inset; }
.lus-inline-cta-eyebrow { margin-bottom: 10px; color: var(--lus-yellow); font-family: "Press Start 2P", Inter, sans-serif; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.lus-inline-cta h2 { margin: 0 0 10px; color: #fff; font-family: "Press Start 2P", Inter, sans-serif; font-size: clamp(18px, 2.7vw, 28px); line-height: 1.25; }
.lus-inline-cta p { margin: 0; max-width: 720px; color: var(--lus-muted); font-size: 16px; }
.lus-inline-cta-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 14px 20px; border-radius: 12px; color: #08111f !important; background: linear-gradient(180deg, var(--lus-yellow), #ffb300); box-shadow: 0 6px 0 #9a6400, 0 18px 32px rgba(255,213,28,.25); font-family: "Press Start 2P", Inter, sans-serif; font-size: 10px; font-weight: 900; text-decoration: none !important; white-space: nowrap; }
.lus-inline-cta-button:hover { transform: translateY(-1px); color: #08111f !important; }
@media (max-width: 720px) { .lus-inline-cta { grid-template-columns: 1fr; text-align: center; justify-items: center; } .lus-inline-cta-button { width: 100%; } }

/* Level Up Stats - make WP Plugin page match FAQ page vibe */
.lus-faq-style-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 22px 80px;
}

.lus-faq-style-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.lus-faq-style-page > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 760px;
  margin-bottom: 34px;
}

.lus-faq-style-page h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 56px 0 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.lus-faq-style-page h3 {
  position: relative;
  margin: 18px 0 0;
  padding: 22px 56px 22px 24px;
  background: rgba(12, 18, 35, .78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.lus-faq-style-page h3::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd84d;
  font-size: 1.4rem;
  font-weight: 800;
}

.lus-faq-style-page h3 + p,
.lus-faq-style-page h3 + p + p,
.lus-faq-style-page h3 + ul,
.lus-faq-style-page h3 + ol {
  background: rgba(255,255,255,.045);
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  padding: 22px 24px;
  margin: 0;
}

.lus-faq-style-page h3 + p:last-child,
.lus-faq-style-page h3 + ul:last-child,
.lus-faq-style-page h3 + ol:last-child {
  border-radius: 0 0 18px 18px;
}

.lus-faq-style-page p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}

.lus-faq-style-page ul,
.lus-faq-style-page ol {
  padding-left: 46px;
  color: rgba(255,255,255,.78);
}

.lus-faq-style-page li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.lus-faq-style-page hr {
  display: none;
}

.lus-faq-style-page code {
  background: rgba(255,255,255,.09);
  color: #ffd84d;
  padding: 4px 7px;
  border-radius: 7px;
}

.lus-faq-style-page .wp-block-image {
  margin: 28px 0 44px;
}

.lus-faq-style-page .wp-block-image img {
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 700px) {
  .lus-faq-style-page {
    padding: 34px 16px 60px;
  }

  .lus-faq-style-page h3 {
    padding: 18px 48px 18px 18px;
  }

  .lus-faq-style-page h3 + p,
  .lus-faq-style-page h3 + p + p,
  .lus-faq-style-page h3 + ul,
  .lus-faq-style-page h3 + ol {
    padding: 18px;
  }
}
