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


/* ===== 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;
}

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

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 3, 5, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
}

.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-link:focus-visible {
  outline: 2px solid #9cff2e;
  outline-offset: 4px;
  border-radius: 4px;
}

.logo-text {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f7f3e6;
  opacity: 0.9;
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e5e5;
  padding-bottom: 0.1rem;
}

/* Warm amber glow on hover */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0%;
  height: 2px;
  background: radial-gradient(circle, var(--accent-green) 0%, var(--accent-green-dark) 60%, transparent 100%);
  filter: blur(1.2px);
  transition: width 0.18s ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

/* Current page */
.main-nav a.is-current {
  color: var(--accent-green);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: #f4f4f4;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== 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;
}

.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:'Permanent Marker', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing:.04em;
  text-transform:none;
  color:var(--accent-red);
}

.subsection-title {
  font-family:'Permanent Marker', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  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:'Permanent Marker', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--accent-red);
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}

.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 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 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;
  /* Breathing room so short pages don't feel framed by the footer */
  margin-top: 3rem;
  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: 32px;
  }

  .logo-text {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1.2rem 1rem;
    background: rgba(4, 3, 7, 0.98);
    border-bottom: 1px solid #222;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.2s ease-out, opacity 0.18s ease-out;
  }

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

  .main-nav a {
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

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

  .section {
    padding-inline: 0;
  }
}

@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:"Permanent Marker", cursive;
  color: var(--accent-red);
  letter-spacing:.5px;
  margin: 1rem 0 .35rem;
  font-size: 1.5rem;
}
