    /* ====== Page surface ====== */
    body { background: #fbf6ef !important; }

    .casts-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 5%;
    }

    /* ====== Hero strip ====== */
    .casts-hero {
      background: linear-gradient(180deg, #fbf6ef 0%, #f7ecdc 100%);
      padding: calc(var(--header-height) + 48px) 0 48px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .casts-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 88% 30%, rgba(184, 106, 60, 0.08), transparent 32%),
        radial-gradient(circle at 8% 80%, rgba(46, 60, 110, 0.05), transparent 28%);
      z-index: 0;
    }
    .casts-hero-inner { position: relative; z-index: 1; }
    .casts-eyebrow {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1.15rem;
      color: #d44e1d;
      letter-spacing: 0.08em;
      display: block;
      margin-bottom: 6px;
    }
    .casts-title {
      font-size: 2.6rem;
      font-weight: 900;
      letter-spacing: -0.025em;
      color: #0a0a0f;
      margin: 0 0 14px;
    }
    .casts-note {
      max-width: 680px;
      font-size: 0.95rem;
      line-height: 1.85;
      color: #555;
      margin: 0;
    }

    /* ====== Cast list section ====== */
    .casts-list-section {
      background: #fbf6ef;
      padding: 56px 0 96px;
    }
    .casts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    @media (max-width: 960px) {
      .casts-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
      .casts-grid { grid-template-columns: 1fr; }
    }

    .cast-card {
      background: #fff;
      border: 1px solid rgba(80, 38, 16, 0.06);
      border-radius: 14px;
      padding: 28px 26px 30px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      position: relative;
    }
    .cast-card-num {
      position: absolute;
      top: 18px;
      right: 22px;
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: rgba(212, 78, 29, 0.55);
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .cast-card-avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      overflow: hidden;
      background: #fce5d4;
      box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(80, 38, 16, 0.08);
    }
    .cast-card-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .cast-card-meta {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-top: 4px;
    }
    .cast-card-role {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 0.95rem;
      color: #d44e1d;
      letter-spacing: 0.04em;
    }
    .cast-card-name {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: #0a0a0f;
      margin: 0;
    }
    .cast-card-name-en {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 0.78rem;
      color: #888;
      letter-spacing: 0.04em;
      margin-top: 2px;
    }
    .cast-card-bio {
      font-size: 0.85rem;
      line-height: 1.85;
      color: #444;
      margin: 6px 0 0;
    }
    .cast-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 0.92rem;
      color: #0a0a0f;
      text-decoration: none;
      margin-top: 4px;
    }
    .cast-card-link::after {
      content: '→';
      font-style: normal;
    }

    /* ====== Recruit CTA (warm dusk band) ====== */
    .casts-recruit {
      background: linear-gradient(135deg, #9a583a 0%, #7d4524 100%);
      color: #fff;
      padding: 52px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .casts-recruit::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 80% 40%, rgba(255, 200, 140, 0.18), transparent 38%),
        radial-gradient(circle at 10% 90%, rgba(255, 215, 145, 0.10), transparent 34%);
    }
    .casts-recruit-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 36px;
    }
    @media (max-width: 720px) {
      .casts-recruit-inner { grid-template-columns: 1fr; }
    }
    .casts-recruit-eyebrow {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: rgba(255, 245, 232, 0.78);
      letter-spacing: 0.06em;
      display: block;
      margin-bottom: 6px;
    }
    .casts-recruit-title {
      font-size: 1.75rem;
      font-weight: 800;
      letter-spacing: -0.015em;
      color: #fff;
      margin: 0 0 10px;
      line-height: 1.4;
    }
    .casts-recruit-note {
      font-size: 0.92rem;
      line-height: 1.85;
      color: rgba(255, 245, 232, 0.85);
      margin: 0;
      max-width: 560px;
    }
    .casts-recruit-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: #fff;
      color: #2a1a0e;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      align-self: center;
      white-space: nowrap;
    }
    .casts-recruit-btn::after { content: '→'; }
  
    /* ====== AD section (shared dark band before footer) ====== */
    .lds-ad-section {
      position: relative;
      background: linear-gradient(180deg, #0d0c14 0%, #14100f 25%, #1f1612 50%, #18100c 75%, #0a0604 100%);
      padding: 60px 0 80px;
      overflow: hidden;
    }
    .lds-ad-section::before {
      content: '';
      position: absolute;
      top: 30%; left: 50%;
      transform: translateX(-50%);
      width: 55%; height: 45%;
      background: radial-gradient(ellipse 50% 60% at center,
        rgba(170, 105, 65, 0.16) 0%,
        rgba(140, 80, 50, 0.06) 45%,
        transparent 75%);
      pointer-events: none;
    }
    .lds-ad-section .lds-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 5%;
      position: relative;
      z-index: 1;
    }
    .lds-ad-header {
      display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
    }
    .lds-ad-eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.32em;
      color: rgba(255, 255, 255, 0.45); text-transform: uppercase;
    }
    .lds-ad-divider { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.1); }
    .lds-ad-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .lds-ad-banner {
      aspect-ratio: 6 / 5; max-width: 360px; width: 100%; margin: 0 auto;
      background: rgba(0, 0, 0, 0.35);
      border: 1px dashed rgba(180, 140, 110, 0.3);
      border-radius: 14px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; text-decoration: none; backdrop-filter: blur(4px);
    }
    .lds-ad-tag {
      font-size: 0.65rem; font-weight: 800; letter-spacing: 0.24em;
      color: #c89070; background: rgba(200, 144, 112, 0.1);
      padding: 3px 10px; border-radius: 4px;
    }
    .lds-ad-banner-text { font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.6); }
    .lds-ad-banner-size { font-size: 0.72rem; color: rgba(255, 255, 255, 0.32); letter-spacing: 0.04em; }
    @media (max-width: 768px) { .lds-ad-grid { grid-template-columns: 1fr; } }

    /* Footer dark continuation */
    .footer {
      background: linear-gradient(180deg, #0a0604 0%, #000 40%, #000 100%) !important;
    }
