@font-face {
  font-family: 'TakeNoPrisoners';
  src: url('../fonts/TakeNoPrisoners-gxm75.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'SuperKindly';
  src: url('../fonts/Super Kindly.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

:root{
  --accent-green:#87C937;
  --accent-green-dark:#2F7A1C;
  --accent-red:#F7030B;
  --accent-yellow:#F8D112;
}



.portal-hero-img{
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display:block;
  border-bottom: 2px solid var(--accent-red);
}

.portal-content{
  padding: 2rem;
  text-align: center;
}
/* ===== BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #060608;
  color: #f4f4f4;
  line-height: 1.6;
  overflow-x: hidden;
}



/* ===== GLOBAL TYPOGRAPHY: HEADERS ===== */
h1, h2, h3 {
  font-family: 'TakeNoPrisoners', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===== Handwritten Red Header (global) ===== */
.red-head {
    font-family: 'TakeNoPrisoners', sans-serif !important;
    color: #F7030B !important; /* Crackodile Red */
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}


/* Constrain width */
.wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HEADER / NAV ===== */
:root {
  --nav-y: #FFE61A;
  --nav-pk: #FF3EB5;
  --nav-bl: #00AAFF;
  --nav-gr: #44DD00;
  --nav-or: #FF7700;
  --nav-rd: #FF1A1A;
  --nav-pu: #CC44FF;
  --nav-bk: #0A0A0A;
  --nav-wh: #FFFEF0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-y) !important;
  border-bottom: 6px solid var(--nav-bk) !important;
  box-shadow: 0 4px 0 var(--nav-bk) !important;
  overflow: visible !important;
}

/* Zigzag trim */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--nav-y) 0px, var(--nav-y) 14px,
    var(--nav-bk) 14px, var(--nav-bk) 16px,
    transparent 16px, transparent 28px
  );
  z-index: 10;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.25rem;
  position: relative;
  z-index: 2;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 2px;
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo-text {
  font-family: 'SuperKindly', cursive !important;
  font-size: 1.2rem !important;
  color: var(--nav-bk) !important;
  text-shadow: 2px 2px 0 var(--nav-pk) !important;
  animation: logoWobble 3s ease-in-out infinite;
}

@keyframes logoWobble {
  0%, 100% { transform: rotate(-1deg); }
  50%       { transform: rotate(1deg); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.main-nav a {
  font-family: 'Chewy', cursive !important;
  font-size: clamp(0.72rem, 1.6vw, 0.95rem) !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  color: var(--nav-bk) !important;
  background: var(--nav-wh);
  border: 3px solid var(--nav-bk) !important;
  border-radius: 50px !important;
  padding: 0.28rem 0.75rem !important;
  box-shadow: 3px 3px 0 var(--nav-bk) !important;
  transition: transform 0.1s, box-shadow 0.1s !important;
  display: inline-block;
  white-space: nowrap;
  position: relative;
}

.main-nav a:nth-child(1) { background: var(--nav-gr) !important; }
.main-nav a:nth-child(2) { background: var(--nav-pk) !important; color: var(--nav-wh) !important; }
.main-nav a:nth-child(3) { background: var(--nav-bl) !important; color: var(--nav-wh) !important; }
.main-nav a:nth-child(4) { background: var(--nav-or) !important; }
.main-nav a:nth-child(5) { background: var(--nav-y)  !important; }
.main-nav a:nth-child(6) { background: var(--nav-pu) !important; color: var(--nav-wh) !important; }

.main-nav a:hover,
.main-nav a.active,
.main-nav a.is-current {
  transform: translate(-2px, -2px) !important;
  box-shadow: 5px 5px 0 var(--nav-bk) !important;
}

.main-nav a::after { display: none !important; }

.main-nav a.nav-crackids {
  background: var(--nav-rd) !important;
  color: var(--nav-wh) !important;
  border: 3px solid var(--nav-bk) !important;
  box-shadow: 3px 3px 0 var(--nav-bk) !important;
  font-size: clamp(0.78rem, 1.8vw, 1rem) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  border: 3px solid var(--nav-bk) !important;
  background: var(--nav-wh) !important;
  color: var(--nav-bk) !important;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 0.2rem 0.55rem;
  box-shadow: 3px 3px 0 var(--nav-bk);
  line-height: 1;
}

/* ===== HERO (HOME) ===== */
.hero {
  padding: 1.75rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-marquee {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(0, 0, 0, 0.8);
}

.hero-marquee img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.02) brightness(0.92) saturate(0.95);
}

/* subtle animated overlay */
.hero-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 179, 71, 0.16), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(255, 120, 50, 0.1), transparent 50%),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.12) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: heroFlicker 7s infinite linear;
}

@keyframes heroFlicker {
  0%, 12%, 18%, 22%, 30%, 100% { opacity: 0.55; }
  14%, 20%, 26% { opacity: 0.27; }
}

.hero-copy {
  max-width: 640px;
}

.hero-tagline {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.hero-copy p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #d0ced1;
}

/* Home copy blocks */
.hero-synopsis {
  max-width: 56ch;
}

.hero-supporting {
  margin-top: 1.4rem;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.22);
  font-style: italic;
  font-weight: 600;
  color: #f2f2f2;
}

.hero-supporting em {
  font-style: inherit;
}

/* ===== NEWSLETTER SIGNUP (HOME) ===== */
.newsletter-signup{
  margin-top: 1.25rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  max-width: 560px;
  width: 100%;
}

/* Center the signup under the marquee + about block */
.newsletter-wrap{
  display: flex;
  justify-content: center;
}

.newsletter-kicker{
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.7rem;
}

.newsletter-fields{
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.embeddable-buttondown-form input[type="email"]{
  flex: 1 1 260px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.35);
  color: #f4f4f4;
}

.embeddable-buttondown-form input[type="email"]::placeholder{
  color: rgba(255,255,255,0.55);
}

.embeddable-buttondown-form input[type="submit"]{
  border: 0;
}

.newsletter-fineprint{
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
}

.newsletter-fineprint a{
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.16s ease-out, color 0.16s ease-out,
              transform 0.1s ease-out, box-shadow 0.16s ease-out,
              border-color 0.16s ease-out;
}

.btn-primary {
  background: radial-gradient(circle at 30% 0%, var(--accent-green) 0%, var(--accent-green-dark) 35%, #b4381d 100%);
  color: #0b1306;
  box-shadow:
    0 0 12px rgba(255, 179, 71, 0.5),
    0 6px 18px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(255, 179, 71, 0.7),
    0 10px 28px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  background: transparent;
  border-color: #37313b;
  color: #f5eef2;
}

.btn-ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

/* ===== SECTIONS ===== */
.section {
  padding: 2.5rem 0 2.75rem;
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9a8a92;
  margin-bottom: 0.35rem;
}

.section-title {
  font-family: 'TakeNoPrisoners', sans-serif !important;
  letter-spacing:.04em;
  text-transform:none;
  color:var(--accent-red);
}

.subsection-title {
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color: var(--accent-red);
  text-transform:none;
  letter-spacing: 0.10em;
  font-size: 1.15rem;
  margin: 1.15rem 0 0.55rem;
  line-height: 1.1;
}


.section-subtitle {
  margin-top: 0.45rem;
  color: #c3bec3;
  font-size: 0.95rem;
}

/* Two-column layout */
.grid-two {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.25rem;
}

p + p {
  margin-top: 0.75rem;
}

/* Lists */
ul.clean-list {
  list-style: none;
  margin-top: 0.75rem;
}

ul.clean-list li {
  margin-top: 0.35rem;
  color: #d3d1d4;
}

/* Cards */
.card {
  background: radial-gradient(circle at 0% 0%, #1c151d 0%, #110d13 55%, #0b080c 100%);
  border-radius: 14px;
  border: 1px solid rgba(135,201,55,.22);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
  /* subtle brand glow */
  box-shadow: 0 10px 26px rgba(0,0,0,.65), 0 0 0 1px rgba(135,201,55,.06), 0 0 18px rgba(135,201,55,.08);
}

.card h3 {
  font-size: 1.05rem;
  text-transform:none;
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color:var(--accent-red);
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}

/* Some pages (e.g., The Show) use h2 inside cards */
.card h2 {
  font-size: 1.05rem;
  text-transform:none;
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color:var(--accent-red);
  letter-spacing: 0.10em;
  margin: 0 0 0.6rem;
  text-shadow: 0 0 10px rgba(255, 59, 59, 0.25);
}

/* Divider line to avoid the "blog post" vibe */
.divider-line {
  height: 2px;
  width: 100%;
  margin: 1.2rem 0;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,59,59,0) 0%,
    rgba(255,59,59,0.75) 20%,
    rgba(181,255,90,0.65) 50%,
    rgba(255,59,59,0.75) 80%,
    rgba(255,59,59,0) 100%
  );
  box-shadow: 0 0 14px rgba(181,255,90,0.18);
}

.card p {
  font-size: 0.92rem;
  color: #d6d3d8;
}

/* Left-column readability: each content section gets its own card */
.left-stack .card-left {
  margin-bottom: 1rem;
}

.left-stack .card-left:last-child {
  margin-bottom: 0;
}

.card-left p {
  margin: 0.65rem 0 0;
}

.card-left ul.clean-list {
  margin-top: 0.65rem;
}

/* Character grid */
.character-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.character-card h3:not(.scribble) {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.character-card .character-name{
  margin: 0.25rem 0 0.75rem;
}

/* Character name stickers float at the top of the card.
   Add top padding so the sticker doesn't cover the first line of the bio. */
.character-grid .character-card {
  position: relative;
  padding: 56px 22px 24px;
}


.character-grid .character-card p:first-of-type {
  margin-top: 0;
}

/* Contact */
.contact-block {
  margin-top: 1rem;
}

.contact-block a {
  color: var(--accent-green);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid #19141d;
  padding: 1.3rem 0 1.8rem;
  font-size: 0.8rem;
  color: #8c848d;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .logo-mark img {
    height: 36px;
  }

  .logo-text {
    display: block !important;
    font-size: 1rem !important;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 14px); /* clear the zigzag */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 1rem 1rem;
    background: var(--nav-y) !important;
    border-bottom: 4px solid var(--nav-bk) !important;
    box-shadow: 0 6px 0 var(--nav-bk);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.22s ease-out, opacity 0.18s ease-out;
    z-index: 999;
  }

  .main-nav.is-open {
    max-height: 500px;
    opacity: 1;
  }

  .main-nav a {
    font-size: 1rem !important;
    padding: 0.3rem 0.9rem !important;
    width: auto;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .grid-two {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .grid-two .right-stack { order: 1; }
  .grid-two .left-stack  { order: 2; }

  .section {
    padding-inline: 0;
  }

    .show-page .card {
        padding: 22px;
        padding-top: 66px !important; /* Forces the text down below the sticker */
    }

    .show-page .card h2 {
        font-size: 1.45rem;
    }

    .show-page .card h3 {
        font-size: 1.25rem;
    }

    .show-page .show-card.character-card {
        padding-top: 70px !important;
    }
}

@media (min-width: 769px) {
  .hero-inner {
    flex-direction: row;
  }

  .hero-marquee {
    flex: 1.2;
  }

  .hero-copy {
    flex: 1;
  }

  .character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}




.hero-tagline img {
  display: block;
  width: 28%;        /* MUCH smaller */
  max-width: 260px;  /* tight cap */
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0.25rem 0.6rem rgba(0, 0, 0, 0.85));
}





/* --- Series page readability (Option 1: separate cards on left) --- */
.left-stack,
.right-stack{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.left-stack .card-left{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 1.15rem 1.15rem 1rem;
}

.left-stack .card-left h3{
  margin-bottom: 0.5rem;
}

.left-stack .card-left p{
  margin: 0 0 0.75rem 0;
  line-height: 1.55;
}

.left-stack .card-left p:last-child{
  margin-bottom: 0;
}


/* Support the Show page */
.support-form{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:12px;
}
.support-form input[type="email"]{
  flex:1 1 240px;
  min-width:220px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color:#fff;
  outline:none;
}
.support-form input[type="email"]::placeholder{
  color: rgba(255,255,255,0.55);
}
.support-form input[type="email"]:focus{
  border-color: rgba(255,255,255,0.25);
}
.fineprint{
  margin-top:10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
/* accessible text helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.embeddable-buttondown-form input:focus{outline:none;border-color:var(--accent-green);box-shadow:0 0 0 3px rgba(135,201,55,.25);} 


/* Contact page left headings */
.contact-left h3{
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color: var(--accent-red);
  letter-spacing:.5px;
  margin: 1rem 0 .35rem;
  font-size: 1.5rem;
}

/* Portal downloads */
.portal-download-title{
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}
.portal-sticker{
  display:block;
  text-decoration:none;
}
.portal-sticker img{
  display:block;
  width:100%;
  max-width:360px;
  max-height:170px;
  height:auto;
  margin: 0 auto;
  object-fit:contain;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.portal-intro{
  margin-bottom: 18px;
}

.portal-stickers{
  display:flex;
  gap: 18px;
  align-items: stretch;
  justify-content: space-between;
  margin: 18px 0;
}

.portal-sticker-card{
  flex: 1 1 0;
  min-width: 0;
}

.portal-sticker-card .btn{
  margin-top: 12px;
}

.portal-updates{
  margin-top: 18px;
}

.portal-updates .embeddable-buttondown-form{
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px){
  .portal-stickers{
    flex-direction: column;
  }
  .portal-sticker img{
    max-height: 200px;
  }
}


/* Footer clarification */
.footer-note{
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== The Show page stylization (avoid blog-post feel) ===== */
.show-page .content-container{
  max-width: 1100px;
}

.show-page .page-title{
  color: #ff2e2e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 0 rgba(0,0,0,.55);
}

.show-page .card{
  position: relative;
  /* Reserve space so the label sticker never collides with copy */
  padding: 28px;
  padding-top: 66px;
  border: 2px solid rgba(120, 255, 0, 0.28);
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
  box-shadow: 0 12px 34px rgba(0,0,0,.45);
  overflow: hidden;
  /* Slight “torn paper” silhouette so cards don’t feel like perfect UI boxes */
  clip-path: polygon(
    0% 3%, 3% 0%, 97% 0%, 100% 4%,
    100% 96%, 97% 100%, 4% 100%, 0% 97%
  );
  border-radius: 24px;
}

/* Legacy class: keep it, but it’s now redundant with the base padding */
.show-page .card.has-inset-sticker{ padding-top: 66px; }

/* subtle “TV glass / scanline” texture */
.show-page .card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    rgba(0,0,0,0) 3px,
    rgba(0,0,0,0) 6px
  );
  pointer-events: none;
  opacity: .25;
}

.show-page .card > *{
  position: relative;
  z-index: 1;
}

.show-page .card h2,
.show-page .card h3{
  color: #ff2e2e;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 0 rgba(0,0,0,.55);
}

.show-page .card h2{
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.show-page .card h3{
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.show-page .card h2::after,
.show-page .card h3::after{
  content: "";
  display: block;
  margin-top: 10px;
  height: 2px;
  width: 110px;
  background: rgba(255, 46, 46, 0.85);
  border-radius: 2px;
}

/* “topic chips” for the moral lessons list */
.show-page .pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.show-page .pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  color: #111;
  background: rgba(120, 255, 0, 0.90);
  box-shadow: 0 2px 0 rgba(0,0,0,.55);
}

/* Pull-quote styling for the punchline lines */
.show-page .pull-quote{
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(255, 46, 46, 0.95);
  background: rgba(0,0,0,.22);
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.show-page .pull-quote span{
  display: block;
  margin-top: 6px;
  font-weight: 800;
  color: rgba(255,255,255,.96);
}

/* Slightly larger body text inside The Show cards */
.show-page .card p{
  font-size: 1.02rem;
  line-height: 1.55;
}

@media (max-width: 768px){
  .show-page .card{ padding: 22px; }
  .show-page .card h2{ font-size: 1.45rem; }
  .show-page .card h3{ font-size: 1.25rem; }
}

/* --------------------------------------------------
   THE SHOW page (non-blog layout)
-------------------------------------------------- */
.show-page .show-grid{
  display:grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap:20px;
  margin-top:6px;
}
@media (max-width: 900px){
  .show-page .show-grid{ grid-template-columns: 1fr; }
}

.show-page .show-card{ position:relative; }
.show-page .card-sticker{
  position:absolute;
  /* Uniform label: inside the card, top-left, never full-width */
  top:14px;
  left:14px;
  display:inline-block !important;
  width:max-content;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  padding:6px 10px;
  border-radius:10px;
  font-family:'TakeNoPrisoners', sans-serif;
  letter-spacing:1px;
  transform: rotate(-1deg);
  box-shadow: 0 10px 22px rgba(0,0,0,.45);
  border: 1px solid rgba(0,0,0,.45);
  text-transform: uppercase;
  z-index:2;
}
.show-page .sticker-red{ background: rgba(220,56,56,.92); color:#111; }
.show-page .sticker-lime{ background: rgba(132,255,76,.92); color:#111; }

/* Legacy hook: keep existing markup from shifting */
.show-page .card-sticker.sticker-inset{ }

.show-page .red-head{
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color:#dc3838 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.show-page .subtitle{
  font-family: 'Inter', system-ui, sans-serif;
  font-weight:600;
  color: var(--c-red);
  text-shadow: 0 2px 0 rgba(0,0,0,.65), 0 0 14px rgba(255,47,47,.25);
  letter-spacing: .02em;
  text-transform: none;
}

/* Add texture + depth so it doesn't read like a blog post */
.show-page main{
  position: relative;
}
.show-page main:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(132,255,76,.18), transparent 45%),
    radial-gradient(circle at 78% 68%, rgba(220,56,56,.16), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,0));
  mix-blend-mode: screen;
}

.show-page .show-card,
.show-page .episode-card{
  background: linear-gradient(180deg, rgba(25,25,30,.86), rgba(12,12,16,.86));
  border: 1px solid rgba(132,255,76,.25);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  overflow: hidden;
}

.show-page .show-card:after,
.show-page .episode-card:after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.14);
  pointer-events:none;
}

.show-page .show-grid > *:nth-child(odd){ transform: rotate(-0.18deg); }
.show-page .show-grid > *:nth-child(even){ transform: rotate(0.18deg); }
@media (prefers-reduced-motion: reduce){
  .show-page .show-grid > *{ transform:none; }
}

.show-page .section-title{
  color:#dc3838;
  text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 0 18px rgba(220,56,56,.28);
}

.show-page .lead{
  font-weight:700;
  margin-bottom:8px;
}
.show-page .lesson-line{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin: 6px 0 10px;
  font-weight:800;
  letter-spacing:.3px;
}
.show-page .lesson-line span{ white-space:nowrap; }
.show-page .lesson-line .dot{ opacity:.55; font-weight:900; }

.show-page .muted{ color: rgba(255,255,255,.78); }

.show-page .glance-list{
  list-style:none;
  padding:0;
  margin:8px 0 12px;
}
.show-page .glance-list li{
  padding:10px 0;
  border-top: 1px solid rgba(132,255,76,.22);
}
.show-page .glance-list li:first-child{ border-top:none; }

.show-page .pull-quote{
  margin-top:14px;
  padding:14px 14px;
  border-radius:12px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(220,56,56,.35);
  font-weight:800;
}

.show-page .section-kicker{
  margin: 8px 0 10px;
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color:#dc3838 !important;
  letter-spacing:1px;
  text-transform: uppercase;
}

.show-page .episode-stack{ display:grid; grid-template-columns: 1fr; gap:18px; }
.show-page .episode-card{ position:relative; }
.show-page .moral{
  margin-top:12px;
  padding:12px 12px;
  border-radius:12px;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(132,255,76,.25);
}
.show-page .moral .label{
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color:#84ff4c;
  letter-spacing:.8px;
  margin-right:8px;
  text-transform: uppercase;
}

/* Reduce “blog post” vibe: tighter paragraphs + more air between blocks */
.show-page .card p{ line-height:1.55; }
.show-page .episode-card p{ margin-bottom:10px; }
.show-page .episode-card p:last-child{ margin-bottom:0; }

/* =============================
   WORLD & CHARACTERS CARD SPACING FIX
   The character bio cards use BOTH .show-card and .character-card.
   Because .show-card padding is defined later in the stylesheet, it was
   overriding the earlier .character-card padding and causing the sticker
   label to overlap the bio text.
   This override ensures the label sits fully inside the card with breathing room.
============================= */

.show-page .show-card.character-card{
  /* extra top room for the red sticker label + consistent inner padding */
  padding: 70px 26px 26px;
}

.show-page .show-card.character-card p{
  margin-top: 0;
  margin-bottom: 12px;
}

.show-page .show-card.character-card p:last-child{ margin-bottom: 0; }

/* =============================
   PORTAL: “WTF” HEADING + GRID
============================= */

/* Safety: never allow the portal card area to introduce horizontal scrolling */
.portal-what {
  overflow-x: hidden;
}

/* Grid on desktop: intro spans full width, then stickers side-by-side */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Ensure the two freebie downloads sit side-by-side on desktop */
.portal-grid > .portal-download {
  width: 100%;
  grid-column: auto;
}

.portal-grid .portal-what,
.portal-grid .portal-updates {
  grid-column: 1 / -1;
}

@media (max-width: 700px) {
  .portal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* “WTF” heading should be crisp, deep red, slightly askew, and NOT an image */
.portal-wtf-text {
  margin: 0 0 0.75rem;
  font-family: 'TakeNoPrisoners', sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #b00000;
  text-shadow: 0 2px 0 rgba(0,0,0,0.65);
  transform: translateX(-6px) rotate(-6deg);
  transform-origin: left center;
  line-height: 0.92;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}

/* Portal section headers (match the WTF scrawl, but smaller) */
.portal-subhead {
  margin: 0 0 0.6rem;
  font-family: 'TakeNoPrisoners', sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #b00000;
  text-shadow: 0 2px 0 rgba(0,0,0,0.65);
  line-height: 1;
  font-size: 1.35rem;
}

/* Portal card titles (Street Team / Logo / Get Updates) should match the same
   red handwritten look used for the WTF header. */
.portal-card-title {
  margin: 0 0 0.35rem;
  font-family: 'TakeNoPrisoners', sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #b00000;
  text-shadow: 0 2px 0 rgba(0,0,0,0.65);
  line-height: 1;
  font-size: 1.35rem;
}

/* Make portal download buttons feel a bit more 80s/bevelled */
.btn-portal {
  /* Dial back the neon: dark bevel with a subtle "arcade cabinet" border */
  background: linear-gradient(180deg, rgba(50,50,50,0.95) 0%, rgba(22,22,22,0.95) 100%);
  border: 2px solid rgba(176, 0, 0, 0.55);
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.70) inset,
    0 6px 14px rgba(0,0,0,0.48);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  backdrop-filter: blur(6px);
}

.btn-portal:hover {
  border-color: rgba(40, 120, 0, 0.55);
}

/* ===== Portal: button + email field clarity (2.7.26) ===== */
.portal-page .btn-portal{
  background: linear-gradient(180deg, rgba(55,55,55,0.92) 0%, rgba(16,16,16,0.92) 100%) !important;
  color: rgba(235, 255, 175, 0.98) !important;
  border: 2px solid rgba(235, 255, 175, 0.28) !important;
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.70) inset,
    0 10px 18px rgba(0,0,0,0.55),
    0 0 16px rgba(150,255,60,0.22),
    0 0 12px rgba(255,70,70,0.16) !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.65) !important;
}

.portal-page .btn-portal:hover{
  border-color: rgba(150,255,60,0.48) !important;
  color: rgba(245, 255, 210, 1) !important;
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.72) inset,
    0 12px 20px rgba(0,0,0,0.60),
    0 0 22px rgba(150,255,60,0.32),
    0 0 14px rgba(255,70,70,0.20) !important;
  transform: translateY(-1px);
}

.portal-page .btn-portal:active{
  transform: translateY(0px);
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.75) inset,
    0 8px 14px rgba(0,0,0,0.62),
    0 0 14px rgba(150,255,60,0.18),
    0 0 10px rgba(255,70,70,0.14) !important;
}

/* Email input: visible field + focus separation */
.portal-page .newsletter-form input[type="email"],
.portal-page #bd-email-stash{
  width: 100%;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(235, 255, 175, 0.22);
  color: rgba(255,255,255,0.92);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.55) inset,
    0 8px 16px rgba(0,0,0,0.35);
}

.portal-page .newsletter-form input[type="email"]::placeholder,
.portal-page #bd-email-stash::placeholder{
  color: rgba(255,255,255,0.55);
}

.portal-page .newsletter-form input[type="email"]:focus,
.portal-page #bd-email-stash:focus{
  outline: none;
  border-color: rgba(150,255,60,0.52);
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.55) inset,
    0 10px 18px rgba(0,0,0,0.40),
    0 0 20px rgba(150,255,60,0.25);
}

/* =========================================================
   GRIME PASS POLISH — 1990s VHS Horror / Tactical Terminal
   ========================================================= */

/* Global CRT scanline texture */
body{
  position: relative;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.12;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.045) 0px,
    rgba(255,255,255,0.045) 1px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0) 4px
  );
  mix-blend-mode: overlay;
}

/* =========================================================
   WARMTH & CONTEXT UPDATE — Portal + Pending + Vault Upsell
   ========================================================= */

/* Portal: sticker-pack logo above form */
.portal-stickerpack-logo-wrap{
  display: flex;
  justify-content: center;
  margin: 6px 0 14px;
}

.portal-stickerpack-logo{
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
  animation: cf-float 3.6s ease-in-out infinite;
}

@keyframes cf-float{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-6px); }
}

/* Vault: Commercial Break upsell card with cross-fade slideshow */
.commercial-break{
  margin-top: 18px;
}

.commercial-inner{
  display: flex;
  gap: 18px;
  align-items: center;
}

.commercial-left{
  flex: 0 0 320px;
}

.commercial-right{
  flex: 1 1 auto;
}

.commercial-slideshow{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(247, 3, 11, 0.55);
  box-shadow: 0 14px 28px rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.04);
}

.commercial-slide{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  opacity: 0;
  animation: cf-crossfade 12s infinite;
  background: linear-gradient(135deg, rgba(135,201,55,0.08), rgba(247,3,11,0.08));
}

.commercial-slide.slide-1{ animation-delay: 0s; }
.commercial-slide.slide-2{ animation-delay: 4s; }
.commercial-slide.slide-3{ animation-delay: 8s; }

@keyframes cf-crossfade{
  0%{ opacity: 0; }
  8%{ opacity: 1; }
  33%{ opacity: 1; }
  41%{ opacity: 0; }
  100%{ opacity: 0; }
}

@media (max-width: 780px){
  .commercial-inner{
    flex-direction: column;
    align-items: stretch;
  }
  .commercial-left{
    flex: 0 0 auto;
  }
}

/* Terminal-style buttons — scoped away from shop/nav */
.btn,
a.btn,
.portal-shell button,
.portal-shell input[type="submit"],
input[type="submit"],
input[type="button"]{
  background: #050506;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 6px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  text-decoration: none;
}

.btn:hover,
a.btn:hover,
.portal-shell button:hover,
.portal-shell input[type="submit"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover{
  background: var(--accent-green);
  color: #050506;
  box-shadow: 0 0 18px rgba(135,201,55,0.55), 0 0 2px rgba(135,201,55,0.85);
  transform: translateY(-1px);
}

/* Subtle glitch vibe on hover */
@keyframes grimeGlitch{
  0%   { text-shadow: 0 0 0 rgba(0,0,0,0); }
  25%  { text-shadow: 1px 0 rgba(247,3,11,0.65), -1px 0 rgba(135,201,55,0.65); }
  50%  { text-shadow: -1px 0 rgba(247,3,11,0.65), 1px 0 rgba(135,201,55,0.65); }
  75%  { text-shadow: 2px 0 rgba(247,3,11,0.4), -2px 0 rgba(135,201,55,0.4); }
  100% { text-shadow: 0 0 0 rgba(0,0,0,0); }
}
.btn:hover,
a.btn:hover{

/* Terminal-style inputs */
.support-form input[type="email"],
.embeddable-buttondown-form input[type="email"],
input[type="email"]{
  background: transparent !important;
  border: 2px solid var(--accent-green) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  padding: 0.75rem 0.9rem !important;
  letter-spacing: 0.06em;
}

.support-form input[type="email"]::placeholder,
.embeddable-buttondown-form input[type="email"]::placeholder,
input[type="email"]::placeholder{
  color: rgba(255,255,255,0.55) !important;
}

.support-form input[type="email"]:focus,
.embeddable-buttondown-form input[type="email"]:focus,
input[type="email"]:focus{
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(135,201,55,0.18), 0 0 18px rgba(135,201,55,0.25);
}

/* Homepage: center marquee + simplify */
.hero-marquee img{
  display:block;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  height: auto;
}

.newsletter-block{
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.newsletter-headline{
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.92);
}

/* Narrow wrapper for portal/vault */
.wrapper-narrow{
  max-width: 700px;
}

/* Portal/Vault: floating terminal window + red system alert border */
.portal-shell{
  border: 1px solid var(--accent-red);
  background: rgba(0,0,0,0.55);
  border-radius: 14px;
  padding: 0;
  box-shadow:
    0 0 28px rgba(0,0,0,0.85),
    0 0 18px rgba(135,201,55,0.12),
    0 0 14px rgba(247,3,11,0.12);
  overflow: hidden;
}

/* Keep portal/vault actions centered */
.portal-shell .support-form,
.support-form-home{
  justify-content: center;
}
.portal-shell .btn-row{
  justify-content: center;
}

/* Make existing “pill” buttons match new style */
.btn{
  border-radius: 6px;
}

/* Ensure nav stays readable against scanlines */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(4px);
}


/* === Emergency Rescue Fixes === */
.portal-logo-img {
    display: block;
    width: 100%;
    max-width: 320px; /* Constraints it to a nice header size */
    height: auto;
    margin: 0 auto 15px auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

/* Merch Card Layout */
.merch-card-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    align-items: center;
}
@media(max-width: 600px) { 
    .merch-card-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    } 
}
/* Slideshow Container */
.slideshow-window {
    position: relative;
    width: 100%;
    height: 150px;
    background: #000;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
}
/* The Slides */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: fadeCycle 12s infinite;
}
/* The Animation */
@keyframes fadeCycle {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

/* --- Cinematic Banner Fix --- */

.portal-shell img {
    width: 100%;
    height: 200px; /* Hard limit on height */
    object-fit: cover; /* Crops the image to fill the box without stretching */
    object-position: center 30%; /* Focuses on the Silhouette's chest/head area */
    display: block;
    border-bottom: 2px solid #F7030B;
}

.portal-shell {
    max-width: 700px;
    margin: 0 auto;
}

/* --- MASTER MOBILE CARD PADDING OVERRIDE --- */
@media (max-width: 768px) {
    .show-page .card, 
    .show-page .show-card, 
    .show-page .episode-card, 
    .show-page .character-card {
        padding: 1.25rem !important; 
    }
    .show-page .card h2,
    .show-page .show-card h2 {
        font-size: 1.45rem !important;
    }
}
/* =========================================================
   CUTOUT STICKERS: UNIFORM COLOR + READABILITY
   ========================================================= */
.card-sticker,
.sticker-red{
  background: rgba(132, 255, 76, 0.95) !important;
  color: #000 !important;
}

.card-sticker{
  display: block !important;
  width: fit-content !important;
  font-size: 1.1rem !important;
  padding: 8px 14px !important;
  margin-bottom: 1rem !important;
  position: relative !important;
  z-index: 2 !important;
  animation: badgePulse 2.5s ease-in-out infinite !important;
}

@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

/* Allow sticker pulse to breathe without clipping */
.show-card,
.card {
  overflow: visible !important;
}

/* Rainbow stripe needs clipping separately so it doesn't leak */
.show-card::before,
.card::before {
  border-radius: 14px 14px 0 0;
}

/* Master Rule: force brand font + casing across stickers and key headings */
h1, h2, h3, .card-sticker, .portal-card-title, .portal-wtf-text {
  font-family: 'TakeNoPrisoners', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* ===== BRAND TRANSITION OVERRIDES: RED HEADERS =====
   Replaces legacy "Permanent Marker" usage for red headers/titles.
*/
.red-head,
.section-title,
.subsection-title,
.card h2,
.card h3 {
  font-family: 'TakeNoPrisoners', sans-serif !important;
  color: var(--accent-red, #F7030B);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}


/* =========================
   1992 Crackids Fan Club (Vault)
   ========================= */

.vault-fanclub{
  background:
    radial-gradient(circle at 20% 10%, rgba(132,255,76,0.14), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(247,3,11,0.12), transparent 42%),
    radial-gradient(circle at 20% 85%, rgba(248,209,18,0.10), transparent 45%),
    linear-gradient(180deg, #060606 0%, #090909 100%);
}

.vault-fanclub .portal-section{
  padding-top: 28px;
}

/* Scaly bubble headline text */
.scaly-bubble-text{
  font-size: clamp(2.5rem, 8vw, 4.2rem);
  font-family: 'SuperKindly', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-image: url('../img/Crackodile-Text-layer.png');
  background-size: 180px;
  background-repeat: repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(2px 2px 0px #000) drop-shadow(-2px -2px 0px #000) drop-shadow(2px -2px 0px #000) drop-shadow(-2px 2px 0px #000) drop-shadow(4px 4px 0px #84ff4c);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

/* Red shouty header/closing line */
.red-stick-out{
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-family: 'TakeNoPrisoners', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #F7030B;
  text-transform: uppercase;
}

/* Sticker-book cards */
.vault-fanclub .sticker-card{
  position: relative;
  border: 2px solid #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 10px 30px rgba(0,0,0,0.55), 10px 10px 0 #84ff4c;
}

.vault-fanclub .sticker-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(45deg, rgba(132,255,76,0.06) 0 8px, rgba(247,3,11,0.05) 8px 16px, rgba(248,209,18,0.04) 16px 24px);
  mix-blend-mode: overlay;
  opacity: 0.25;
}

.vault-fanclub .sticker-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 560px){
  .vault-fanclub .sticker-grid{
    grid-template-columns: 1fr;
  }
}

.vault-fanclub .sticker-label{
  font-family: 'TakeNoPrisoners', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #fff;
  display: inline-block;
  background: #0b0b0b;
  border: 2px solid rgba(255,255,255,0.28);
  padding: 8px 10px;
  margin-bottom: 10px;
  transform: rotate(-1deg);
  letter-spacing: 0.04em;
}

/* Sticker-style buttons */
.btn-sticker{
  border: 3px solid #ffffff !important;
  box-shadow: 6px 6px 0px #84ff4c;
  background: #0b0b0b !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-sticker:hover{
  transform: translate(-1px, -1px);
}

/* Make sticker previews feel like paper */
.vault-fanclub .portal-sticker img{
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.55);
}


/* Vault top branding anchor */
.vault-top-brand{display:flex; justify-content:center; align-items:center; padding: 18px 0 10px;}
.vault-top-image{width: min(980px, 100%); height:auto; display:block; margin: 0 auto; border: 4px solid #fff; border-radius: 18px; filter: drop-shadow(8px 8px 0px #84ff4c);}


/* Vault hero image (shared link image) */
.vault-hero-image{
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,0.8));
}

.sticker-card-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* nav reskin handled in main header block above */
