/* ============================================================
   vicelane.css — 56ViceLane Unified Design System
   Version 5.0 — Full Site Rebuild
   Forged Oak Studios · forgedoakstudios@gmail.com
   Last updated: June 11, 2026

   RETHEME NOTE — July 9, 2026:
   Palette flipped from dark (navy/amber/cyan) to light
   (cream/orange/magenta) per the "Vibrant Premium" direction.
   See design-system-addendum.md for full rationale.
   All selectors, mechanics (sticky positioning, ticker timing,
   hamburger-nav logic) are UNCHANGED — only color/font values
   were touched. Two contrast bugs were fixed as part of this
   pass: .cat-tag and .btn-cyan previously used black text on
   what is now a dark magenta background — both switched to
   white text to keep WCAG-reasonable contrast.

   RULES:
   - This file is the ONLY place for shared styles
   - Every page links this — nothing duplicated inline
   - Ticker speed is LOCKED at 20s — never change
   - Nav and footer HTML is identical on every page
   - Change here once → whole site updates
   ============================================================ */

:root {
  --pitch:      #FDFBF8;
  --asphalt:    #FFFFFF;
  --edge:       #F0E6DA;
  --amber:      #FF6B2C;
  --amber-dim:  #C4922A;
  --cyan:       #D6247A;
  --bone:       #211A16;
  --smoke:      #6B5F52;
  --smoke-dim:  #A79C8C;
  --green:      #00C875;
  --red:        #FF3B3B;
  --gold:       #FFD700;
  --navband:    #B5637A;

  --font-display: 'Playfair Display', serif;
  --font-label:   'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --read-width:  760px;
  --wide-width:  1000px;
  --line:        1.75;

  --ticker-speed: 20s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--pitch);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--line);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(900px 500px at 80% -10%, rgba(255,107,44,.08), transparent 60%),
    radial-gradient(700px 400px at -10% 5%, rgba(214,36,122,.06), transparent 55%);
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: overlay;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ticker-wrap {
  background: var(--amber);
  overflow: hidden;
  padding: 7px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker var(--ticker-speed) linear infinite;
}

.ticker-item {
  font-family: var(--font-label);
  font-size: .88rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid var(--edge);
  background: rgba(253,251,248,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 35px;
  z-index: 190;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #000;
  background: var(--amber);
  padding: 3px 9px;
  border-radius: 5px;
  line-height: 1.2;
  box-shadow: 0 0 16px rgba(255,107,44,.45);
}

.logo-text {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--bone);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .88rem;
  letter-spacing: .05em;
}

.nav-links a {
  color: var(--smoke);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover {
  color: var(--bone);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--asphalt);
  border-bottom: 1px solid var(--edge);
  z-index: 189;
  flex-direction: column;
  padding: 8px 0 16px;
  box-shadow: 0 8px 24px rgba(33,26,22,.12);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
  color: var(--smoke);
  text-decoration: none;
  transition: color .2s, background .2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--amber);
  background: rgba(255,107,44,.05);
}

.mobile-divider {
  height: 1px;
  background: var(--edge);
  margin: 8px 20px;
}

@media (min-width: 768px) {
  .nav {
    padding: 14px 28px;
  }
}

/* ============================================================
   4B. NAV BAND — ALWAYS-VISIBLE TEXT NAV, SITE-WIDE
   Added July 9, 2026 — overrides the original hamburger-only
   rule. See design-system-addendum.md "RULE OVERRIDE" section.
   Updated July 9, 2026 — 8 links now (added Wall of Honor).
   Markup: <div class="navband"><a class="active" href="/">Home</a>...
   Position: directly BELOW the hero image on every page, not above.
   Same 8 links, same order, on every page:
   Home / News / Last Drive / Wall of Honor / Members / Store / Gear / Forum
   ============================================================ */
.navband {
  background: var(--navband);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.navband a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12.5px;
  padding: 14px 22px;
  transition: background .2s;
}

.navband a:hover {
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

.navband a.active {
  background: rgba(255,255,255,.15);
}

footer {
  border-top: 1px solid var(--edge);
  padding: 36px 20px 28px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.footer-brand .logo-mark {
  display: inline;
  font-size: inherit;
  padding: 2px 7px;
}

.footer-tag {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--smoke-dim);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-links a {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--smoke);
  text-decoration: none;
  padding: 4px 12px;
  transition: color .2s;
}

.footer-links a:not(:last-child) {
  border-right: 1px solid var(--edge);
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-links .admin-link {
  font-size: .65rem;
  color: #E4DCCE;
  letter-spacing: .08em;
}

.footer-links .admin-link:hover {
  color: var(--smoke-dim);
}

.footer-copy {
  font-size: .72rem;
  color: var(--smoke-dim);
  line-height: 1.6;
}

.footer-disclosure {
  font-size: .78rem;
  color: var(--smoke-dim);
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.wrap {
  max-width: var(--read-width);
  margin: 0 auto;
  padding: 0 20px 60px;
  position: relative;
  z-index: 2;
}

.wrap-wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 20px 60px;
  position: relative;
  z-index: 2;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--bone);
}

h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--bone);
}

.eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .72rem;
  color: var(--amber);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber);
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--amber);
  color: #000;
}

.btn-primary:hover {
  box-shadow: 0 0 24px rgba(255,107,44,.45);
  text-decoration: none;
  color: #000;
}

.btn-secondary {
  background: none;
  color: var(--bone);
  border: 2px solid var(--bone);
}

.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
  text-decoration: none;
}

.btn-ghost {
  background: none;
  color: var(--smoke);
  border: 1px solid var(--edge);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  text-decoration: none;
}

.btn-cyan {
  background: var(--cyan);
  color: #fff;
}

.btn-cyan:hover {
  box-shadow: 0 0 24px rgba(214,36,122,.4);
  text-decoration: none;
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}

.btn-gold:hover {
  box-shadow: 0 0 24px rgba(255,215,0,.4);
  text-decoration: none;
  color: #000;
}

.card {
  background: var(--asphalt);
  border: 1px solid var(--edge);
  padding: 18px;
  transition: border-color .2s, transform .2s;
}

.card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.cat-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  color: #fff;
  background: var(--cyan);
  padding: 3px 10px;
  margin-bottom: 12px;
}

.cat-tag.breaking { background: var(--red); color: #fff; }
.cat-tag.confirmed { background: var(--green); color: #000; }
.cat-tag.industry { background: #7B5EA7; color: #fff; }
.cat-tag.community { background: var(--amber); color: #000; }
.cat-tag.event { background: var(--amber); color: #000; }

.legend {
  background: var(--asphalt);
  border: 1px solid var(--edge);
  padding: 12px 16px;
  margin: 16px 0 24px;
  font-family: var(--font-label);
  font-size: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legend b { color: var(--bone); }
.legend .lg-c { color: var(--green); }
.legend .lg-l { color: var(--cyan); }
.legend .lg-x { color: var(--red); }

.cf { color: var(--green); font-weight: 700; }
.lk { color: var(--cyan); font-weight: 700; }
.cr { color: var(--red); font-weight: 700; }

.body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--smoke);
}

.body .lead {
  font-size: 1.15rem;
  color: var(--bone);
  font-weight: 500;
  border-left: 3px solid var(--amber);
  padding-left: 16px;
  margin-bottom: 28px;
}

.body h2 {
  margin: 32px 0 10px;
}

.body h2.bottom-line-header {
  color: var(--amber);
}

.source-line {
  font-family: var(--font-label);
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--smoke-dim);
  margin-bottom: 12px;
  border-left: 2px solid var(--cyan);
  padding-left: 10px;
}

.bottom-line {
  background: linear-gradient(135deg, rgba(255,107,44,.07), rgba(214,36,122,.04));
  border: 1px solid var(--edge);
  border-left: 4px solid var(--amber);
  padding: 18px 20px;
  font-size: 1.05rem;
  color: var(--smoke);
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-family: var(--font-label);
  font-size: .9rem;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--edge);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.byline .author {
  color: var(--bone);
  font-weight: 700;
}

.ad-slot {
  margin: 28px 0;
  text-align: center;
  min-height: 90px;
}

.ad-label {
  font-family: var(--font-label);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--smoke-dim);
  margin-bottom: 6px;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  align-items: center;
}

.share-bar-label {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  color: var(--smoke);
  margin-right: 4px;
}

.share-btn {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  padding: 8px 14px;
  border: 1px solid var(--edge);
  background: var(--asphalt);
  color: var(--bone);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.share-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  text-decoration: none;
}

.share-btn.share-native  { background: var(--amber); color: #000; border-color: var(--amber); }
.share-btn.share-reddit  { background: #FF4500; color: #fff; border-color: #FF4500; }
.share-btn.share-twitter { background: #000; color: #fff; border-color: #333; }
.share-btn.share-whatsapp{ background: #25D366; color: #fff; border-color: #25D366; }
.share-btn.share-copy    { background: var(--edge); color: var(--bone); }

.rate-box,
.comments-box {
  background: var(--asphalt);
  border: 1px solid var(--edge);
  padding: 20px;
  margin: 24px 0;
}

.rate-box {
  text-align: center;
}

.rate-box h3,
.comments-box h3 {
  margin-bottom: 12px;
}

.stars {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--smoke);
}

.stars span {
  transition: color .15s, transform .15s;
  display: inline-block;
}

.stars span:hover { color: var(--amber); transform: scale(1.2); }
.stars span.on { color: var(--amber); }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-label {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--smoke);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--pitch);
  border: 1px solid var(--edge);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color .25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255,107,44,.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--smoke-dim);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-select option {
  background: var(--asphalt);
}

.form-submit {
  width: 100%;
  background: var(--amber);
  color: #000;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
  padding: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  margin-top: 8px;
}

.form-submit:hover {
  box-shadow: 0 0 28px rgba(255,107,44,.4);
}

.form-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--edge);
}

.toggle-label {
  font-size: .9rem;
  color: var(--bone);
  flex: 1;
  padding-right: 16px;
  line-height: 1.4;
}

.toggle-label small {
  display: block;
  font-size: .78rem;
  color: var(--smoke);
  margin-top: 2px;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--edge);
  border-radius: 24px;
  transition: .3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--smoke);
  border-radius: 50%;
  transition: .3s;
}

.toggle input:checked + .toggle-slider { background: var(--amber); }
.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
  background: var(--pitch);
}

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--edge);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--bone);
}

.section-link {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--amber);
  text-decoration: none;
}

.section-link:hover {
  text-decoration: underline;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin: 36px 0;
  box-shadow: 0 0 8px rgba(255,107,44,.2);
}

.countdown-bar {
  background: var(--asphalt);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 18px 20px;
}

.countdown-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.countdown-label {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  color: var(--smoke);
}

.countdown-timer {
  display: flex;
  gap: 14px;
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
  display: block;
}

.countdown-unit-label {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .6rem;
  color: var(--smoke);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.news-card {
  background: var(--asphalt);
  border: 1px solid var(--edge);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.news-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  text-decoration: none;
}

.news-card-img {
  width: 100%;
  aspect-ratio: 2.4 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--edge);
}

.news-card-body {
  padding: 14px;
}

.news-card-tag {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  color: var(--amber);
  margin-bottom: 5px;
}

.news-card-title {
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 1rem;
  color: var(--bone);
  line-height: 1.3;
  margin-bottom: 6px;
}

.news-card-date {
  font-size: .75rem;
  color: var(--smoke);
}

.plate-display {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.plate-display-stars {
  font-size: 9px;
  letter-spacing: 5px;
  margin-bottom: 4px;
}

.plate-display-tag {
  font-family: var(--font-display);
  font-size: clamp(15px, 4.5vw, 26px);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  text-shadow: 0 0 16px rgba(255,107,44,.5), 0 2px 6px rgba(0,0,0,.9);
  -webkit-text-stroke: 1px rgba(0,0,0,.5);
  text-align: center;
}

.plate-display-footer {
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: .25em;
  margin-top: 4px;
}

.badge {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  padding: 3px 10px;
  display: inline-block;
}

.badge-amber  { color: var(--amber); background: rgba(255,107,44,.1); border: 1px solid rgba(255,107,44,.2); }
.badge-cyan   { color: var(--cyan);  background: rgba(214,36,122,.1);  border: 1px solid rgba(214,36,122,.2); }
.badge-green  { color: var(--green); background: rgba(0,200,117,.1);  border: 1px solid rgba(0,200,117,.2); }
.badge-gold   { color: var(--gold);  background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.25); }
.badge-smoke  { color: var(--smoke); background: var(--asphalt);      border: 1px solid var(--edge); }
.badge-red    { color: var(--red);   background: rgba(255,59,59,.1);  border: 1px solid rgba(255,59,59,.2); }

.msg {
  padding: 12px 16px;
  font-size: .9rem;
  margin-top: 10px;
  display: none;
  line-height: 1.5;
}

.msg.show { display: block; }
.msg.success { color: var(--green); background: rgba(0,200,117,.08); border: 1px solid rgba(0,200,117,.2); }
.msg.error   { color: var(--red);   background: rgba(255,59,59,.08);  border: 1px solid rgba(255,59,59,.2); }
.msg.info    { color: var(--cyan);  background: rgba(214,36,122,.08);  border: 1px solid rgba(214,36,122,.2); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-wrap {
  max-width: var(--read-width);
  margin: 0 auto;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 2;
}

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-updated {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  color: var(--smoke);
  margin-bottom: 30px;
}

.legal-wrap h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.legal-wrap p {
  font-size: .98rem;
  margin-bottom: 16px;
  color: var(--smoke);
  line-height: 1.8;
}

.legal-wrap p a { color: var(--cyan); }

.legal-wrap ul {
  margin: 0 0 16px 20px;
  color: var(--smoke);
  line-height: 1.8;
}

.legal-wrap ul li {
  margin-bottom: 6px;
  font-size: .98rem;
}

.store-block {
  padding: 52px 20px;
  border-bottom: 1px solid var(--edge);
  position: relative;
  z-index: 2;
}

.store-block:nth-child(even) {
  background: rgba(240,230,218,.45);
}

.store-block-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
}

.block-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .7rem;
  color: var(--smoke);
  margin-bottom: 8px;
}

.block-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 40px);
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 8px;
  line-height: 1.05;
}

.block-title span { color: var(--amber); }

.block-sub {
  font-size: .95rem;
  color: var(--smoke);
  max-width: 560px;
  line-height: 1.7;
}

.block-divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin: 16px 0 32px;
  box-shadow: 0 0 8px rgba(255,107,44,.4);
}

.anchor-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 13px 20px;
  background: rgba(253,251,248,.85);
  position: sticky;
  top: 70px;
  z-index: 80;
  backdrop-filter: blur(8px);
}

.anchor-nav a {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .82rem;
  color: var(--smoke);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 14px;
}

.anchor-nav a:not(:last-child) {
  border-right: 1px solid var(--edge);
}

.anchor-nav a:hover {
  color: var(--amber);
}

#vl-debug-ind {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 9999;
  background: var(--amber);
  color: #000;
  font-family: monospace;
  font-weight: 800;
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(255,107,44,.7);
  display: none;
  user-select: none;
}

.text-amber  { color: var(--amber); }
.text-cyan   { color: var(--cyan); }
.text-green  { color: var(--green); }
.text-smoke  { color: var(--smoke); }
.text-bone   { color: var(--bone); }
.text-gold   { color: var(--gold); }
.text-upper  { text-transform: uppercase; }
.text-center { text-align: center; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

.hidden { display: none !important; }

/* ============================================================
   27. STANDARD PAGE JS BLOCKS
   — Copy these script blocks to every page —
   ============================================================

   TICKER (paste before </body>):
   <script>
   fetch('/articles.json?v='+Date.now()).then(r=>r.json()).then(function(a){
     var t=document.getElementById('ticker-track');
     var items=[].concat(a,a).map(function(x){
       return '<span class="ticker-item" onclick="location.href=\'/articles/'+x.slug+'\'">'+x.emoji+' '+x.title+'</span>';
     }).join('');
     t.innerHTML=items;
   }).catch(function(){
     document.getElementById('ticker-track').innerHTML='<span class="ticker-item">56ViceLane — Where GTA5 Ends And GTA6 Begins</span>';
   });
   </script>

   NAV TOGGLE (paste before </body>):
   <script>
   var mt=document.getElementById('menu-toggle');
   var nm=document.getElementById('nav-mobile');
   if(mt&&nm)mt.addEventListener('click',function(){nm.classList.toggle('open');});
   </script>

   REVEAL (paste before </body>):
   <script>
   var obs=new IntersectionObserver(function(es){es.forEach(function(e){
     if(e.isIntersecting){e.target.classList.add('visible');obs.unobserve(e.target);}
   });},{threshold:.08});
   document.querySelectorAll('.reveal').forEach(function(el){obs.observe(el);});
   </script>

   ============================================================ */

/* ============================================================
   28. VIDEO SLOT — reusable component (added July 2026)
   Markup:
   <div class="video-slot" data-video-id=""
        style="--vs-bg:url('/images/PAGE-IMAGE.webp')">
     <span class="video-slot-play"></span>
     <span class="video-slot-label">Video coming soon</span>
   </div>
   - data-video-id empty  -> styled placeholder shows
   - data-video-id="XXXX" -> /video-slot.js swaps in the 16:9
     YouTube embed automatically; no other markup changes needed
   - --vs-bg accepts a url() or any CSS gradient
   ============================================================ */
.video-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--vs-bg, linear-gradient(135deg, #2A1245, #140C08)) center/cover no-repeat;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,.35), rgba(20,12,8,.55));
}

.video-slot-play {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 24px rgba(255,107,44,.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slot-play::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.video-slot-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  color: #F2DCC9;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.video-slot iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

.video-slot.video-slot-live::before { display: none; }

/* ============================================================
   END vicelane.css v5.0
   56ViceLane · Forged Oak Studios
   ============================================================ */
