/* --- Very simple, non-intrusive animations --- */
  @keyframes verySimpleFade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Apply a tiny load fade to main regions */
  .hero,
  .cards,
  .content-section {
    opacity: 0;
    animation: verySimpleFade 180ms ease-out both;
  }

  /* Slight stagger for card items so appearance is pleasant but minimal */
  .cards .card {
    opacity: 0;
    animation: verySimpleFade 220ms ease-out both;
    animation-delay: 90ms;
  }
  .cards .card:nth-child(2) { animation-delay: 150ms; }
  .cards .card:nth-child(3) { animation-delay: 210ms; }

  /* Tiny interactive feedback for buttons (very subtle) */
  .btn, button {
    transition: background 120ms ease, transform 120ms ease;
  }
  .btn:active, button:active { transform: translateY(1px); }

  /* Respect users who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

    :root {
      --accent: #b76dff;
      --accent-soft: rgba(183, 109, 255, 0.2);
      --accent-strong: rgba(183, 109, 255, 0.45);
      --accent-glow: rgba(183, 109, 255, 0.75);
      --panel-bg: rgba(18, 10, 32, 0.9);
      --panel-border: rgba(255, 255, 255, 0.22);
      --panel-shadow: 0 32px 70px rgba(8, 0, 24, 0.65);
      --text-primary: #f7f0ff;
      --text-secondary: rgba(247, 240, 255, 0.78);
      --grid-line: rgba(183, 109, 255, 0.08);
      --font-family: 'Press Start 2P', cursive;
    }
    body.theme-light {
      --accent: #8a3dff;
      --accent-soft: rgba(138, 61, 255, 0.16);
      --accent-strong: rgba(138, 61, 255, 0.4);
      --accent-glow: rgba(138, 61, 255, 0.65);
      --panel-bg: rgba(255, 255, 255, 0.92);
      --panel-border: rgba(118, 84, 172, 0.35);
      --panel-shadow: 0 30px 60px rgba(65, 36, 105, 0.25);
      --text-primary: #1d0f2d;
      --text-secondary: rgba(29, 15, 45, 0.7);
      --grid-line: rgba(138, 61, 255, 0.1);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: var(--font-family);
      background: radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.2), transparent 64%), #0f061c;
      color: var(--text-primary);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: clamp(3rem, 9vh, 5.5rem) clamp(1.4rem, 4vw, 4rem) clamp(3rem, 8vh, 5.5rem);
      gap: clamp(2rem, 6vh, 4rem);
      position: relative;
      overflow-x: hidden;
    }
    body.editor-highlight {
      cursor: crosshair;
    }
    body.editor-highlight [data-copy] {
      outline: 1px dashed rgba(183, 109, 255, 0.55);
      background: rgba(183, 109, 255, 0.08);
    }
    body.editor-highlight [data-copy]:hover {
      outline-width: 2px;
      background: rgba(183, 109, 255, 0.15);
    }
    body.theme-light {
      background: radial-gradient(circle at 18% 20%, rgba(160, 132, 255, 0.4), transparent 62%), #f8f5ff;
      color: var(--text-primary);
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 12% 18%, rgba(255, 205, 255, 0.25), transparent 55%),
        radial-gradient(circle at 82% 68%, rgba(139, 94, 255, 0.2), transparent 58%),
        linear-gradient(145deg, rgba(24, 10, 40, 0.95), rgba(8, 6, 20, 0.92));
      z-index: -1;
    }
    body.theme-light::before {
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.65), transparent 55%),
        radial-gradient(circle at 78% 62%, rgba(138, 61, 255, 0.25), transparent 58%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(216, 201, 255, 0.8));
    }
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, var(--grid-line) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(90deg, rgba(183, 109, 255, 0.04) 0 1px, transparent 1px 20px);
      opacity: 0.4;
      z-index: -1;
      pointer-events: none;
    }
    body.theme-light::after {
      opacity: 0.25;
    }
    body.gate-open {
      overflow: hidden;
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
    .portal-gate {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      background: rgba(10, 6, 18, 0.92);
      backdrop-filter: blur(12px);
      z-index: 900;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .portal-gate.is-dismissed {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .portal-gate__card {
      width: min(92vw, 460px);
      padding: clamp(1.8rem, 4vw, 2.6rem);
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      border-radius: 28px;
      box-shadow: var(--panel-shadow);
      display: grid;
      gap: clamp(1.2rem, 3vw, 1.8rem);
      position: relative;
      overflow: hidden;
    }
    .portal-gate__card::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.12), transparent 60%),
        radial-gradient(circle at 78% 85%, rgba(183, 109, 255, 0.18), transparent 70%);
      pointer-events: none;
    }
    .portal-gate__badge {
      justify-self: flex-start;
      font-size: 0.65rem;
      letter-spacing: 0.3rem;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--accent-strong);
      border-radius: 999px;
      padding: 0.4rem 1rem;
      position: relative;
      z-index: 1;
    }
    .portal-gate__card h2 {
      font-size: clamp(0.9rem, 3vw, 1.1rem);
      color: var(--text-primary);
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }
    .portal-gate__list {
      list-style: none;
      display: grid;
      gap: 0.75rem;
      position: relative;
      z-index: 1;
    }
    .portal-gate__list li {
      font-size: 0.55rem;
      line-height: 1.6;
      color: var(--text-secondary);
      padding-left: 1.2rem;
      position: relative;
    }
    .portal-gate__list li::before {
      content: '•';
      position: absolute;
      left: 0;
      top: 0.1rem;
      color: var(--accent);
    }
    .portal-gate .btn {
      justify-self: flex-start;
    }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .hero {
      width: 100%;
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      border-radius: 28px;
      padding: clamp(1.8rem, 4vw, 2.6rem);
      box-shadow: var(--panel-shadow);
      position: relative;
      overflow: hidden;
    }
    body.theme-light .hero {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(138, 61, 255, 0.18);
      box-shadow: 0 30px 60px rgba(118, 84, 172, 0.15);
    }
    body.theme-light .hero::before,
    body.theme-light .hero::after {
      opacity: 0.45;
      mix-blend-mode: normal;
    }
    .hero[hidden] {
      display: none;
    }
    .portal-nav {
      position: relative;
      overflow: hidden;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: clamp(0.8rem, 1.8vw, 1.4rem);
      padding: clamp(1.2rem, 3vw, 1.8rem);
      border-radius: 28px;
      border: 1px solid var(--panel-border);
      background: rgba(8, 14, 12, 0.78);
      box-shadow: var(--panel-shadow);
    }
    .portal-nav::before,
    .portal-nav::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .portal-nav::before {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(8, 14, 12, 0) 100%);
      opacity: 0.8;
      filter: blur(18px);
    }
    .portal-nav::after {
      background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.35), transparent 60%);
      filter: blur(20px);
      opacity: 0.65;
    }
    .portal-nav[hidden] {
      display: none;
    }
    .portal-nav__logo {
      position: relative;
      z-index: 1;
      width: clamp(48px, 6vw, 64px);
      height: clamp(48px, 6vw, 64px);
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }
    .portal-nav__logo img {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 16px;
      filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
      transform: scale(1.5);
      transform-origin: center;
    }
    .portal-nav__controls {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      justify-content: center;
      flex: 1 1 280px;
      min-width: 240px;
    }
    .portal-nav__control {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      z-index: 0;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-primary);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      padding: 0.55rem 1.2rem;
      font-size: 0.55rem;
      letter-spacing: 0.16rem;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }
    .portal-nav__control::before,
    .portal-nav__control::after {
      content: '';
      position: absolute;
      pointer-events: none;
    }
    .portal-nav__control::before {
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(120deg, rgba(183, 109, 255, 0.3), rgba(105, 52, 210, 0.85));
      transform-origin: left center;
      transform: scaleX(0);
      opacity: 0;
      transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.45s ease-out;
      z-index: -1;
    }
    .portal-nav__control::after {
      left: 18px;
      right: 18px;
      bottom: 6px;
      height: 3px;
      border-radius: 999px;
      background: var(--accent);
      opacity: 0;
      transform: scaleX(0.3);
      transform-origin: center;
      transition: opacity 0.25s ease, transform 0.25s ease;
      z-index: 1;
    }
    .portal-nav__control:hover,
    .portal-nav__control:focus-visible {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.12);
      color: var(--accent);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
      outline: none;
    }
    .portal-nav__control.is-active {
      background: transparent;
      color: #fef9ff;
      border-color: transparent;
      box-shadow: 0 10px 0 rgba(38, 12, 70, 0.85), 0 0 24px rgba(183, 109, 255, 0.4);
    }
    .portal-nav__control.is-active::before {
      transform: scaleX(1);
      opacity: 1;
    }
    .portal-nav__control.is-active::after {
      opacity: 1;
      transform: scaleX(1);
    }
    .portal-nav__info-trigger,
    .portal-nav__status {
      flex: 0 0 auto;
    }
    .portal-nav__status {
      justify-self: end;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      padding: 0.45rem 0.6rem;
      border-radius: 18px;
      border: 1px solid rgba(183, 109, 255, 0.26);
      background: rgba(6, 14, 12, 0.65);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    }
    .portal-nav__status.is-live {
      background: rgba(65, 0, 0, 0.65);
      border-color: rgba(255, 71, 71, 0.45);
    }
    .portal-nav__status.is-offline {
      background: rgba(6, 24, 18, 0.65);
      border-color: rgba(183, 109, 255, 0.26);
    }
    .portal-nav__status img {
      width: 28px;
      height: 28px;
      border-radius: 9px;
      object-fit: cover;
      filter: drop-shadow(0 0 12px rgba(183, 109, 255, 0.35));
    }
    .portal-nav__status .status-dot {
      width: 10px;
      height: 10px;
    }
    .portal-nav__status .status-text {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    body.theme-light .portal-nav {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(118, 84, 172, 0.35);
      box-shadow: 0 20px 50px rgba(82, 56, 122, 0.2);
    }
    body.theme-light .portal-nav__control {
      background: rgba(255, 255, 255, 0.85);
      border-color: rgba(138, 61, 255, 0.25);
      color: #1d0f2d;
      box-shadow: 0 8px 18px rgba(82, 56, 122, 0.2);
    }
    body.theme-light .portal-nav__control::before {
      background: linear-gradient(120deg, rgba(183, 109, 255, 0.5), rgba(138, 61, 255, 0.9));
    }
    body.theme-light .portal-nav__control:hover,
    body.theme-light .portal-nav__control:focus-visible {
      background: rgba(138, 61, 255, 0.18);
      color: #fef9ff;
      box-shadow: 0 10px 24px rgba(82, 56, 122, 0.25);
    }
    body.theme-light .portal-nav__control.is-active {
      background: transparent;
      color: #fff7ff;
      border-color: transparent;
      box-shadow: 0 12px 22px rgba(118, 84, 172, 0.35);
    }
    body.theme-light .portal-nav__info-trigger {
      background: rgba(255, 255, 255, 0.9);
      color: #1d0f2d;
      border-color: rgba(138, 61, 255, 0.35);
      box-shadow: 0 8px 20px rgba(118, 84, 172, 0.25);
    }
    body.theme-light .portal-nav__info-trigger:hover,
    body.theme-light .portal-nav__info-trigger:focus-visible {
      color: #fff;
      background: rgba(138, 61, 255, 0.22);
      box-shadow: 0 12px 28px rgba(118, 84, 172, 0.3);
    }
    body.theme-light .portal-nav__status {
      background: rgba(248, 245, 255, 0.95);
      border-color: rgba(138, 61, 255, 0.35);
      box-shadow: 0 10px 30px rgba(118, 84, 172, 0.25);
    }
    body.theme-light .portal-nav__status.is-live {
      background: rgba(255, 235, 244, 0.95);
      border-color: rgba(255, 108, 152, 0.65);
    }
    body.theme-light .portal-nav__status.is-offline {
      background: rgba(243, 238, 255, 0.95);
      border-color: rgba(138, 61, 255, 0.35);
    }
    body.theme-light .portal-nav__status img {
      filter: drop-shadow(0 0 12px rgba(138, 61, 255, 0.35));
    }
    .seasonal-panel.is-hidden {
      display: none;
    }
    .hero::before,
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero::before {
      background: radial-gradient(circle at 12% 28%, rgba(183, 109, 255, 0.24), transparent 62%);
    }
    .hero::after {
      background:
        linear-gradient(135deg, rgba(183, 109, 255, 0.16), transparent 55%),
        repeating-linear-gradient(0deg, rgba(183, 109, 255, 0.06) 0 1px, transparent 1px 12px),
        repeating-linear-gradient(90deg, rgba(183, 109, 255, 0.05) 0 1px, transparent 1px 12px);
      mix-blend-mode: screen;
      opacity: 0.85;
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(183, 109, 255, 0.16);
      border: 1px solid rgba(183, 109, 255, 0.35);
      border-radius: 999px;
      font-size: clamp(0.48rem, 1.6vw, 0.55rem);
      letter-spacing: 0.32rem;
      text-transform: uppercase;
      color: rgba(224, 255, 238, 0.85);
      margin-bottom: clamp(1rem, 3vh, 1.6rem);
    }
    body.theme-light .hero__badge {
      background: rgba(138, 61, 255, 0.1);
      border-color: rgba(138, 61, 255, 0.25);
      color: #55208f;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.8rem;
      font-size: clamp(0.45rem, 1.5vw, 0.52rem);
      letter-spacing: 0.28rem;
      text-transform: uppercase;
      background: rgba(183, 109, 255, 0.12);
      border: 1px solid rgba(183, 109, 255, 0.28);
      border-radius: 999px;
      color: rgba(224, 255, 238, 0.78);
    }
    body.theme-light .section-tag {
      background: rgba(138, 61, 255, 0.1);
      border-color: rgba(138, 61, 255, 0.28);
      color: #4a2074;
    }
    body.theme-light .hero::before {
      background: radial-gradient(circle at 12% 28%, rgba(138, 61, 255, 0.18), transparent 62%);
    }
    body.theme-light .hero::after {
      background:
        linear-gradient(135deg, rgba(138, 61, 255, 0.12), transparent 55%),
        repeating-linear-gradient(0deg, rgba(138, 61, 255, 0.05) 0 1px, transparent 1px 12px),
        repeating-linear-gradient(90deg, rgba(138, 61, 255, 0.04) 0 1px, transparent 1px 12px);
      mix-blend-mode: normal;
      opacity: 0.75;
    }
    body.theme-light .hero__badge,
    body.theme-light .section-tag {
      background: rgba(138, 61, 255, 0.08);
      border-color: rgba(138, 61, 255, 0.28);
      color: #2a0f44;
    }
    .hero__title {
      font-size: clamp(1.1rem, 3.8vw, 1.8rem);
      color: var(--accent);
      text-shadow: 0 0 20px var(--accent-glow);
      margin-bottom: clamp(1rem, 2.8vh, 1.8rem);
      display: flex;
      flex-direction: column;
      gap: clamp(0.65rem, 1.8vh, 1rem);
    }
    .hero__title span:last-child {
      color: var(--text-secondary);
      font-size: clamp(0.6rem, 2.4vw, 0.7rem);
      letter-spacing: 0.18rem;
      text-transform: uppercase;
    }
    .hero__meta {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: clamp(0.8rem, 2vw, 1.4rem);
      margin-top: clamp(1.2rem, 3vh, 2rem);
    }
    .hero__stat {
      background: rgba(4, 40, 26, 0.55);
      border: 1px solid rgba(183, 109, 255, 0.2);
      border-radius: 16px;
      padding: 0.9rem 1.1rem;
      display: grid;
      gap: 0.45rem;
      box-shadow: inset 0 0 18px rgba(183, 109, 255, 0.08);
    }
    .hero__stat small {
      font-size: 0.45rem;
      letter-spacing: 0.22rem;
      text-transform: uppercase;
      color: rgba(224, 255, 238, 0.65);
    }
    .hero__stat strong {
      font-size: 0.75rem;
      color: var(--accent);
      letter-spacing: 0.12rem;
    }
    .hero__stat--status {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      padding: 1rem 1.2rem;
      background: rgba(6, 24, 18, 0.82);
      border: 1px solid rgba(183, 109, 255, 0.3);
      border-radius: 18px;
      box-shadow: inset 0 0 18px rgba(183, 109, 255, 0.12);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .hero__stat--status small {
      color: rgba(224, 255, 238, 0.75);
    }
    .hero__stat--status strong {
      color: var(--text-primary);
      letter-spacing: 0.18rem;
      text-transform: uppercase;
    }
    .hero__stat--status .status-copy {
      display: grid;
      gap: 0.3rem;
    }
    .hero__stat--status.is-live {
      border-color: rgba(255, 96, 96, 0.65);
      box-shadow: inset 0 0 18px rgba(255, 96, 96, 0.28), 0 0 24px rgba(255, 96, 96, 0.2);
    }
    .hero__stat--status.is-offline {
      opacity: 0.9;
    }
    body.theme-light .hero__stat {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(138, 61, 255, 0.18);
      box-shadow: 0 16px 28px rgba(118, 84, 172, 0.15);
    }
    body.theme-light .hero__stat small {
      color: rgba(60, 38, 94, 0.65);
    }
    body.theme-light .hero__stat strong {
      color: #7c3ed8;
      text-shadow: none;
    }
    body.theme-light .hero__stat--status {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(138, 61, 255, 0.24);
      box-shadow: 0 18px 32px rgba(118, 84, 172, 0.18);
    }
    body.theme-light .hero__stat--status small {
      color: rgba(60, 38, 94, 0.7);
    }
    body.theme-light .hero__stat--status strong {
      color: rgba(40, 24, 72, 0.85);
    }
    .seasonal-panel {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: clamp(0.6rem, 1.8vw, 1.4rem);
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      border-radius: 26px;
      padding: clamp(1.2rem, 3vw, 2.2rem);
      box-shadow: var(--panel-shadow);
      position: relative;
      overflow: hidden;
    }
    .seasonal-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, var(--accent-soft), transparent 60%),
        linear-gradient(135deg, rgba(0, 80, 46, 0.35), rgba(0, 0, 0, 0));
      opacity: 0.95;
      pointer-events: none;
    }
    .seasonal-panel::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, rgba(183, 109, 255, 0.05) 0 1px, transparent 1px 12px),
        repeating-linear-gradient(90deg, rgba(183, 109, 255, 0.04) 0 1px, transparent 1px 12px);
      mix-blend-mode: screen;
      opacity: 0.4;
      pointer-events: none;
    }
    .seasonal-panel__header {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: clamp(0.6rem, 1.8vw, 1.2rem);
    }
    .seasonal-panel__toggle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(183, 109, 255, 0.38);
      background: rgba(6, 18, 14, 0.82);
      display: grid;
      place-items: center;
      color: var(--accent);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }
    .seasonal-panel__toggle::after {
      content: '−';
      font-size: 1.2rem;
      line-height: 1;
    }
    .seasonal-panel__toggle[aria-expanded="false"]::after {
      content: '∨';
      transform: translateY(2px);
    }
    .seasonal-panel__toggle:hover,
    .seasonal-panel__toggle:focus-visible {
      transform: translateY(-2px);
      background: rgba(183, 109, 255, 0.2);
      border-color: rgba(183, 109, 255, 0.55);
      color: #00170b;
      outline: none;
    }
    .seasonal-panel__content {
      position: relative;
      z-index: 2;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transform: scaleY(0.96);
      transition: max-height 0.4s ease, opacity 0.28s ease, transform 0.28s ease;
      pointer-events: none;
    }
    .seasonal-panel__content.is-open {
      max-height: var(--seasonal-content-height, 520px);
      opacity: 1;
      transform: scaleY(1);
      pointer-events: auto;
    }
    .seasonal-panel__body {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: clamp(1rem, 2.6vw, 2rem);
    }
    .seasonal-panel__main,
    .seasonal-panel__aside {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: clamp(0.8rem, 2vw, 1.4rem);
    }
    .seasonal-panel__title {
      font-size: clamp(1rem, 3vw, 1.4rem);
      color: var(--accent);
      letter-spacing: 0.22rem;
      text-transform: uppercase;
      text-shadow: 0 0 20px var(--accent-glow);
    }
    .seasonal-panel__lead {
      font-size: clamp(0.55rem, 1.7vw, 0.68rem);
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 32ch;
    }
    .seasonal-panel__aside {
      border-left: 1px solid rgba(183, 109, 255, 0.25);
      padding-left: clamp(1.2rem, 3vw, 2rem);
      justify-content: space-between;
    }
    .seasonal-panel__aside h3 {
      font-size: clamp(0.68rem, 2vw, 0.85rem);
      color: var(--text-primary);
      letter-spacing: 0.18rem;
      text-transform: uppercase;
    }
    .seasonal-panel__aside p {
      font-size: clamp(0.52rem, 1.6vw, 0.62rem);
      line-height: 1.6;
      color: var(--text-secondary);
    }
    .seasonal-panel__tag {
      align-self: center;
      font-size: clamp(0.48rem, 1.4vw, 0.55rem);
      letter-spacing: 0.28rem;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      border: 1px solid rgba(183, 109, 255, 0.35);
      border-radius: 999px;
      background: rgba(183, 109, 255, 0.12);
      color: rgba(224, 255, 238, 0.85);
    }
    .seasonal-panel__actions {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .seasonal-panel__actions .btn {
      flex: 0 0 auto;
    }
    .seasonal-panel__next-date {
      font-size: clamp(0.7rem, 2vw, 0.82rem);
      color: var(--accent);
      text-shadow: 0 0 14px var(--accent-glow);
    }
    .seasonal-panel.is-collapsed {
      padding: 0.8rem 1.3rem;
      gap: 0.4rem;
      width: fit-content;
    }
    .seasonal-panel.is-collapsed .seasonal-panel__tag {
      display: none;
    }
    .seasonal-panel.is-collapsed .seasonal-panel__title {
      font-size: clamp(0.8rem, 2.4vw, 1rem);
      text-shadow: none;
    }
    .seasonal-panel.is-collapsed .seasonal-panel__content {
      display: none;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: clamp(1.6rem, 3.6vw, 2.4rem);
      width: 100%;
      justify-items: stretch;
      align-items: stretch;
    }
    .cards.is-hidden {
      display: none !important;
    }
    .card {
      position: relative;
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      border-radius: 24px;
      padding: clamp(0.9rem, 2.8vw, 1.4rem);
      box-shadow: var(--panel-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: clamp(0.7rem, 2vw, 1.1rem);
      overflow: hidden;
    }
    body.theme-light .card {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(138, 61, 255, 0.16);
      box-shadow: 0 24px 48px rgba(118, 84, 172, 0.15);
    }
    .card--compact {
      min-height: clamp(4rem, 12vh, 5.6rem);
      justify-content: space-between;
    }
    .card:nth-child(1) {  }
    .card:nth-child(2) {  }
    .card:nth-child(3) {  }
    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 25%, var(--accent-soft), transparent 60%),
        linear-gradient(160deg, rgba(183, 109, 255, 0.2), transparent 55%);
      opacity: 0.85;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .card:hover {
      transform: translateY(-8px);
      border-color: rgba(183, 109, 255, 0.55);
      box-shadow: 0 24px 45px rgba(5, 15, 11, 0.8);
    }
    .card:hover::before {
      opacity: 1;
    }
    .card__icon {
      font-size: clamp(1.4rem, 5vw, 1.8rem);
      color: var(--accent);
      filter: drop-shadow(0 0 12px var(--accent-glow));
    }
    .card__title {
      font-size: clamp(0.75rem, 2.2vw, 0.95rem);
      color: var(--accent);
      text-shadow: 0 0 12px rgba(183, 109, 255, 0.48);
    }
    .card__text {
      font-size: clamp(0.55rem, 2vw, 0.62rem);
      line-height: 1.8;
      color: var(--text-secondary);
      letter-spacing: 0.06rem;
    }
    .card__actions {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      width: 100%;
    }
    .card.card--compact .card__actions .btn {
      width: 100%;
      justify-content: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      text-decoration: none;
      cursor: pointer;
      border: none;
      border-radius: 999px;
      font-family: inherit;
      font-size: 0.58rem;
      letter-spacing: 0.16rem;
      text-transform: uppercase;
      padding: 0.65rem 1.4rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .btn--primary {
      background: linear-gradient(135deg, rgba(183, 109, 255, 0.95), rgba(96, 44, 196, 0.95));
      color: #00170b;
      box-shadow: 0 10px 0 rgba(38, 12, 70, 0.9), 0 0 22px rgba(183, 109, 255, 0.42);
    }
    .btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 0 rgba(38, 12, 70, 0.9), 0 0 30px rgba(183, 109, 255, 0.6);
    }
    .btn--ghost {
      background: rgba(183, 109, 255, 0.18);
      color: var(--accent);
      border: 1px solid rgba(183, 109, 255, 0.35);
      box-shadow: 0 0 18px rgba(183, 109, 255, 0.25);
    }
    .btn--ghost:hover {
      transform: translateY(-2px);
      background: rgba(183, 109, 255, 0.28);
      box-shadow: 0 0 24px rgba(183, 109, 255, 0.45);
    }
    body.theme-light .btn--primary {
      background: linear-gradient(135deg, rgba(183, 109, 255, 0.92), rgba(152, 96, 250, 0.95));
      color: #fffaff;
      box-shadow: 0 14px 25px rgba(138, 61, 255, 0.25);
    }
    body.theme-light .btn--primary:hover {
      box-shadow: 0 18px 32px rgba(138, 61, 255, 0.3);
    }
    body.theme-light .btn--ghost {
      border-color: rgba(138, 61, 255, 0.28);
      color: #3b1a5f;
      background: rgba(138, 61, 255, 0.12);
      box-shadow: 0 10px 22px rgba(138, 61, 255, 0.18);
    }
    body.theme-light .btn--ghost:hover {
      color: #fff;
      box-shadow: 0 14px 26px rgba(138, 61, 255, 0.26);
    }
    .portal-nav__info-trigger {
      background: rgba(255, 255, 255, 0.08);
      color: var(--accent);
      border: 1px solid rgba(183, 109, 255, 0.26);
      border-radius: 999px;
      padding: 0.55rem 1.2rem;
      font-size: 0.52rem;
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    }
    .portal-nav__info-trigger:hover,
    .portal-nav__info-trigger:focus-visible {
      transform: translateY(-2px);
      background: rgba(183, 109, 255, 0.18);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
      color: #00170b;
      outline: none;
    }
    .hero__info-trigger {
      position: absolute;
      top: clamp(1.2rem, 3vw, 1.8rem);
      right: clamp(1.2rem, 3vw, 1.8rem);
      background: rgba(183, 109, 255, 0.18);
      border: 1px solid rgba(183, 109, 255, 0.32);
      border-radius: 999px;
      padding: 0.6rem 1.4rem;
      font-size: 0.48rem;
      letter-spacing: 0.22rem;
      text-transform: uppercase;
      color: var(--accent);
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
      transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    }
    .hero__info-trigger:hover,
    .hero__info-trigger:focus-visible {
      transform: translateY(-2px);
      background: rgba(183, 109, 255, 0.28);
      color: #00170b;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
      outline: none;
    }
    body.info-overlay-open {
      overflow: hidden;
    }
    .info-overlay[hidden] {
      display: none;
    }
    .info-overlay {
      position: fixed;
      inset: 0;
      z-index: 950;
      display: grid;
      place-items: center;
      padding: clamp(2rem, 5vw, 3.6rem);
    }
    .info-overlay__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(4, 8, 6, 0.85);
      backdrop-filter: blur(12px);
    }
    .info-overlay__dialog {
      position: relative;
      width: min(92vw, 520px);
      background: rgba(8, 14, 12, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 26px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
      overflow: hidden;
    }
    .info-overlay__dialog::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.24), transparent 62%),
        radial-gradient(circle at 85% 90%, rgba(183, 109, 255, 0.18), transparent 70%);
      opacity: 0.85;
      pointer-events: none;
    }
    .info-overlay__close {
      position: absolute;
      top: 1rem;
      right: 1.2rem;
      z-index: 3;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(0, 0, 0, 0.45);
      color: var(--accent);
      font-size: 1.1rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
    }
    .info-overlay__close:hover,
    .info-overlay__close:focus-visible {
      transform: rotate(90deg);
      background: rgba(183, 109, 255, 0.18);
      color: #00170b;
      outline: none;
    }
    .news-card {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      width: 100%;
      padding: 2.6rem 2.2rem 1.8rem;
      border-radius: 22px;
      background: linear-gradient(165deg, rgba(0, 35, 20, 0.72), rgba(2, 8, 5, 0.92));
      box-shadow: inset 0 0 28px rgba(0, 255, 153, 0.08);
      color: #d9ffe8;
      overflow: hidden;
    }
    .news-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(183, 109, 255, 0.08), transparent 55%),
        radial-gradient(circle at 120% 20%, rgba(183, 109, 255, 0.12), transparent 40%);
      pointer-events: none;
    }
    .news-header {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 0.6rem;
    }
    .news-kicker {
      font-size: 0.52rem;
      letter-spacing: 0.28rem;
      text-transform: uppercase;
      color: rgba(223, 255, 246, 0.75);
    }
    .news-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .news-card h2 {
      color: var(--accent);
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-shadow: 0 0 12px rgba(0, 255, 153, 0.45);
    }
    .news-icon {
      font-size: 1.15rem;
      filter: drop-shadow(0 0 4px rgba(0, 255, 160, 0.8));
    }
    .news-status {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.6rem;
      border-radius: 999px;
      background: rgba(10, 80, 45, 0.6);
      border: 1px solid rgba(183, 109, 255, 0.2);
      font-size: 0.48rem;
      text-transform: uppercase;
      letter-spacing: 0.22rem;
      color: rgba(223, 255, 246, 0.8);
      transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }
    .news-status.is-live {
      background: rgba(65, 0, 0, 0.6);
      border-color: rgba(255, 71, 71, 0.45);
      color: rgba(255, 226, 226, 0.9);
    }
    .news-status.is-offline {
      background: rgba(12, 38, 26, 0.5);
      border-color: rgba(183, 109, 255, 0.14);
      color: rgba(210, 240, 228, 0.7);
    }
    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(120, 155, 140, 0.6);
      box-shadow: none;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    .status-dot.status-dot--live {
      background: #ff4747;
      box-shadow: 0 0 12px rgba(255, 71, 71, 0.85);
    }
    .status-dot.status-dot--offline {
      background: rgba(120, 155, 140, 0.6);
      box-shadow: none;
    }
    body.theme-light .news-status {
      background: rgba(248, 245, 255, 0.95);
      border-color: rgba(138, 61, 255, 0.28);
      color: #2a0f44;
    }
    body.theme-light .news-status.is-live {
      background: rgba(255, 235, 244, 0.95);
      border-color: rgba(255, 108, 152, 0.5);
      color: #6a0a2a;
    }
    body.theme-light .news-status.is-offline {
      background: rgba(244, 240, 255, 0.95);
      border-color: rgba(138, 61, 255, 0.28);
      color: rgba(42, 15, 68, 0.75);
    }
    body.theme-light .status-dot {
      background: rgba(138, 61, 255, 0.4);
    }
    body.theme-light .status-dot.status-dot--offline {
      background: rgba(138, 61, 255, 0.4);
    }
    .status-text {
      display: inline-block;
      letter-spacing: 0.22rem;
      text-transform: uppercase;
    }
    .news-updated {
      font-size: 0.46rem;
      text-transform: uppercase;
      letter-spacing: 0.28rem;
      color: rgba(217, 255, 232, 0.58);
    }
    .news-list {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      list-style: none;
      padding-left: 0;
    }
    .news-item {
      padding: 0.75rem 0.9rem 0.75rem 1.6rem;
      border-radius: 12px;
      background: rgba(4, 35, 22, 0.45);
      border: 1px solid rgba(183, 109, 255, 0.12);
      box-shadow: inset 2px 0 0 rgba(183, 109, 255, 0.5);
      position: relative;
    }
    .news-item::before {
      content: attr(data-icon);
      position: absolute;
      left: 0.45rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.8rem;
      text-shadow: 0 0 8px rgba(183, 109, 255, 0.4);
    }
    .news-item strong {
      display: block;
      font-size: 0.62rem;
      color: var(--accent);
      margin-bottom: 0.45rem;
      letter-spacing: 0.1rem;
    }
    .news-item p {
      font-size: 0.55rem;
      line-height: 1.7;
      color: rgba(221, 255, 238, 0.82);
    }
    .news-footer {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
    }
    .news-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.7rem 1.3rem;
      font-size: 0.58rem;
      text-decoration: none;
      background: linear-gradient(135deg, rgba(183, 109, 255, 0.85), rgba(88, 38, 182, 0.9));
      color: #001509;
      border-radius: 999px;
      box-shadow: 0 8px 0 rgba(50, 15, 92, 0.75), 0 0 18px rgba(183, 109, 255, 0.38);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .news-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 0 rgba(50, 15, 92, 0.75), 0 0 26px rgba(183, 109, 255, 0.55);
    }
    .news-progress {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      min-width: 160px;
    }
    .progress-label {
      font-size: 0.48rem;
      letter-spacing: 0.18rem;
      text-transform: uppercase;
      color: rgba(217, 255, 232, 0.68);
    }
    .progress-track {
      position: relative;
      height: 8px;
      border-radius: 999px;
      background: rgba(4, 35, 22, 0.7);
      border: 1px solid rgba(183, 109, 255, 0.2);
      overflow: hidden;
    }
    .progress-fill {
      position: absolute;
      inset: 0;
      width: var(--progress, 45%);
      background: linear-gradient(90deg, rgba(183, 109, 255, 0.95), rgba(96, 44, 190, 0.85));
      box-shadow: 0 0 12px rgba(183, 109, 255, 0.65);
    }
    .panel-close {
      position: absolute;
      top: clamp(1rem, 3vw, 2.4rem);
      right: clamp(1rem, 3vw, 2.4rem);
      z-index: 10;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(12, 40, 26, 0.8);
      color: var(--accent);
      font-family: inherit;
      font-size: 1.2rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
      transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    }
    .panel-close:hover,
    .panel-close:focus-visible {
      transform: translateY(-2px);
      background: rgba(18, 60, 40, 0.85);
      color: #fff;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
      outline: none;
    }
    body.theme-light .panel-close {
      background: rgba(255, 255, 255, 0.92);
      color: #6a2cd1;
      border-color: rgba(138, 61, 255, 0.25);
      box-shadow: 0 20px 35px rgba(118, 84, 172, 0.22);
    }
    body.theme-light .panel-close:hover,
    body.theme-light .panel-close:focus-visible {
      background: rgba(138, 61, 255, 0.18);
      color: #fff;
      box-shadow: 0 24px 45px rgba(118, 84, 172, 0.28);
    }
    body.theme-light .panel-close {
      background: rgba(255, 255, 255, 0.92);
      color: #6a2cd1;
      border-color: rgba(138, 61, 255, 0.25);
      box-shadow: 0 20px 35px rgba(118, 84, 172, 0.22);
    }
    body.theme-light .panel-close:hover,
    body.theme-light .panel-close:focus-visible {
      background: rgba(138, 61, 255, 0.18);
      color: #fff;
      box-shadow: 0 24px 45px rgba(118, 84, 172, 0.28);
    }
    .content-section {
      position: relative;
      width: 100%;
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      border-radius: 28px;
      padding: clamp(1.8rem, 4vw, 2.6rem);
      box-shadow: var(--panel-shadow);
      display: grid;
      gap: clamp(1.4rem, 3vh, 2.2rem);
      overflow: hidden;
      isolation: isolate;
    }
    .content-section[hidden] {
      display: none;
    }
    .content-section::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.14), transparent 65%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.06), transparent 65%);
      pointer-events: none;
      mix-blend-mode: screen;
    }
    .content-section__header {
      display: grid;
      gap: clamp(0.7rem, 2vh, 1.2rem);
    }
    .content-section__header h1 {
      font-size: clamp(1rem, 3.2vw, 1.4rem);
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.28rem;
      text-shadow: 0 0 20px var(--accent-glow);
    }
    .content-section__lead {
      font-size: clamp(0.55rem, 1.7vw, 0.68rem);
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 58ch;
    }
    .content-section__grid {
      display: grid;
      gap: clamp(1.4rem, 3vw, 2.2rem);
    }
    .content-section--split .content-section__grid {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      align-items: stretch;
    }
    .content-section--rules .content-section__grid {
      grid-template-columns: minmax(260px, 1fr);
    }
    .rules-viewer {
      display: flex;
      flex-direction: column;
      gap: clamp(1rem, 2.5vw, 1.5rem);
    }
    .rules-viewer__frame {
      width: 100%;
      height: clamp(320px, 70vh, 760px);
      border: none;
      border-radius: 22px;
      background: rgba(6, 10, 18, 0.85);
      box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.45);
    }
    body.theme-light .rules-viewer__frame {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: inset 0 0 20px rgba(118, 84, 172, 0.25);
    }
    .rules-viewer__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    .content-section--horror .content-card {
      background: rgba(10, 18, 16, 0.82);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: inset 0 0 28px rgba(183, 109, 255, 0.08), 0 24px 50px rgba(0, 0, 0, 0.55);
    }
    .content-section--horror .media-callout {
      background:
        linear-gradient(160deg, rgba(6, 36, 26, 0.9), rgba(2, 14, 9, 0.88)),
        radial-gradient(circle at 35% 30%, rgba(183, 109, 255, 0.2), transparent 60%);
      border-color: rgba(183, 109, 255, 0.32);
    }
    .ordered-list {
      counter-reset: horror-step;
      list-style: none;
      display: grid;
      gap: 0.6rem;
    }
    .ordered-list li {
      position: relative;
      padding-left: 1.6rem;
    }
    .ordered-list li::before {
      counter-increment: horror-step;
      content: counter(horror-step)'.';
      position: absolute;
      left: 0;
      top: 0;
      font-family: var(--font-heading);
      font-size: 0.6rem;
      letter-spacing: 0.1rem;
      color: var(--accent);
    }
    .content-note,
    .event-note {
      font-size: 0.6rem;
      color: rgba(255, 255, 255, 0.78);
    }
    .event-note strong,
    .horror-event__grid h3 {
      display: block;
      font-family: var(--font-heading);
      letter-spacing: 0.18rem;
      margin-bottom: 0.4rem;
      color: var(--accent);
    }
    .horror-event__grid h3 {
      font-size: 0.65rem;
      text-transform: uppercase;
    }
    .content-section--states .content-card {
      background: rgba(8, 14, 22, 0.82);
      border-color: rgba(180, 220, 255, 0.18);
      box-shadow: inset 0 0 28px rgba(120, 180, 255, 0.08), 0 24px 50px rgba(0, 0, 0, 0.55);
    }
    .content-section--states .media-callout {
      background:
        linear-gradient(160deg, rgba(12, 28, 44, 0.92), rgba(6, 18, 32, 0.88)),
        radial-gradient(circle at 32% 28%, rgba(120, 190, 255, 0.2), transparent 60%);
      border-color: rgba(120, 190, 255, 0.32);
      box-shadow: inset 0 0 24px rgba(120, 190, 255, 0.08), 0 16px 30px rgba(0, 0, 0, 0.45);
    }
    .content-section--states .btn--ghost {
      border-color: rgba(120, 190, 255, 0.35);
      color: rgba(180, 220, 255, 0.9);
      box-shadow: 0 0 18px rgba(120, 190, 255, 0.25);
    }
    .content-card {
      position: relative;
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      border-radius: 22px;
      padding: clamp(1.2rem, 3vw, 1.8rem);
      box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
      display: grid;
      gap: clamp(0.8rem, 2vw, 1.2rem);
      overflow: hidden;
    }
    .content-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12), transparent 60%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.08), transparent 65%);
      pointer-events: none;
    }
    .content-card > * {
      position: relative;
      z-index: 1;
    }
    .content-card h2 {
      font-size: clamp(0.75rem, 2.2vw, 0.95rem);
      color: var(--accent);
      letter-spacing: 0.18rem;
      text-transform: uppercase;
      text-shadow: 0 0 14px rgba(183, 109, 255, 0.45);
    }
    .content-section--states .content-card h2,
    .content-section--states .section-tag,
    .content-section--states .content-section__header h1 {
      color: #9ad5ff;
      text-shadow: 0 0 18px rgba(154, 213, 255, 0.55);
    }
    .content-section--states .section-tag {
      background: rgba(120, 190, 255, 0.18);
      border-color: rgba(120, 190, 255, 0.32);
    }
    .content-card p,
    .content-card li {
      font-size: clamp(0.52rem, 1.6vw, 0.62rem);
      line-height: 1.7;
      color: var(--text-secondary);
      letter-spacing: 0.05rem;
    }
    .content-section--states .content-card p,
    .content-section--states .content-card li {
      color: rgba(214, 235, 255, 0.82);
    }
    .content-card ul {
      display: grid;
      gap: 0.6rem;
      list-style: none;
    }
    body.theme-light .content-card {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(138, 61, 255, 0.2);
      box-shadow: 0 20px 45px rgba(118, 84, 172, 0.15);
    }
    body.theme-light .content-section--horror .content-card {
      background: rgba(255, 250, 255, 0.98);
      border-color: rgba(138, 61, 255, 0.22);
      box-shadow: 0 20px 45px rgba(118, 84, 172, 0.2);
    }
    body.theme-light .event-note strong,
    body.theme-light .horror-event__grid h3 {
      color: rgba(138, 61, 255, 0.85);
    }
    body.theme-light .content-section--states .content-card {
      background: rgba(247, 250, 255, 0.98);
      border-color: rgba(120, 190, 255, 0.35);
      box-shadow: 0 24px 50px rgba(120, 190, 255, 0.2);
    }
    body.theme-light .content-card p,
    body.theme-light .content-card li {
      color: rgba(33, 20, 52, 0.78);
    }
    body.theme-light .content-section--states .content-card p,
    body.theme-light .content-section--states .content-card li {
      color: rgba(18, 32, 54, 0.78);
    }
    .media-callout {
      position: relative;
      display: grid;
      gap: 0.8rem;
      padding: clamp(1.2rem, 3vw, 1.8rem);
      border-radius: 18px;
      background:
        linear-gradient(160deg, rgba(6, 24, 18, 0.9), rgba(2, 10, 7, 0.85)),
        radial-gradient(circle at 25% 20%, rgba(183, 109, 255, 0.18), transparent 60%);
      border: 1px solid rgba(183, 109, 255, 0.28);
      box-shadow: inset 0 0 24px rgba(183, 109, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.42);
    }
    #nomoonSection .media-callout {
      overflow: hidden;
      background:
        linear-gradient(150deg, rgba(2, 6, 12, 0.9), rgba(6, 12, 26, 0.88)),
        radial-gradient(circle at 18% 22%, rgba(255, 235, 175, 0.18), transparent 62%);
      border-color: rgba(255, 224, 108, 0.45);
      position: relative;
    }
    #nomoonSection .media-callout > * {
      position: relative;
      z-index: 2;
    }
    #nomoonSection .media-callout::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://cdn.modrinth.com/data/GUIbwsfo/ca2cb457a54966d21d74926d3876a540f1dadb47.gif') right 10% center / 60% auto no-repeat;
      filter: blur(6px);
      opacity: 0.7;
      z-index: 0;
    }
    .media-callout::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 12px);
      opacity: 0.18;
      pointer-events: none;
    }
    .media-callout strong {
      font-size: 0.66rem;
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      color: var(--accent);
    }
    .media-callout p {
      font-size: 0.56rem;
      color: var(--text-secondary);
      max-width: 46ch;
    }
    .media-callout .btn {
      justify-content: center;
      width: fit-content;
    }
    body.theme-light .media-callout {
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(240, 233, 255, 0.92)),
        radial-gradient(circle at 25% 20%, rgba(138, 61, 255, 0.15), transparent 60%);
      border-color: rgba(138, 61, 255, 0.3);
      box-shadow: 0 18px 35px rgba(118, 84, 172, 0.18);
    }
    body.theme-light #nomoonSection .media-callout {
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(237, 241, 255, 0.9)),
        radial-gradient(circle at 18% 22%, rgba(255, 224, 108, 0.25), transparent 58%);
      border-color: rgba(255, 224, 108, 0.45);
    }
    body.theme-light #nomoonSection .media-callout::before {
      background: url('https://cdn.modrinth.com/data/GUIbwsfo/ca2cb457a54966d21d74926d3876a540f1dadb47.gif') right 8% center / 58% auto no-repeat;
      opacity: 0.65;
    }
    body.theme-light .media-callout::after {
      opacity: 0.12;
    }
    body.theme-light .content-section--states .media-callout {
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(233, 243, 255, 0.94)),
        radial-gradient(circle at 32% 28%, rgba(120, 190, 255, 0.2), transparent 60%);
      border-color: rgba(120, 190, 255, 0.4);
      box-shadow: 0 20px 40px rgba(120, 190, 255, 0.2);
    }
    .ip-box {
      display: grid;
      gap: 0.8rem;
      background: rgba(4, 22, 16, 0.82);
      border: 1px solid rgba(183, 109, 255, 0.28);
      border-radius: 18px;
      padding: 1.2rem 1.4rem;
      box-shadow: inset 0 0 24px rgba(183, 109, 255, 0.12);
    }
    .content-section--states .ip-box {
      background: rgba(8, 20, 34, 0.82);
      border-color: rgba(120, 190, 255, 0.32);
      box-shadow: inset 0 0 24px rgba(120, 190, 255, 0.12);
    }
    body.theme-light .ip-box {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(138, 61, 255, 0.32);
      box-shadow: 0 18px 32px rgba(118, 84, 172, 0.15);
    }
    body.theme-light .content-section--states .ip-box {
      background: rgba(247, 250, 255, 0.98);
      border-color: rgba(120, 190, 255, 0.4);
      box-shadow: 0 20px 36px rgba(120, 190, 255, 0.18);
    }
    .ip-box strong {
      font-size: 0.62rem;
      letter-spacing: 0.16rem;
      text-transform: uppercase;
      color: var(--accent);
    }
    .content-section--states .ip-box strong {
      color: #9ad5ff;
    }
    .ip-box code {
      font-size: 0.68rem;
      letter-spacing: 0.08rem;
      color: var(--text-primary);
      background: rgba(0, 0, 0, 0.45);
      padding: 0.6rem 0.8rem;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      user-select: all;
    }
    body.theme-light .ip-box code {
      background: rgba(245, 240, 255, 0.9);
      color: rgba(33, 20, 52, 0.85);
    }
    .ip-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }
    .copy-feedback {
      font-size: 0.52rem;
      letter-spacing: 0.1rem;
      text-transform: uppercase;
      color: rgba(224, 255, 238, 0.78);
    }
    .content-meta {
      display: grid;
      gap: 0.5rem;
      font-size: clamp(0.5rem, 1.5vw, 0.6rem);
      color: var(--text-secondary);
    }
    .content-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    footer {
      margin-top: auto;
      padding-top: clamp(1.5rem, 3vh, 2.5rem);
      font-size: 0.5rem;
      opacity: 0.75;
      text-align: center;
      color: rgba(224, 255, 238, 0.65);
      letter-spacing: 0.14rem;
    }
    footer strong {
      color: var(--accent);
    }
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
    @media (max-width: 720px) {
      .hero,
      .portal-nav,
      .seasonal-panel,
      .cards {
        width: 100%;
      }
      .portal-nav {
        grid-template-columns: auto;
        justify-items: center;
        text-align: center;
        row-gap: 0.8rem;
      }
      .portal-nav__controls {
        justify-content: center;
      }
      .portal-nav__status {
        flex-direction: row;
        justify-content: center;
        margin-top: 0.4rem;
        padding: 0.4rem 0.7rem;
      }
      .portal-nav__status img {
        width: 24px;
        height: 24px;
      }
      .seasonal-panel__body {
        grid-template-columns: 1fr;
      }
      .seasonal-panel {
        padding: clamp(1.2rem, 4vw, 2rem);
      }
      .seasonal-panel__aside {
        border-left: none;
        border-top: 1px solid rgba(183, 109, 255, 0.25);
        padding-left: 0;
        padding-top: clamp(1rem, 3vw, 1.6rem);
      }
    }
    @media (max-width: 520px) {
      body {
        padding: 2.6rem 1rem 3rem;
      }
      .hero__title {
        text-align: left;
      }
      .hero__meta {
        grid-template-columns: 1fr;
      }
      .card__actions {
        flex-direction: column;
      }
      .btn {
        width: 100%;
        justify-content: center;
      }
      .seasonal-panel__actions {
        flex-direction: column;
        align-items: stretch;
      }
    }
