.elementor-118 .elementor-element.elementor-element-7fb5282{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}/* Start custom CSS */:root {
    --red: #cc1133;          /* Colt red - bleeds in from the left */
    --red-hot: #ff1a3c;      /* screaming hot red */
    --gold: #f5c518;         /* yellow-gold from the logo */
    --gold-dark: #d4a017;    /* deeper gold */
    --black: #0a0118;        /* near-black purple void */
    --dark: #130328;         /* deep purple shadow */
    --dark2: #1e0540;        /* rich purple dark */
    --dark3: #2d0c55;        /* medium purple */
    --olive: #4a1060;        /* purple-red zone */
    --cream: #f5eeff;        /* purple-tinted white */
    --text: #ffffff;
    --muted: #c9a8e8;        /* muted lavender */
    --border: #5a1a9a;       /* purple border */
    --purple-mix: #7722bb;   /* core Colt purple — red+white+blue MIXED */
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--black);
    background-image: linear-gradient(150deg, 
      rgba(200,10,40,0.35) 0%, 
      rgba(119,34,187,0.60) 30%, 
      rgba(255,255,255,0.06) 50%, 
      rgba(45,12,85,0.80) 65%, 
      rgba(20,5,80,0.60) 100%);
    color: var(--text);
    font-family: 'Special Elite', serif;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* NOISE TEXTURE OVERLAY */
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── TICKER ── */
  .ticker-wrap {
    background: var(--red);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    z-index: 100;
  }
  .ticker-label {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 2px 14px;
    margin-right: 20px;
    letter-spacing: 2px;
    vertical-align: middle;
  }
  .ticker-track {
    display: inline-block;
    animation: ticker 40s linear infinite;
  }
  .ticker-track span {
    font-family: 'Teko', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 30px;
  }
  .ticker-track span::before { content: '★ '; color: var(--gold); }
  @keyframes ticker {
    from { transform: translateX(100vw); }
    to   { transform: translateX(-100%); }
  }

  /* ── HEADER ── */
  .site-header {
    background: var(--dark);
    border-bottom: 4px solid var(--red);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .site-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(180,10,50,0.07) 10px,
      rgba(180,10,50,0.07) 20px,
      transparent 20px,
      transparent 30px,
      rgba(100,20,180,0.06) 30px,
      rgba(100,20,180,0.06) 40px
    );
    pointer-events: none;
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px 24px;
    gap: 20px;
  }
  .header-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  .header-nav a {
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid var(--border);
    text-transform: uppercase;
    transition: all 0.15s;
    position: relative;
  }
  .header-nav a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(68,119,238,0.10);
  }
  .header-nav a.alert {
    color: var(--red-hot);
    border-color: var(--red-hot);
    animation: pulse-border 1.5s ease-in-out infinite;
  }
  @keyframes pulse-border {
    0%, 100% { border-color: var(--red-hot); box-shadow: none; }
    50% { border-color: var(--red-hot); box-shadow: 0 0 12px rgba(255,34,68,0.55); }
  }
  .logo-wrap {
    text-align: center;
  }
  .logo-wrap img {
    max-width: 220px;
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(68,119,238,0.4));
    transition: filter 0.3s;
  }
  .logo-wrap img:hover {
    filter: drop-shadow(0 0 30px rgba(68,119,238,0.7));
  }
  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .header-right .btn-store {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s, transform 0.1s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .header-right .btn-store:hover {
    background: var(--red-hot);
    transform: scale(1.03);
  }
  .header-tagline {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-align: right;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(160deg, #2a0520 0%, #1a0545 40%, #0a0118 70%, #3d0060 100%);
    border-bottom: 3px solid var(--border);
    position: relative;
    overflow: hidden;
    padding: 60px 24px 70px;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 10% 50%, rgba(220,20,50,0.45) 0%, transparent 50%),
      radial-gradient(ellipse at 90% 50%, rgba(20,80,210,0.45) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.10) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 100%, rgba(100,30,180,0.20) 0%, transparent 50%);
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-text {}
  .hero-eyebrow {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--red-hot);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--red-hot);
  }
  .hero-headline {
    font-family: 'Teko', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .hero-headline .accent { color: var(--gold); }
  .hero-headline .red { color: var(--red-hot); }
  .hero-subhead {
    font-family: 'Special Elite', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 480px;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
  }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-primary {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--black);
    color: #fff;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s;
    position: relative;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255,255,255,0.2);
  }
  .btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(68,119,238,0.5);
  }
  .btn-secondary {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--red-hot);
    border: 2px solid var(--red-hot);
    padding: 12px 28px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s;
  }
  .btn-secondary:hover {
    background: var(--red-hot);
    color: #fff;
  }
  .hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .hero-art img {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(68,119,238,0.3));
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
  .hero-art .stamp {
    position: absolute;
    bottom: 10px;
    right: 0;
    background: var(--red);
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    transform: rotate(-4deg);
    border: 2px solid rgba(255,255,255,0.3);
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: linear-gradient(90deg, #cc1133 0%, #a01030 20%, #ffffff 50%, #7722bb 80%, #4a0a99 100%);
    border-bottom: 2px solid var(--border);
    padding: 18px 24px;
  }
  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
  }
  .stat-item {
    padding: 8px 20px;
    border-right: 1px solid rgba(0,0,0,0.15);
  }
  .stat-item:last-child { border-right: none; }
  .stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .stat-label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.55);
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── MAIN LAYOUT ── */
  .main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }

  /* ── SECTION HEADERS ── */
  .section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
  }
  .section-header h2 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
  }
  .section-tag {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    padding: 4px 10px;
    margin-left: auto;
  }

  /* ── EPISODE CARDS ── */
  .episode-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .episode-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: start;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
    text-decoration: none;
    color: inherit;
  }
  .episode-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
    transition: background 0.15s;
  }
  .episode-card:hover {
    background: var(--dark3);
    border-color: var(--gold);
  }
  .episode-card:hover::before { background: var(--gold); }
  .ep-num {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    min-width: 50px;
    transition: color 0.15s;
  }
  .episode-card:hover .ep-num { color: var(--gold-dark); }
  .ep-body {}
  .ep-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    line-height: 1.1;
  }
  .ep-desc {
    font-family: 'Special Elite', serif;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
  }
  .ep-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .ep-tag {
    font-family: 'Courier Prime', monospace;
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 2px 8px;
  }
  .ep-tag.red { border-color: rgba(204,17,51,0.5); color: var(--red-hot); }
  .ep-meta {
    text-align: right;
    min-width: 80px;
  }
  .ep-date {
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 1px;
  }
  .ep-duration {
    font-family: 'Teko', sans-serif;
    font-size: 1rem;
    color: var(--text);
    margin-top: 4px;
  }
  .ep-new {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 2px 8px;
    margin-top: 6px;
    animation: blink 1s step-end infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* ── SIDEBAR ── */
  .sidebar {}
  .sidebar-widget {
    background: var(--dark2);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  .widget-header {
    background: var(--dark3);
    border-bottom: 2px solid var(--red);
    padding: 12px 16px;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .widget-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-hot);
    animation: blink 1s step-end infinite;
  }
  .widget-body { padding: 16px; }

  /* Newsletter widget */
  .newsletter-widget {
    background: linear-gradient(135deg, #2a0818 0%, #1a1040 50%, #0d1a38 100%);
    border-color: var(--red);
  }
  .newsletter-widget .widget-header { border-bottom-color: var(--red); }
  .newsletter-widget input[type="email"] {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-bottom-color: var(--gold);
    color: var(--text);
    font-family: 'Courier Prime', monospace;
    font-size: 0.85rem;
    padding: 10px 12px;
    margin-bottom: 10px;
    outline: none;
  }
  .newsletter-widget input::placeholder { color: var(--muted); }
  .newsletter-widget input:focus { border-color: var(--red); }
  .newsletter-widget .btn-sub {
    width: 100%;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--red) 0%, #ffffff 50%, var(--gold) 100%);
    color: #fff;
    padding: 12px;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
  }
  .newsletter-widget .btn-sub:hover { filter: brightness(1.15); }
  .newsletter-fine {
    font-family: 'Courier Prime', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.4;
    text-align: center;
  }

  /* Sponsor widget */
  .sponsor-card {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  .sponsor-card:last-child { border-bottom: none; padding-bottom: 0; }
  .sponsor-name {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .sponsor-tagline {
    font-family: 'Special Elite', serif;
    font-size: 0.8rem;
    color: var(--text);
    margin: 4px 0 8px;
    line-height: 1.4;
  }
  .sponsor-link {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red-hot);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,34,68,0.4);
  }
  .sponsor-link:hover { color: var(--gold); border-color: var(--gold); }

  /* Truth-o-meter widget */
  .truth-meter-item {
    margin-bottom: 16px;
  }
  .truth-meter-item:last-child { margin-bottom: 0; }
  .truth-topic {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  .truth-bar-wrap {
    height: 8px;
    background: rgba(68,119,238,0.07);
    border: 1px solid var(--border);
    position: relative;
  }
  .truth-bar {
    height: 100%;
    transition: width 1.5s cubic-bezier(.17,.67,.83,.67);
  }
  .truth-bar.red { background: var(--red); }
  .truth-bar.gold { background: var(--gold); }
  .truth-bar.green { background: #1a66cc; }
  .truth-pct {
    font-family: 'Teko', sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: right;
    margin-top: 3px;
  }

  /* ── SPONSOR BANNER ── */
  .sponsor-banner {
    background: var(--dark2);
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
  }
  .sponsor-banner::before {
    content: 'PAID SPONSOR — WE BELIEVE IN FREE MARKET CRAB ECONOMICS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 4px;
  }
  .sponsor-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
  }
  .sponsor-block {
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .sponsor-block:hover {
    border-color: var(--gold);
    background: var(--dark2);
    transform: translateY(-4px);
  }
  .sponsor-block::after {
    content: attr(data-badge);
    position: absolute;
    top: 12px;
    right: -20px;
    background: var(--red);
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 2px 28px;
    transform: rotate(35deg);
    font-weight: 700;
  }
  .sponsor-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
  }
  .sponsor-block-name {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .sponsor-block-desc {
    font-family: 'Special Elite', serif;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .sponsor-cta {
    display: inline-block;
    font-family: 'Teko', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--red-hot);
    border: 1px solid var(--red-hot);
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.15s;
  }
  .sponsor-cta:hover { background: var(--red-hot); color: #fff; }

  /* ── TRUTH BULLETIN BAND ── */
  .truth-band {
    background: linear-gradient(90deg, #cc1133 0%, #a00828 30%, #ffffff 50%, #6611aa 70%, #3d0088 100%);
    padding: 20px 24px;
    border-top: 3px solid rgba(255,255,255,0.25);
    border-bottom: 3px solid rgba(255,255,255,0.25);
  }
  .truth-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .truth-band-label {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  }
  .truth-band-text {
    font-family: 'Special Elite', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    opacity: 0.9;
  }
  .truth-band-btn {
    margin-left: auto;
    white-space: nowrap;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s;
  }
  .truth-band-btn:hover { background: #fff; color: var(--red); }

  /* ── FOOTER ── */
  footer {
    background: linear-gradient(180deg, #0a0118 0%, var(--dark) 100%);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--red), #ffffff, var(--gold)) 1;
    padding: 60px 24px 30px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand .footer-logo {
    font-family: 'Teko', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .footer-brand .footer-logo span { color: var(--gold); }
  .footer-brand .footer-sub {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-brand p {
    font-family: 'Special Elite', serif;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
  }
  .footer-col h4 {
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-col ul li a {
    font-family: 'Special Elite', serif;
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .footer-legal {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
    line-height: 1.6;
  }
  .footer-disclaimer {
    font-family: 'Courier Prime', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    opacity: 0.5;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }

  /* ── DOCUMENT WIDGET ── */
  .doc-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    cursor: pointer;
    transition: all 0.15s;
  }
  .doc-item:last-child { border-bottom: none; }
  .doc-item:hover { opacity: 0.8; }
  .doc-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .doc-title {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1.4;
  }
  .doc-status {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: var(--red-hot);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .main-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sponsor-banner-inner { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    .header-inner { grid-template-columns: 1fr; text-align: center; }
    .header-nav { justify-content: center; }
    .header-right { align-items: center; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-art { order: -1; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .footer-disclaimer { text-align: center; }
    .truth-band-inner { flex-direction: column; }
    .truth-band-btn { margin-left: 0; }
  }

  /* Scroll animations */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }/* End custom CSS */