    /* HERO */
    .emission-hero {
      text-align: center;
      padding: 50px 20px 30px;
      position: relative;
    }

    .emission-hero .hero-label {
      font-family: 'Permanent Marker', cursive;
      font-size: clamp(11px, 2vw, 15px);
      color: var(--amber);
      letter-spacing: 0.2em;
      opacity: 0.8;
      margin-bottom: 12px;
      display: block;
    }

    .emission-hero .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 12vw, 120px);
      letter-spacing: 0.04em;
      line-height: 0.85;
      color: var(--gold);
      text-shadow: 0 0 50px rgba(245,197,24,0.5), 5px 5px 0 rgba(0,0,0,0.9);
    }

    .emission-hero .hero-title .red {
      color: #ff6b6b;
      text-shadow: 0 0 50px rgba(255,107,107,0.5), 5px 5px 0 rgba(0,0,0,0.9);
    }

    .emission-hero .hero-desc {
      font-size: 15px;
      color: rgba(240,224,176,0.55);
      max-width: 480px;
      margin: 18px auto 0;
      line-height: 1.65;
    }

    /* STATS BAR */
    .stats-bar {
      display: flex;
      justify-content: center;
      gap: 0;
      max-width: 600px;
      margin: 36px auto 48px;
      padding: 0 20px;
    }

    .stat-item {
      flex: 1;
      text-align: center;
      padding: 20px 16px;
      background: var(--dark-2);
      border: 1px solid rgba(245,197,24,0.12);
      position: relative;
    }

    .stat-item:only-child  { border-radius: 14px; }
    .stat-item:not(:only-child):first-child { border-radius: 14px 0 0 14px; }
    .stat-item:not(:only-child):last-child  { border-radius: 0 14px 14px 0; border-left: none; }
    .stat-item:not(:first-child):not(:last-child) { border-left: none; }

    .stat-item .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 6vw, 52px);
      line-height: 1;
      color: var(--gold);
      text-shadow: 0 0 20px rgba(245,197,24,0.4);
      display: block;
    }

    .stat-item .stat-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(240,224,176,0.35);
      display: block;
      margin-top: 4px;
    }

    /* SECTION TITLE */
    .section-title {
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 5vw, 46px);
      color: var(--gold);
      letter-spacing: 0.15em;
      margin-bottom: 36px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
      margin: 10px auto 0;
    }

    /* EPISODES GRID */
    .episodes-wrap {
      max-width: 1100px;
      margin: 0 auto 80px;
      padding: 0 20px;
    }

    .episodes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 32px;
    }

    /* EPISODE CARD */
    .ep-card {
      background: var(--dark-2);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(245,197,24,0.1);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .ep-card:hover {
      transform: translateY(-6px);
      border-color: rgba(245,197,24,0.3);
      box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 30px rgba(245,197,24,0.08);
    }

    .ep-card.coming-soon {
      border-color: rgba(245,197,24,0.06);
      opacity: 0.7;
    }

    .ep-card.coming-soon:hover {
      transform: none;
      box-shadow: none;
      border-color: rgba(245,197,24,0.1);
    }

    /* CARD HEADER */
    .ep-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .ep-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 0.2em;
      color: var(--gold-dark);
      background: rgba(245,197,24,0.08);
      border: 1px solid rgba(245,197,24,0.2);
      border-radius: 100px;
      padding: 3px 12px;
      white-space: nowrap;
    }

    .ep-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px;
      letter-spacing: 0.1em;
      color: var(--text);
      flex: 1;
    }

    /* TIKTOK EMBED */
    .ep-video {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      background: rgba(0,0,0,0.3);
      min-height: 560px;
    }

    .ep-video blockquote.tiktok-embed {
      margin: 0 !important;
      width: 100% !important;
      max-width: 320px !important;
    }

    /* COMING SOON PLACEHOLDER */
    .ep-coming-soon {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px 20px;
      gap: 14px;
      min-height: 320px;
    }

    .ep-coming-soon .cs-icon {
      font-size: 52px;
      animation: sway 3s ease-in-out infinite;
    }

    .ep-coming-soon .cs-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-shadow: 0 0 20px rgba(245,197,24,0.3);
    }

    .ep-coming-soon .cs-sub {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(240,224,176,0.3);
    }

    .ep-coming-soon .cs-badge {
      background: rgba(245,197,24,0.08);
      border: 1px solid rgba(245,197,24,0.2);
      border-radius: 100px;
      padding: 6px 18px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 0.2em;
      color: var(--amber);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50%       { opacity: 1; }
    }

    /* CARD FOOTER  */
    .ep-card-footer {
      padding: 12px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.04);
    }

    .ep-beer {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(240,224,176,0.4);
    }

    .ep-beer span { color: var(--amber); }

    .ep-tiktok-link {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 0.15em;
      color: rgba(240,224,176,0.3);
      text-decoration: none;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .ep-tiktok-link:hover { color: var(--gold); }

    .ep-links {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .ep-insta-link {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 0.15em;
      color: rgba(240,224,176,0.3);
      text-decoration: none;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .ep-insta-link:hover {
      color: #e1306c;
    }

    /* NEW BADGE */
    .ep-latest {
      position: relative;
      border-color: rgba(255, 60, 60, 0.35) !important;
      box-shadow: 0 0 22px rgba(255, 60, 60, 0.12);
    }

    .ep-new-badge {
      position: absolute;
      top: 13px;
      right: 14px;
      background: #e02020;
      color: #fff;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 0.25em;
      padding: 3px 14px;
      border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,0.2);
      z-index: 10;
      animation: badge-blink 1.4s ease-in-out infinite;
      box-shadow: 0 0 14px rgba(224, 32, 32, 0.7);
    }

    @keyframes badge-blink {
      0%, 100% { opacity: 1;   box-shadow: 0 0 14px rgba(224,32,32,0.7); }
      50%       { opacity: 0.4; box-shadow: 0 0 4px  rgba(224,32,32,0.2); }
    }

    /* CTA */
    .cta-section {
      text-align: center;
      padding: 0 20px 80px;
    }

    .cta-section .cta-text {
      font-size: 14px;
      color: rgba(240,224,176,0.4);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .cta-links {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      border-radius: 12px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px;
      letter-spacing: 0.18em;
      text-decoration: none;
      transition: all 0.25s;
    }

    .cta-btn.tiktok {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text);
    }

    .cta-btn.tiktok:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.25);
      transform: translateY(-2px);
    }

    .cta-btn.insta {
      background: rgba(245,197,24,0.06);
      border: 1px solid rgba(245,197,24,0.2);
      color: var(--gold);
    }

    .cta-btn.insta:hover {
      background: rgba(245,197,24,0.12);
      border-color: rgba(245,197,24,0.4);
      transform: translateY(-2px);
    }

    @media (max-width: 680px) {
      .episodes-grid { grid-template-columns: 1fr; }
      .stats-bar { flex-direction: row; }
    }