```css
@font-face {
  font-family: "IBMVGA";
  src: url("fonts/Flexi_IBM_VGA_True.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBMVGA437";
  src: url("fonts/Flexi_IBM_VGA_True_437.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050807;
  --bg-soft: #07110c;
  --panel: #0b160f;
  --panel-alt: #102018;

  --lime: #b7ff63;
  --lime-soft: #8fd94f;
  --lime-dim: #5f8f36;
  --lime-glow: rgba(183, 255, 99, 0.22);

  --text: #d8f5c0;
  --text-muted: #91ad82;
  --border: rgba(183, 255, 99, 0.22);

  --max-width: 900px;
  --transition: 0.25s ease;
  --font-terminal: "IBMVGA", "IBMVGA437", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-terminal);
  background:
    radial-gradient(circle at 20% 15%, rgba(70, 130, 55, 0.18), transparent 35%),
    linear-gradient(180deg, #07110c 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: none;
  font-smooth: never;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 2px,
    transparent 5px
  );
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.9);
}

header {
  text-align: center;
  padding: 100px 20px 80px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent),
    radial-gradient(circle at center, rgba(183, 255, 99, 0.09), transparent 55%);
  border-bottom: 1px solid var(--border);
}

header h1 {
  margin: 0;
  color: var(--lime);
  font-family: var(--font-terminal);
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px var(--lime-glow),
    0 0 24px rgba(183, 255, 99, 0.14);
}

header h1::before {
  content: "> ";
  color: var(--lime-dim);
}

header h1::after {
  content: "_";
  color: var(--lime);
  animation: cursor-blink 1.2s steps(1) infinite;
}

header p {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-style: normal;
}
header p strong {
  color: var(--lime);
  border-bottom-color: var(--lime);
  text-shadow: 0 0 8px rgba(183, 255, 99, 0.3);
}

.container {
  max-width: var(--max-width);
  margin: 70px auto;
  padding: 0 20px;
}

.section-title {
  margin-bottom: 25px;
  padding-left: 16px;
  color: var(--lime);
  border-left: 4px solid var(--lime-soft);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(183, 255, 99, 0.18);
}

.section-title::before {
  content: "./";
  color: var(--lime-dim);
}

.episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.episode-card {
  position: relative;
  padding: 25px;
  background:
    linear-gradient(135deg, rgba(183, 255, 99, 0.035), transparent),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-alt) 100%);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 10px 28px rgba(0, 0, 0, 0.55);
  transition: var(--transition);
}

.episode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 255, 99, 0.45);
  box-shadow:
    inset 0 0 18px rgba(183, 255, 99, 0.05),
    0 12px 34px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(183, 255, 99, 0.08);
}

.episode-card h3 {
  margin-top: 0;
  color: var(--lime);
  font-weight: 400;
}

.episode-card p {
  color: var(--text-muted);
}

.episode-card a {
  color: var(--lime-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 255, 99, 0.35);
}

.episode-card a:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
  text-shadow: 0 0 8px rgba(183, 255, 99, 0.3);
}

.hero-image {
  width: 100%;
  margin: 50px auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.75),
    0 0 28px rgba(183, 255, 99, 0.08);
  filter: contrast(1.05) saturate(0.9) brightness(0.9);
}

footer {
  padding: 60px 20px;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.95rem;
  font-style: normal;
  border-top: 1px solid var(--border);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

footer #socialLinks a {
  color: var(--lime);
  border-bottom-color: var(--lime);
  text-shadow: 0 0 8px rgba(183, 255, 99, 0.3);
}
footer #license a {
  color: var(--lime);
  border-bottom-color: var(--lime);
  text-shadow: 0 0 8px rgba(183, 255, 99, 0.3);
}

.theme-yt .episode-card {
  border-color: rgba(255, 90, 80, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 90, 80, 0.08), transparent),
    linear-gradient(180deg, #160b0a 0%, #24100e 100%);
  box-shadow:
    inset 0 0 14px rgba(255, 90, 80, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.55);
}

.theme-yt .episode-card a {
  color: #ff756c;
  border-bottom-color: rgba(255, 117, 108, 0.35);
}

.theme-yt .episode-card h3 {
  color: #ffaaa4;
}

.theme-anchor .episode-card {
  border-color: rgba(29, 185, 84, 0.38);
  background:
    linear-gradient(135deg, rgba(29, 185, 84, 0.08), transparent),
    linear-gradient(180deg, #07140d 0%, #0d2417 100%);
  box-shadow:
    inset 0 0 14px rgba(29, 185, 84, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.55);
}

.theme-anchor .episode-card a {
  color: #45d978;
  border-bottom-color: rgba(69, 217, 120, 0.35);
}

.theme-anchor .episode-card h3 {
  color: #a6f2c9;
}

@keyframes cursor-blink {
  0%, 45% {
    opacity: 1;
  }

  46%, 100% {
    opacity: 0;
  }
}

@media (max-width: 640px) {
  header {
    padding: 70px 16px 55px;
  }

  .container {
    margin: 45px auto;
  }

  .episode-card {
    padding: 20px;
  }
}
```
