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

  @keyframes anticheatCardEntrance {
    from { opacity: 0; transform: translateY(12px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  @keyframes anticheatGlowSweep {
    0% { opacity: 0.2; transform: translate3d(-1.5%, 0, 0) scale(1); }
    50% { opacity: 0.4; transform: translate3d(1.5%, 0, 0) scale(1.015); }
    100% { opacity: 0.2; transform: translate3d(-1.5%, 0, 0) scale(1); }
  }

  @keyframes anticheatShieldPulse {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1) rotate(-1deg); }
    50% { transform: translate3d(0, -4px, 0) scale(1.05) rotate(1deg); }
  }

  @keyframes anticheatRingPulse {
    0% { opacity: 0.38; transform: scale(0.92); }
    70% { opacity: 0; transform: scale(1.34); }
    100% { opacity: 0; transform: scale(1.34); }
  }

  @keyframes anticheatMetalWave {
    0%, 100% { transform: translate3d(-1%, 0, 0) skewX(-7deg); }
    50% { transform: translate3d(1%, -2%, 0) skewX(-4deg); }
  }

  @keyframes anticheatMetalShine {
    0% {
      background-position: -145% 0, 0 0;
      opacity: 0.18;
    }
    45% {
      opacity: 0.42;
    }
    70% {
      background-position: 135% 0, 24% 0;
      opacity: 0.28;
    }
    100% {
      background-position: 145% 0, 42% 0;
      opacity: 0.2;
    }
  }

  @keyframes portalSupportSlotSpin {
    0%, 22% { transform: translateY(0); }
    25%, 47% { transform: translateY(calc(var(--slot-row-height) * -1)); }
    50%, 72% { transform: translateY(calc(var(--slot-row-height) * -2)); }
    75%, 97% { transform: translateY(calc(var(--slot-row-height) * -3)); }
    100% { transform: translateY(calc(var(--slot-row-height) * -3)); }
  }

  @keyframes portalSupportHelpGlow {
    0%, 100% {
      text-shadow: 0 0 10px rgba(125, 211, 255, 0.25), 0 0 20px rgba(125, 211, 255, 0.12);
      filter: saturate(1);
    }
    50% {
      text-shadow: 0 0 14px rgba(125, 211, 255, 0.62), 0 0 30px rgba(125, 211, 255, 0.34);
      filter: saturate(1.2);
    }
  }

  @keyframes telegramTransitionWave {
    0%, 100% { transform: translate3d(-0.6%, -0.35%, 0) scale(1.02); opacity: 0.34; }
    50% { transform: translate3d(0.6%, 0.35%, 0) scale(1.04); opacity: 0.52; }
  }

  @keyframes telegramTransitionDrift {
    0% { transform: translate3d(-2.8%, -0.6%, 0) scale(1.04); }
    50% { transform: translate3d(2.8%, 0.6%, 0) scale(1.08); }
    100% { transform: translate3d(-2.8%, -0.6%, 0) scale(1.04); }
  }

  @keyframes telegramTransitionColorShift {
    0%, 100% { filter: hue-rotate(0deg) saturate(1.05) brightness(1); }
    50% { filter: hue-rotate(16deg) saturate(1.25) brightness(1.08); }
  }

  @keyframes telegramTransitionWaveSoft {
    0%, 100% { transform: translate3d(-3%, 0, 0) scale(1.04); opacity: 0.28; }
    50% { transform: translate3d(3%, -1%, 0) scale(1.1); opacity: 0.46; }
  }

  @keyframes telegramTransitionPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(124, 198, 255, 0.45)); }
    50% { transform: scale(1.07); filter: drop-shadow(0 0 24px rgba(124, 198, 255, 0.62)); }
  }

  @keyframes telegramTransitionAurora {
    0%, 100% { transform: translate3d(-3.2%, 0, 0) rotate(-2deg) scale(1.06); opacity: 0.34; }
    50% { transform: translate3d(3.2%, -1.2%, 0) rotate(2deg) scale(1.12); opacity: 0.52; }
  }

  @keyframes telegramTransitionCenterFlash {
    0%, 100% { opacity: 0.22; transform: scale(0.92); }
    50% { opacity: 0.48; transform: scale(1.14); }
  }

  @keyframes telegramTransitionRingExpand {
    0% { transform: scale(0.82); opacity: 0.42; }
    70% { transform: scale(1.32); opacity: 0; }
    100% { transform: scale(1.32); opacity: 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.in-section-view {
      gap: clamp(1rem, 3vh, 2rem);
    }
    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;
      }
    }

    body[data-page-type="custom"] {
      padding-top: clamp(2rem, 6vh, 4rem);
    }

    .hero--compact {
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }

    .custom-video {
      margin: 1rem 0;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--panel-shadow);
    }

    .custom-video video {
      display: block;
      width: 100%;
      height: auto;
      background: #000;
    }

    .content-card__body {
      margin-top: 1rem;
      font-size: 0.7rem;
      line-height: 1.7;
      color: var(--text-secondary);
    }
    .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;
    }
    body.theme-light .portal-gate {
      background: rgba(255, 255, 255, 0.92);
    }
    body.theme-light .portal-gate__badge {
      background: rgba(138, 61, 255, 0.12);
      border-color: rgba(138, 61, 255, 0.25);
      color: #4a2074;
    }
    .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;
    }
    .survival-anticheat {
      width: 100%;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: clamp(0.9rem, 2vw, 1.5rem);
      padding: clamp(1rem, 2.8vw, 1.35rem);
      border-radius: 24px;
      border: 1px solid rgba(255, 181, 89, 0.52);
      background:
        linear-gradient(128deg, rgba(255, 181, 89, 0.24) 0%, rgba(255, 124, 44, 0.32) 38%, rgba(94, 34, 160, 0.24) 100%),
        var(--panel-bg);
      box-shadow: 0 22px 45px rgba(56, 24, 0, 0.35), inset 0 0 24px rgba(255, 164, 51, 0.14);
      position: relative;
      overflow: hidden;
      animation: anticheatCardEntrance 0.52s ease-out both;
      isolation: isolate;
      will-change: transform, opacity;
      transform: translateZ(0);
    }
    .survival-anticheat[hidden] {
      display: none !important;
    }
    body.in-section-view .survival-anticheat {
      display: none !important;
    }
    body:has(#portalNav:not([hidden])) .survival-anticheat {
      display: none !important;
    }
    .survival-anticheat::before,
    .survival-anticheat::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .survival-anticheat::before {
      background:
        radial-gradient(circle at 12% 16%, rgba(255, 236, 212, 0.22), transparent 48%),
        radial-gradient(circle at 88% 86%, rgba(255, 167, 88, 0.14), transparent 58%);
      z-index: -2;
    }
    .survival-anticheat::after {
      left: -20%;
      right: -20%;
      background:
        linear-gradient(110deg, transparent 18%, rgba(255, 248, 234, 0.3) 36%, rgba(255, 212, 153, 0.48) 46%, rgba(255, 250, 240, 0.24) 56%, transparent 74%),
        repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.03) 0 2px, rgba(255, 185, 98, 0.08) 2px 5px, rgba(255, 255, 255, 0.02) 5px 8px);
      background-size: 220% 100%, 170% 100%;
      background-position: -145% 0, 0 0;
      opacity: 0.22;
      animation: anticheatMetalShine 6.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, anticheatMetalWave 3.9s ease-in-out infinite, anticheatGlowSweep 5.2s ease-in-out infinite;
      z-index: -1;
      will-change: transform, opacity, background-position;
    }
    .survival-anticheat__icon-wrap {
      width: clamp(54px, 7vw, 72px);
      height: clamp(54px, 7vw, 72px);
      position: relative;
      overflow: visible;
      border-radius: 18px;
      border: 1px solid rgba(255, 201, 129, 0.65);
      background: linear-gradient(145deg, rgba(61, 26, 7, 0.5), rgba(255, 137, 26, 0.22));
      display: grid;
      place-items: center;
      box-shadow: inset 0 0 18px rgba(255, 191, 112, 0.18), 0 10px 22px rgba(35, 13, 0, 0.38);
    }
    .survival-anticheat__icon-wrap::after {
      content: '';
      position: absolute;
      inset: -7px;
      border-radius: 20px;
      border: 1px solid rgba(255, 211, 158, 0.48);
      pointer-events: none;
      animation: anticheatRingPulse 2.9s ease-out infinite;
      will-change: transform, opacity;
    }
    .survival-anticheat__icon {
      width: clamp(32px, 4.8vw, 42px);
      height: clamp(32px, 4.8vw, 42px);
      object-fit: contain;
      animation: anticheatShieldPulse 2.6s ease-in-out infinite;
      transform-origin: center;
      will-change: transform;
      transform: translateZ(0);
      filter: drop-shadow(0 0 10px rgba(255, 188, 97, 0.5));
    }
    .survival-anticheat__content {
      display: grid;
      gap: 0.5rem;
      min-width: 0;
    }
    .survival-anticheat__badge {
      width: fit-content;
      font-size: clamp(0.43rem, 1.3vw, 0.5rem);
      letter-spacing: 0.22rem;
      text-transform: uppercase;
      color: rgba(255, 234, 214, 0.9);
      border: 1px solid rgba(255, 203, 150, 0.48);
      background: rgba(255, 150, 53, 0.18);
      border-radius: 999px;
      padding: 0.35rem 0.72rem;
    }
    .survival-anticheat__content h2 {
      font-size: clamp(0.62rem, 1.65vw, 0.74rem);
      letter-spacing: 0.08rem;
      color: #ffdcb8;
      text-shadow: 0 0 14px rgba(255, 166, 76, 0.36);
    }
    .survival-anticheat__content p {
      font-size: clamp(0.5rem, 1.2vw, 0.56rem);
      line-height: 1.65;
      letter-spacing: 0.05rem;
      color: rgba(255, 232, 208, 0.86);
    }
    .survival-anticheat__download {
      white-space: nowrap;
      box-shadow: 0 12px 24px rgba(45, 16, 0, 0.46), 0 0 20px rgba(255, 163, 69, 0.28);
    }
    body.theme-light .survival-anticheat {
      border-color: rgba(255, 146, 41, 0.45);
      background:
        linear-gradient(128deg, rgba(255, 173, 81, 0.35) 0%, rgba(255, 145, 67, 0.4) 40%, rgba(181, 120, 255, 0.22) 100%),
        rgba(255, 255, 255, 0.96);
      box-shadow: 0 20px 36px rgba(173, 95, 27, 0.2), inset 0 0 20px rgba(255, 151, 59, 0.18);
    }
    body.theme-light .survival-anticheat__icon-wrap {
      background: linear-gradient(145deg, rgba(255, 237, 219, 0.95), rgba(255, 193, 137, 0.5));
      border-color: rgba(231, 123, 20, 0.5);
      box-shadow: inset 0 0 16px rgba(255, 154, 51, 0.24), 0 10px 20px rgba(187, 114, 47, 0.2);
    }
    body.theme-light .survival-anticheat__badge {
      color: #6b3100;
      border-color: rgba(255, 144, 41, 0.42);
      background: rgba(255, 162, 71, 0.24);
    }
    body.theme-light .survival-anticheat__content h2 {
      color: #5f2500;
      text-shadow: none;
    }
    body.theme-light .survival-anticheat__content p {
      color: rgba(94, 42, 4, 0.84);
    }
    @media (max-width: 980px) {
      .survival-anticheat {
        grid-template-columns: auto minmax(0, 1fr);
      }
      .survival-anticheat__download {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
      }
    }
    @media (max-width: 560px) {
      .survival-anticheat {
        grid-template-columns: 1fr;
      }
      .survival-anticheat__icon-wrap {
        width: 56px;
        height: 56px;
      }
    }
    .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-support {
      --slot-row-height: 2.2rem;
      position: relative;
      z-index: 1;
      flex: 0 1 min(520px, 44vw);
      min-width: min(460px, 100%);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 0.65rem;
      align-items: center;
      padding: 0.45rem;
      border-radius: 20px;
      border: 1px solid rgba(183, 109, 255, 0.35);
      background: rgba(4, 12, 24, 0.78);
      box-shadow: inset 0 0 18px rgba(183, 109, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.34);
    }
    .portal-support__slot {
      position: relative;
      border-radius: 14px;
      border: 1px solid rgba(183, 109, 255, 0.28);
      background: rgba(10, 16, 32, 0.82);
      overflow: hidden;
      min-height: var(--slot-row-height);
    }
    .portal-support__slot::before,
    .portal-support__slot::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 35%;
      z-index: 2;
      pointer-events: none;
    }
    .portal-support__slot::before {
      top: 0;
      background: linear-gradient(180deg, rgba(8, 12, 26, 0.9), rgba(8, 12, 26, 0));
    }
    .portal-support__slot::after {
      bottom: 0;
      background: linear-gradient(0deg, rgba(8, 12, 26, 0.9), rgba(8, 12, 26, 0));
    }
    .portal-support__viewport {
      height: var(--slot-row-height);
      overflow: hidden;
      position: relative;
    }
    .portal-support__reel {
      display: grid;
      animation: portalSupportSlotSpin 16s cubic-bezier(0.22, 1, 0.36, 1) infinite;
      will-change: transform;
    }
    .portal-support__item {
      height: var(--slot-row-height);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0 0.7rem;
      font-size: 0.49rem;
      letter-spacing: 0.08rem;
      color: rgba(239, 247, 255, 0.95);
      text-align: center;
      white-space: nowrap;
      text-shadow: 0 0 12px rgba(183, 109, 255, 0.35);
    }
    .portal-support__sticker {
      width: 1.15rem;
      height: 1.15rem;
      object-fit: contain;
      border-radius: 6px;
      filter: drop-shadow(0 0 8px rgba(183, 109, 255, 0.32));
      flex: 0 0 auto;
    }
    .portal-support__item--help {
      animation: portalSupportHelpGlow 1.8s ease-in-out infinite;
    }
    .portal-support__telegram {
      width: 3rem;
      height: 3rem;
      border-radius: 14px;
      border: 1px solid rgba(183, 109, 255, 0.4);
      background: linear-gradient(140deg, rgba(4, 8, 20, 0.95), rgba(14, 24, 45, 0.92));
      display: grid;
      place-items: center;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42), inset 0 0 10px rgba(183, 109, 255, 0.12);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      text-decoration: none;
    }
    .portal-support__telegram img {
      width: 2.15rem;
      height: 2.15rem;
      object-fit: contain;
      display: block;
    }
    .portal-support__telegram:hover,
    .portal-support__telegram:focus-visible {
      transform: translateY(-1px) scale(1.02);
      border-color: rgba(112, 193, 255, 0.78);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 16px rgba(112, 193, 255, 0.24);
      outline: none;
    }
    .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(-1px);
      background: rgba(255, 255, 255, 0.12);
      color: var(--accent);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), 0 0 16px rgba(183, 109, 255, 0.22);
      outline: none;
    }
    .portal-nav__control.is-active {
      background: transparent;
      color: #fef9ff;
      border-color: transparent;
      box-shadow: 0 10px 22px rgba(38, 12, 70, 0.5), 0 0 24px rgba(183, 109, 255, 0.42);
    }
    .portal-nav__control.is-active::before {
      transform: scaleX(1);
      opacity: 1;
    }
    .portal-nav__control.is-active::after {
      opacity: 0;
      transform: scaleX(0.3);
    }
    .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;
    }
    @media (max-width: 980px) {
      .portal-support {
        flex: 1 1 100%;
        min-width: 0;
        order: 3;
      }
      .portal-nav__status {
        order: 4;
      }
      .portal-support__item {
        font-size: 0.46rem;
        letter-spacing: 0.06rem;
      }
    }
    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));
    }
    body.theme-light .portal-support {
      border-color: rgba(138, 61, 255, 0.32);
      background: rgba(242, 237, 255, 0.9);
      box-shadow: inset 0 0 16px rgba(138, 61, 255, 0.12), 0 10px 20px rgba(82, 56, 122, 0.18);
    }
    body.theme-light .portal-support__slot {
      border-color: rgba(138, 61, 255, 0.28);
      background: rgba(255, 255, 255, 0.86);
    }
    body.theme-light .portal-support__slot::before {
      background: linear-gradient(180deg, rgba(241, 235, 255, 0.92), rgba(241, 235, 255, 0));
    }
    body.theme-light .portal-support__slot::after {
      background: linear-gradient(0deg, rgba(241, 235, 255, 0.92), rgba(241, 235, 255, 0));
    }
    body.theme-light .portal-support__item {
      color: rgba(35, 16, 59, 0.94);
      text-shadow: none;
    }
    .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);
    }
    .section-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.6rem;
    }
    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--community {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 0.8rem;
    }
    .hero__community-copy {
      display: grid;
      gap: 0.3rem;
      min-width: 0;
    }
    .hero__community-copy strong {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .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);
      row-gap: 0.4rem;
      flex-wrap: wrap;
    }
    .seasonal-panel__toggle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: transparent;
      display: grid;
      place-items: center;
      color: var(--accent);
      cursor: pointer;
      box-shadow: none;
      transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }
    .seasonal-panel__toggle::after {
      content: '';
      width: 40px;
      height: 40px;
      display: block;
      background-color: currentColor;
      -webkit-mask: url('/assets/img/icons8-down-button-96.png') no-repeat center / contain;
      mask: url('/assets/img/icons8-down-button-96.png') no-repeat center / contain;
      transform: rotate(0deg);
      transition: transform 0.2s ease;
    }
    .seasonal-panel__toggle[aria-expanded="false"]::after {
      transform: rotate(0deg);
    }
    .seasonal-panel__toggle[aria-expanded="true"]::after {
      transform: rotate(180deg);
    }
    .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);
      padding-bottom: 0.6rem;
    }
    .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);
      margin: 0;
      line-height: 1.1;
    }
    .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);
      margin: 0;
      line-height: 1;
      white-space: nowrap;
    }
    .seasonal-panel__actions {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      align-items: center;
      padding-bottom: 0.2rem;
    }
    .seasonal-panel__actions .btn {
      flex: 0 0 auto;
      min-width: 140px;
      justify-content: center;
      letter-spacing: 0.12rem;
      font-size: 0.54rem;
      padding: 0.6rem 1.2rem;
    }
    .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--discount .discount-marquee {
      position: absolute;
      top: 0.9rem;
      right: -3.4rem;
      width: 13.2rem;
      height: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255, 67, 146, 0.96), rgba(255, 202, 79, 0.95));
      box-shadow:
        0 10px 20px rgba(76, 16, 88, 0.48),
        0 0 20px rgba(255, 124, 193, 0.46),
        inset 0 0 8px rgba(255, 255, 255, 0.32);
      transform: rotate(34deg);
      overflow: hidden;
      pointer-events: none;
      z-index: 2;
    }
    .card--discount .discount-marquee__track {
      display: inline-flex;
      width: max-content;
      min-width: 100%;
      white-space: nowrap;
      gap: 1.3rem;
      padding: 0.26rem 0;
      color: #fff8f2;
      font-size: 0.46rem;
      letter-spacing: 0.09rem;
      text-shadow:
        0 0 7px rgba(255, 255, 255, 0.75),
        0 0 16px rgba(255, 110, 188, 0.76);
      animation: discountTicker 7.2s linear infinite;
    }
    @keyframes discountTicker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .card__icon {
      font-size: clamp(1.4rem, 5vw, 1.8rem);
      color: var(--accent);
      filter: drop-shadow(0 0 12px var(--accent-glow));
    }
    img.card__icon {
      width: clamp(2rem, 4vw, 2.4rem);
      height: clamp(2rem, 4vw, 2.4rem);
      object-fit: contain;
      display: inline-block;
    }
    .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 22px rgba(38, 12, 70, 0.46), 0 0 20px rgba(183, 109, 255, 0.36);
    }
    .btn--primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(38, 12, 70, 0.52), 0 0 28px rgba(183, 109, 255, 0.48);
    }
    .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);
    }
    @media (max-width: 760px) {
      .card--discount .discount-marquee {
        right: -4.2rem;
        width: 12rem;
        height: 1.35rem;
      }
      .card--discount .discount-marquee__track {
        font-size: 0.42rem;
      }
    }
    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__corner-images {
      position: absolute;
      top: clamp(1.15rem, 3vw, 1.75rem);
      right: clamp(1.2rem, 3vw, 1.8rem);
      display: inline-flex;
      align-items: center;
      gap: 0.32rem;
      z-index: 2;
      pointer-events: none;
    }
    .hero__corner-image {
      width: clamp(46px, 7.2vw, 64px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
    }
    .hero__discord-promo {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.36rem 0.7rem 0.36rem 0.44rem;
      border-radius: 999px;
      border: 1px solid rgba(130, 168, 255, 0.55);
      background:
        linear-gradient(135deg, rgba(86, 123, 255, 0.95), rgba(127, 93, 255, 0.92)),
        rgba(33, 19, 80, 0.85);
      color: #f7f8ff;
      text-decoration: none;
      font-size: 0.4rem;
      letter-spacing: 0.06rem;
      text-transform: uppercase;
      box-shadow: 0 8px 18px rgba(32, 22, 86, 0.46), 0 0 14px rgba(98, 139, 255, 0.36);
      transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease;
      margin-left: 0;
      justify-self: end;
      align-self: center;
    }
    .hero__discord-promo img {
      width: 16px;
      height: 16px;
      object-fit: contain;
      filter: drop-shadow(0 0 7px rgba(222, 234, 255, 0.75));
    }
    .hero__discord-promo:hover,
    .hero__discord-promo:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(32, 22, 86, 0.6), 0 0 26px rgba(98, 139, 255, 0.62);
      filter: saturate(1.08);
      outline: none;
    }

    /* pass / access */
    #passSection {
      gap: clamp(0.9rem, 2.2vh, 1.35rem);
    }
    .pass-only-note {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 0.6rem;
      padding: 0.58rem 0.78rem;
      border-radius: 14px;
      border: 1px solid rgba(255, 202, 120, 0.45);
      background: linear-gradient(145deg, rgba(255, 181, 76, 0.2), rgba(255, 145, 86, 0.14));
      box-shadow: 0 10px 20px rgba(44, 18, 5, 0.3);
    }
    .pass-only-note__dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: #ffd267;
      box-shadow: 0 0 12px rgba(255, 210, 103, 0.68);
    }
    .pass-only-note__text {
      font-size: clamp(0.5rem, 1.35vw, 0.58rem);
      letter-spacing: 0.04rem;
      color: rgba(255, 240, 210, 0.96);
      line-height: 1.45;
    }
    .pass-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(0.9rem, 2.2vw, 1.3rem);
      align-items: start;
      width: 100%;
    }
    .pass-card {
      display: grid;
      align-content: start;
      gap: 0.72rem;
      min-height: 0;
    }
    .pass-card h2 {
      margin: 0;
    }
    .pass-label {
      font-size: clamp(0.5rem, 1.4vw, 0.58rem);
      letter-spacing: 0.04rem;
      color: rgba(225, 240, 255, 0.92);
    }
    .pass-input {
      min-height: 48px;
      padding: 0.7rem 0.8rem;
      border-radius: 12px;
      border: 1px solid rgba(183, 109, 255, 0.28);
      background: rgba(255, 255, 255, 0.06);
      color: inherit;
      font-size: clamp(0.6rem, 1.5vw, 0.7rem);
      letter-spacing: 0.02rem;
    }
    .pass-input:focus {
      outline: 2px solid var(--accent, #8a3dff);
      outline-offset: 1px;
      background: rgba(255, 255, 255, 0.1);
    }
    .pass-hint {
      margin: 0;
      color: rgba(214, 226, 244, 0.75);
      font-size: clamp(0.46rem, 1.2vw, 0.52rem);
      line-height: 1.5;
    }
    .pass-request-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      width: 100%;
      flex-wrap: nowrap;
    }
    .pass-request-btn {
      flex: 1 1 260px;
      width: auto;
      max-width: 420px;
      min-height: 44px;
      padding: 0.56rem 0.9rem;
      font-size: 0.5rem;
      letter-spacing: 0.08rem;
    }
    .pass-recaptcha-wrap {
      flex: 0 0 auto;
      display: flex;
      justify-content: flex-start;
      min-width: 0;
    }
    .pass-recaptcha-wrap .g-recaptcha {
      transform: scale(0.88);
      transform-origin: right center;
    }
    .pass-status {
      padding: 0.55rem 0.65rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.05);
      font-size: clamp(0.5rem, 1.3vw, 0.56rem);
      letter-spacing: 0.03rem;
      font-weight: 600;
    }
    .pass-status--success {
      border-color: rgba(54, 194, 119, 0.48);
      color: #5bda96;
      background: rgba(18, 54, 36, 0.35);
    }
    .pass-status--error {
      border-color: rgba(231, 76, 60, 0.58);
      color: #ff8e7f;
      background: rgba(71, 24, 24, 0.35);
    }
    .pass-status--info {
      border-color: rgba(183, 109, 255, 0.35);
      color: rgba(226, 211, 255, 0.94);
    }
    .pass-code-box {
      margin-top: 0.1rem;
      gap: 0.65rem;
      padding: 0.78rem 0.82rem;
      width: 100%;
    }
    .pass-code-inline {
      position: relative;
      grid-template-columns: 1fr;
      padding: 0.34rem 0.34rem 0.34rem 0.34rem;
      width: 100%;
      align-items: center;
    }
    .pass-code-inline .minigame-card__ip-value {
      width: 100%;
      min-height: 42px;
      font-size: clamp(0.62rem, 1.7vw, 0.74rem);
      letter-spacing: 0.06rem;
      justify-content: center;
      text-align: center;
      padding-inline: 0.9rem 3.15rem;
    }
    .pass-code-inline .minigame-card__copy {
      width: 42px;
      height: 42px;
      position: absolute;
      top: 50%;
      right: 0.44rem;
      transform: translateY(-50%);
      z-index: 2;
      flex: 0 0 auto;
    }
    .pass-code-inline .minigame-card__copy:hover,
    .pass-code-inline .minigame-card__copy:focus-visible {
      transform: translateY(calc(-50% - 1px));
    }
    .pass-code-inline .minigame-card__copy:active {
      transform: translateY(calc(-50% + 1px));
    }
    .pass-info {
      margin: 0;
      color: rgba(225, 235, 248, 0.82);
      line-height: 1.6;
      font-size: clamp(0.5rem, 1.35vw, 0.58rem);
    }
    .pass-tips {
      display: grid;
      gap: 0.45rem;
      margin-top: 0.25rem;
    }
    .pass-tip {
      padding: 0.46rem 0.6rem;
      border-radius: 10px;
      border: 1px solid rgba(183, 109, 255, 0.22);
      background: rgba(255, 255, 255, 0.03);
      font-size: clamp(0.48rem, 1.25vw, 0.54rem);
      color: rgba(214, 229, 247, 0.8);
      line-height: 1.45;
    }
    .pass-card--form,
    .pass-card--redeem {
      width: 100%;
    }
    .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;
    }
    @media (max-width: 760px) {
      .hero__corner-images {
        top: 0.78rem;
        right: 0.78rem;
        gap: 0.24rem;
      }
      .hero__corner-image {
        width: 44px;
      }
      .hero__stat--community {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .hero__discord-promo {
        font-size: 0.36rem;
        justify-self: start;
      }
      .hero__discord-promo img {
        width: 14px;
        height: 14px;
      }
      .pass-request-row {
        flex-direction: column;
        align-items: stretch;
      }
      .pass-request-btn {
        width: 100%;
      }
      .pass-recaptcha-wrap {
        justify-content: flex-start;
      }
      .pass-recaptcha-wrap .g-recaptcha {
        transform: none;
      }
    }
    body.info-overlay-open {
      overflow: hidden;
    }
    body.forbidden-splash-open {
      overflow: hidden;
    }
    .forbidden-splash[hidden] {
      display: none;
    }
    .forbidden-splash {
      position: fixed;
      inset: 0;
      z-index: 1100;
      background: #02040a;
      overflow: hidden;
    }
    .forbidden-splash__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .forbidden-splash__bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.1) 68%, rgba(0, 0, 0, 0.52) 100%),
        radial-gradient(circle at 85% 50%, rgba(8, 12, 24, 0.55), transparent 60%);
      pointer-events: none;
    }
    .forbidden-splash__bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .forbidden-splash__side {
      position: absolute;
      top: 50%;
      right: clamp(0.8rem, 3vw, 2.2rem);
      transform: translateY(-50%);
      z-index: 1;
      display: grid;
      gap: 0.82rem;
      justify-items: center;
      padding: clamp(0.4rem, 1.2vw, 0.8rem);
      border-radius: 16px;
      border: 1px solid rgba(187, 229, 255, 0.32);
      background: rgba(4, 9, 19, 0.55);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(3px);
    }
    .forbidden-splash__nou {
      width: min(24vw, 280px);
      min-width: 140px;
      max-height: 52vh;
      object-fit: contain;
      border-radius: 14px;
      border: 1px solid rgba(180, 233, 255, 0.4);
      background: rgba(0, 0, 0, 0.28);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
    }
    .forbidden-splash__timer {
      min-width: 80px;
      padding: 0.42rem 0.82rem;
      border-radius: 999px;
      border: 1px solid rgba(175, 236, 255, 0.38);
      background: rgba(4, 14, 24, 0.72);
      color: #d8f6ff;
      font-size: clamp(0.82rem, 2.8vw, 1.16rem);
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    }
    @media (max-width: 760px) {
      .forbidden-splash__side {
        right: 0.5rem;
        padding: 0.35rem;
      }
      .forbidden-splash__nou {
        width: min(32vw, 180px);
        min-width: 104px;
      }
    }
    .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;
    }

    .video-pip[hidden] {
      display: none;
    }
    .video-pip {
      position: fixed;
      z-index: 980;
      left: 1.2rem;
      top: 1.2rem;
      width: min(980px, calc(100vw - 4rem));
      background: rgba(8, 10, 18, 0.95);
      border: 1px solid rgba(183, 109, 255, 0.35);
      border-radius: 18px;
      box-shadow: 0 22px 56px rgba(0, 0, 0, 0.55);
      overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .video-pip.is-dragging {
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
    }
    .video-pip__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.55rem 0.65rem 0.55rem 0.85rem;
      background: linear-gradient(135deg, rgba(183, 109, 255, 0.22), rgba(38, 20, 72, 0.75));
      border-bottom: 1px solid rgba(183, 109, 255, 0.32);
      cursor: grab;
      touch-action: none;
      user-select: none;
    }
    .video-pip.is-dragging .video-pip__header {
      cursor: grabbing;
    }
    .video-pip__title {
      font-size: 0.46rem;
      letter-spacing: 0.16rem;
      text-transform: uppercase;
      color: rgba(245, 234, 255, 0.95);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .video-pip__close {
      width: 1.8rem;
      height: 1.8rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(0, 0, 0, 0.42);
      color: #f3e8ff;
      font-size: 1rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }
    .video-pip__close:hover,
    .video-pip__close:focus-visible {
      transform: scale(1.04);
      background: rgba(255, 255, 255, 0.13);
      color: #ffffff;
      outline: none;
    }
    .video-pip__player {
      padding: 0.45rem;
    }
    .video-pip video {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      display: block;
      border-radius: 12px;
      background: #000;
    }
    .video-pip__resize {
      position: absolute;
      right: 0.2rem;
      bottom: 0.2rem;
      width: 1.1rem;
      height: 1.1rem;
      border: 0;
      border-radius: 0 0 12px 0;
      background:
        linear-gradient(135deg, transparent 28%, rgba(255, 255, 255, 0.18) 29%, rgba(255, 255, 255, 0.18) 38%, transparent 39%),
        linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.34) 49%, rgba(255, 255, 255, 0.34) 58%, transparent 59%),
        linear-gradient(135deg, transparent 68%, rgba(255, 255, 255, 0.48) 69%, rgba(255, 255, 255, 0.48) 78%, transparent 79%);
      cursor: nwse-resize;
      opacity: 0.86;
      z-index: 3;
      touch-action: none;
    }
    .video-pip__resize:hover,
    .video-pip__resize:focus-visible {
      opacity: 1;
      outline: none;
    }
    .telegram-transition[hidden] {
      display: none;
    }
    .telegram-transition {
      position: fixed;
      inset: 0;
      z-index: 1990;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 18% 20%, rgba(164, 226, 255, 0.34), transparent 46%),
        radial-gradient(circle at 82% 76%, rgba(74, 143, 255, 0.32), transparent 52%),
        linear-gradient(132deg, rgba(6, 22, 56, 0.97), rgba(8, 40, 102, 0.95));
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.7s ease;
    }
    .telegram-transition::before,
    .telegram-transition::after {
      content: '';
      position: absolute;
      inset: -24%;
      pointer-events: none;
    }
    .telegram-transition::before {
      background:
        radial-gradient(circle at 24% 32%, rgba(173, 230, 255, 0.25), transparent 38%),
        radial-gradient(circle at 74% 66%, rgba(90, 164, 255, 0.28), transparent 42%);
      filter: blur(36px);
      animation: telegramTransitionAurora 14.4s ease-in-out infinite;
      mix-blend-mode: screen;
    }
    .telegram-transition::after {
      background:
        linear-gradient(140deg, rgba(177, 232, 255, 0.1), rgba(49, 129, 255, 0.06) 48%, rgba(18, 72, 190, 0.12));
      filter: blur(44px);
      animation: telegramTransitionAurora 18.4s ease-in-out infinite reverse;
      opacity: 0.75;
    }
    .telegram-transition.is-active {
      opacity: 1;
      pointer-events: auto;
    }
    .telegram-transition__waves {
      position: absolute;
      inset: -26%;
      background:
        linear-gradient(110deg, transparent 18%, rgba(233, 247, 255, 0.2) 36%, rgba(136, 210, 255, 0.4) 47%, rgba(220, 242, 255, 0.16) 58%, transparent 74%),
        radial-gradient(circle at 26% 42%, rgba(142, 214, 255, 0.2), transparent 56%),
        radial-gradient(circle at 74% 58%, rgba(94, 167, 255, 0.16), transparent 58%);
      background-size: 230% 100%, 120% 120%, 120% 120%;
      background-position: -145% 0, 0 0, 100% 100%;
      animation:
        anticheatMetalShine 8.8s cubic-bezier(0.3, 0.1, 0.2, 1) infinite,
        telegramTransitionWave 11.2s ease-in-out infinite,
        telegramTransitionDrift 16.4s ease-in-out infinite,
        telegramTransitionColorShift 13.2s ease-in-out infinite;
      filter: blur(6px);
      will-change: transform, opacity, background-position, background-size;
    }
    .telegram-transition__waves::before,
    .telegram-transition__waves::after {
      content: '';
      position: absolute;
      inset: -10%;
      pointer-events: none;
    }
    .telegram-transition__waves::before {
      background:
        radial-gradient(circle at 16% 30%, rgba(158, 225, 255, 0.28), transparent 40%),
        radial-gradient(circle at 78% 70%, rgba(92, 168, 255, 0.24), transparent 45%);
      animation: telegramTransitionWaveSoft 15.8s ease-in-out infinite;
      filter: blur(16px);
      mix-blend-mode: screen;
    }
    .telegram-transition__waves::after {
      background:
        linear-gradient(125deg, rgba(185, 234, 255, 0.18), rgba(58, 137, 255, 0.08) 45%, rgba(20, 77, 197, 0.15) 100%);
      animation: telegramTransitionWaveSoft 21.4s ease-in-out infinite reverse;
      filter: blur(22px);
      opacity: 0.7;
    }
    .telegram-transition__center {
      position: relative;
      z-index: 2;
      width: clamp(118px, 18vw, 196px);
      height: clamp(118px, 18vw, 196px);
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: radial-gradient(circle at 35% 30%, rgba(153, 222, 255, 0.35), rgba(14, 75, 184, 0.18));
      box-shadow: 0 0 34px rgba(124, 198, 255, 0.35), inset 0 0 16px rgba(205, 240, 255, 0.18);
      border: 1px solid rgba(155, 223, 255, 0.35);
    }
    .telegram-transition__center::before,
    .telegram-transition__center::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 999px;
      pointer-events: none;
    }
    .telegram-transition__center::before {
      background: radial-gradient(circle, rgba(208, 242, 255, 0.5), rgba(116, 193, 255, 0.12) 60%, transparent 72%);
      animation: telegramTransitionCenterFlash 2.4s ease-in-out infinite;
    }
    .telegram-transition__center::after {
      border: 1px solid rgba(190, 236, 255, 0.45);
      animation: telegramTransitionRingExpand 3.1s ease-out infinite;
    }
    .telegram-transition__center img {
      width: 74%;
      height: 74%;
      object-fit: contain;
      animation: telegramTransitionPulse 2.1s ease-in-out infinite;
    }
    @media (max-width: 680px) {
      .video-pip {
        width: min(360px, calc(100vw - 1rem));
      }
      .video-pip__title {
        font-size: 0.42rem;
      }
    }
    .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 20px rgba(50, 15, 92, 0.46), 0 0 18px rgba(183, 109, 255, 0.34);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .news-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(50, 15, 92, 0.52), 0 0 24px rgba(183, 109, 255, 0.46);
    }
    .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__icon {
      width: 20px;
      height: 20px;
      display: block;
      background-color: currentColor;
      -webkit-mask: url('/assets/img/icons8-return-96.png') no-repeat center / contain;
      mask: url('/assets/img/icons8-return-96.png') no-repeat center / contain;
    }
    .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-section--states {
      gap: clamp(1rem, 2.6vh, 1.5rem);
    }
    .content-section--states .content-section__lead {
      max-width: 68ch;
      line-height: 1.6;
    }
    .states-single {
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
    }
    .states-access-note {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 0.62rem;
      padding: 0.44rem 0.9rem 0.44rem 0.48rem;
      border-radius: 999px;
      border: 1px solid rgba(171, 255, 149, 0.45);
      background: linear-gradient(135deg, rgba(126, 217, 87, 0.96), rgba(99, 201, 80, 0.94));
      box-shadow: 0 10px 22px rgba(37, 86, 24, 0.45), 0 0 16px rgba(145, 255, 147, 0.25);
      margin-bottom: 0.65rem;
      overflow: visible;
    }
    .states-access-note__icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.38);
      background: rgba(255, 255, 255, 0.2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .states-access-note__icon img {
      width: 19px;
      height: 19px;
      object-fit: contain;
      filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
    }
    .states-access-note__text {
      color: #f3fff0;
      font-size: clamp(0.62rem, 1.5vw, 0.74rem);
      line-height: 1.12;
      letter-spacing: 0.02rem;
      text-shadow: 0 0 10px rgba(32, 77, 20, 0.32);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .states-access-note__btn {
      min-height: 36px;
      padding: 0.46rem 0.86rem;
      border-radius: 999px;
      font-size: clamp(0.46rem, 1.15vw, 0.54rem);
      letter-spacing: 0.06rem;
      text-decoration: none;
      justify-content: center;
      white-space: nowrap;
      box-shadow: 0 8px 16px rgba(44, 74, 23, 0.3);
      background: linear-gradient(140deg, rgba(92, 186, 67, 0.96), rgba(70, 156, 59, 0.95));
      color: #f6fff4;
      border-color: rgba(255, 255, 255, 0.28);
    }
    .states-access-note__btn:hover,
    .states-access-note__btn:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(44, 74, 23, 0.4), 0 0 14px rgba(161, 255, 145, 0.36);
      outline: none;
    }
    .states-single-card {
      width: 100%;
      padding: clamp(0.62rem, 1.6vw, 0.84rem);
      gap: 0.62rem;
      min-height: clamp(480px, 70vh, 760px);
    }
    .states-single-card .minigame-card__avatar {
      height: clamp(280px, 46vh, 470px);
      border-color: rgba(120, 190, 255, 0.34);
    }
    .states-single-card .minigame-card__status--media {
      left: 0.62rem;
      right: auto;
      bottom: 0.62rem;
      top: auto;
      background: rgba(9, 18, 30, 0.86);
    }
    .states-single-card .minigame-card__title {
      margin-top: 0.04rem;
    }
    .states-single-card .minigame-card__summary {
      max-width: 52ch;
    }
    .states-single-card .minigame-card__actions {
      grid-template-columns: 1fr 1fr;
      width: 100%;
      display: grid;
      gap: 0.4rem;
      padding: 0.12rem;
    }
    .states-single-card .minigame-card__actions .btn {
      min-width: 0;
      width: 100%;
    }
    #statesVideoButton {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
    }
    #statesVideoButton::before {
      content: '';
      width: 1.35rem;
      height: 1.35rem;
      background: url('/assets/img/icons8-video-192.png') center / contain no-repeat;
      flex: 0 0 auto;
      filter: drop-shadow(0 0 8px rgba(140, 210, 255, 0.45));
    }
    .states-feature {
      display: grid;
      grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
      gap: clamp(0.95rem, 2vw, 1.3rem);
      align-items: stretch;
      padding: clamp(0.75rem, 1.8vw, 1rem);
      border-color: rgba(120, 190, 255, 0.3);
      box-shadow:
        inset 0 0 22px rgba(120, 190, 255, 0.09),
        0 16px 34px rgba(0, 0, 0, 0.45);
      overflow: hidden;
    }
    .states-feature::before {
      content: '';
      position: absolute;
      inset: -40% -10%;
      background: linear-gradient(130deg, rgba(120, 190, 255, 0.12), rgba(183, 109, 255, 0.08), transparent 62%);
      animation: statesSheen 8s linear infinite;
      pointer-events: none;
      z-index: 0;
    }
    .states-feature > * {
      position: relative;
      z-index: 1;
    }
    .states-feature__media {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(120, 190, 255, 0.3);
      min-height: clamp(200px, 30vw, 300px);
      background: rgba(3, 8, 14, 0.6);
    }
    .states-feature__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
      transition: transform 0.45s ease;
    }
    .states-feature:hover .states-feature__media img {
      transform: scale(1.05);
    }
    .states-feature__content {
      display: grid;
      gap: 0.8rem;
      align-content: start;
      padding: clamp(0.2rem, 0.6vw, 0.35rem);
    }
    .states-feature__content h2 {
      margin: 0;
      font-size: clamp(0.84rem, 2vw, 1.05rem);
      color: #9ad5ff;
      letter-spacing: 0.16rem;
      text-transform: uppercase;
      text-shadow: 0 0 16px rgba(154, 213, 255, 0.48);
    }
    .states-feature__summary {
      margin: 0;
      font-size: clamp(0.53rem, 1.45vw, 0.62rem);
      line-height: 1.65;
      color: rgba(213, 236, 255, 0.85);
      max-width: 44ch;
    }
    .states-feature__ip {
      display: grid;
      gap: 0.55rem;
      margin-top: 0.15rem;
      padding: 0.65rem;
      border-radius: 14px;
      border: 1px solid rgba(120, 190, 255, 0.25);
      background: rgba(8, 18, 31, 0.7);
    }
    .states-feature__ip code {
      width: 100%;
      min-height: 44px;
      border: 1px solid rgba(120, 190, 255, 0.3);
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.45);
      font-size: clamp(0.55rem, 1.4vw, 0.62rem);
      letter-spacing: 0.05rem;
      padding: 0.62rem 0.8rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      user-select: all;
    }
    .states-feature__ip .ip-actions {
      display: flex;
      gap: 0.55rem;
      flex-wrap: wrap;
    }
    .states-feature__ip .ip-actions .btn {
      min-height: 42px;
      min-width: 170px;
      justify-content: center;
    }
    .states-feature__actions {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.6rem;
      margin-top: 0.2rem;
    }
    .states-feature__actions .btn {
      width: 100%;
      justify-content: center;
      min-height: 46px;
      font-size: clamp(0.48rem, 1.2vw, 0.56rem);
      letter-spacing: 0.06rem;
      text-align: center;
      padding-inline: 0.7rem;
    }
    @keyframes statesSheen {
      0% { transform: translateX(-14%) rotate(0deg); }
      50% { transform: translateX(12%) rotate(2deg); }
      100% { transform: translateX(-14%) rotate(0deg); }
    }
    @media (max-width: 980px) {
      .states-access-note {
        grid-template-columns: auto 1fr;
        padding-right: 0.72rem;
      }
      .states-access-note__btn {
        grid-column: 1 / -1;
      }
      .states-single-card { min-height: 0; }
      .states-single-card .minigame-card__avatar { height: clamp(180px, 42vw, 260px); }
      .states-single-card .minigame-card__actions {
        grid-template-columns: 1fr;
      }
      .states-feature {
        grid-template-columns: 1fr;
      }
      .states-feature__media {
        min-height: clamp(170px, 45vw, 230px);
      }
      .states-feature__actions {
        grid-template-columns: 1fr;
      }
      .states-feature__ip .ip-actions .btn {
        width: 100%;
        min-width: 0;
      }
    }
    .states-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
      gap: clamp(1rem, 2.4vw, 1.6rem);
      align-items: start;
    }
    .states-layout__main {
      display: grid;
      gap: clamp(0.9rem, 2vw, 1.25rem);
    }
    .states-card {
      gap: clamp(0.75rem, 1.8vw, 1.1rem);
    }
    .states-card--guide .media-callout {
      margin-top: 0.2rem;
    }
    .states-card--connect .ip-box {
      margin-top: 0.15rem;
      padding: 0.9rem 1rem;
      gap: 0.65rem;
    }
    .states-connect__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
      flex-wrap: wrap;
    }
    .states-connect__head h2 {
      margin: 0;
    }
    .states-connect__version {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0.32rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(120, 190, 255, 0.4);
      background: rgba(120, 190, 255, 0.14);
      color: rgba(214, 238, 255, 0.95);
      font-size: clamp(0.44rem, 1.2vw, 0.5rem);
      letter-spacing: 0.05rem;
      white-space: nowrap;
    }
    .states-card--connect .ip-box code {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(120, 190, 255, 0.26);
      border-radius: 14px;
      background: rgba(0, 0, 0, 0.42);
      font-size: clamp(0.58rem, 1.5vw, 0.66rem);
      letter-spacing: 0.06rem;
      padding: 0.7rem 0.85rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .states-card--quick {
      min-height: 100%;
      align-content: start;
    }
    .states-quick__lead {
      margin: 0;
      font-size: clamp(0.5rem, 1.4vw, 0.58rem);
      line-height: 1.65;
      color: rgba(205, 230, 255, 0.82);
    }
    .states-quick__list {
      list-style: none;
      counter-reset: state-step;
      display: grid;
      gap: 0.72rem;
      margin: 0.15rem 0 0;
      padding: 0;
    }
    .states-quick__list li {
      position: relative;
      padding-left: 2rem;
      line-height: 1.55;
    }
    .states-quick__list li::before {
      counter-increment: state-step;
      content: counter(state-step);
      position: absolute;
      left: 0;
      top: 0.08rem;
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(120, 190, 255, 0.45);
      background: rgba(120, 190, 255, 0.16);
      color: #b8e3ff;
      font-family: var(--font-heading);
      font-size: 0.52rem;
      letter-spacing: 0.02rem;
      box-shadow: 0 0 10px rgba(120, 190, 255, 0.25);
    }
    .states-quick__actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem;
      margin-top: auto;
    }
    .states-quick__actions .btn {
      width: 100%;
      justify-content: center;
      min-height: 50px;
      text-align: center;
    }
    @media (max-width: 980px) {
      .states-layout {
        grid-template-columns: 1fr;
      }
      .states-quick__actions {
        grid-template-columns: 1fr;
      }
    }
    .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 .states-feature {
      background: linear-gradient(160deg, rgba(251, 254, 255, 0.98), rgba(239, 247, 255, 0.96));
      border-color: rgba(120, 190, 255, 0.38);
      box-shadow: 0 20px 44px rgba(120, 190, 255, 0.22);
    }
    body.theme-light .states-feature__summary {
      color: rgba(35, 52, 78, 0.84);
    }
    body.theme-light .states-feature__ip {
      background: rgba(242, 249, 255, 0.96);
      border-color: rgba(120, 190, 255, 0.35);
    }
    body.theme-light .states-feature__ip code {
      background: rgba(255, 255, 255, 0.95);
      color: rgba(29, 48, 78, 0.9);
      border-color: rgba(120, 190, 255, 0.35);
    }
    body.theme-light .states-connect__version {
      background: rgba(120, 190, 255, 0.18);
      color: rgba(35, 52, 78, 0.9);
      border-color: rgba(120, 190, 255, 0.55);
    }
    body.theme-light .states-quick__lead {
      color: rgba(35, 52, 78, 0.74);
    }
    body.theme-light .states-quick__list li::before {
      background: rgba(120, 190, 255, 0.22);
      color: rgba(32, 55, 87, 0.88);
    }
    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);
    }
    .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 .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);
    }

    body.is-site-locked {
      overflow: hidden;
    }

    .site-lock {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(2rem, 6vw, 4rem);
      z-index: 9999;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    body.is-site-locked .site-lock {
      pointer-events: auto;
      opacity: 1;
    }

    .site-lock__background {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 25% 25%, rgba(108, 38, 255, 0.32), rgba(3, 0, 10, 0.95));
      overflow: hidden;
    }

    body.theme-light .site-lock__background {
      background: radial-gradient(circle at 25% 25%, rgba(165, 121, 255, 0.25), rgba(255, 255, 255, 0.92));
    }

    .site-lock__gradient {
      position: absolute;
      width: 80vmax;
      height: 80vmax;
      background: radial-gradient(circle at center, rgba(183, 109, 255, 0.55), transparent 70%);
      filter: blur(80px);
      opacity: 0.45;
      animation: siteLockOrbit 18s linear infinite;
      mix-blend-mode: screen;
    }

    .site-lock__gradient--two {
      animation-duration: 24s;
      animation-direction: reverse;
      opacity: 0.3;
      background: radial-gradient(circle at center, rgba(90, 245, 255, 0.5), transparent 65%);
    }

    .site-lock__gradient--three {
      animation-duration: 30s;
      opacity: 0.35;
      background: radial-gradient(circle at center, rgba(255, 121, 199, 0.5), transparent 65%);
    }

    @keyframes siteLockOrbit {
      0% { transform: translate(-20%, -10%) scale(1); }
      50% { transform: translate(20%, 10%) scale(1.2); }
      100% { transform: translate(-20%, -10%) scale(1); }
    }

    .site-lock__card {
      position: relative;
      z-index: 1;
      width: min(520px, 100%);
      text-align: center;
      padding: clamp(2rem, 5vw, 3.5rem);
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(7, 5, 15, 0.92);
      box-shadow: 0 25px 60px rgba(3, 0, 10, 0.75);
      display: grid;
      gap: 1rem;
    }

    body.theme-light .site-lock__card {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(0, 0, 0, 0.08);
      box-shadow: 0 25px 60px rgba(65, 36, 105, 0.25);
    }

    .site-lock__badge {
      font-size: 0.55rem;
      letter-spacing: 0.16rem;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
    }

    body.theme-light .site-lock__badge {
      color: rgba(30, 10, 55, 0.75);
    }

    .site-lock__title {
      font-size: clamp(1.2rem, 3vw, 1.6rem);
      color: var(--text-primary);
      text-transform: uppercase;
      letter-spacing: 0.12rem;
    }

    .site-lock__message {
      font-size: 0.65rem;
      line-height: 1.6;
      color: var(--text-secondary);
    }

    .site-lock__note {
      font-size: 0.58rem;
      text-transform: uppercase;
      letter-spacing: 0.12rem;
      color: rgba(255, 255, 255, 0.7);
    }

    body.theme-light .site-lock__note {
      color: rgba(27, 12, 45, 0.7);
    }

    .site-lock__action {
      justify-self: center;
      min-width: 220px;
    }

    @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-support {
        width: 100%;
        min-width: 0;
      }
      .portal-support__item {
        font-size: 0.42rem;
        letter-spacing: 0.04rem;
      }
      .portal-support__telegram {
        width: 2.7rem;
        height: 2.7rem;
      }
      .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);
      }
    }

    .promo-ad {
      position: fixed;
      right: 1.2rem;
      bottom: 1.2rem;
      z-index: 5000;
      border-radius: 18px;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
      max-width: min(340px, 90vw);
      background: rgba(10, 5, 20, 0.9);
      backdrop-filter: blur(6px);
    }
    body.theme-light .promo-ad {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(138, 61, 255, 0.2);
      box-shadow: 0 22px 55px rgba(118, 84, 172, 0.2);
    }
    .promo-ad img {
      display: block;
      width: 100%;
      height: auto;
    }
    .promo-ad__close {
      position: absolute;
      top: 6px;
      right: 6px;
      width: 32px;
      height: 32px;
      border: none;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
      transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
    }
    body.theme-light .promo-ad__close {
      background: rgba(138, 61, 255, 0.16);
      color: #1d0f2d;
      box-shadow: 0 6px 14px rgba(118, 84, 172, 0.2);
    }
    .promo-ad__close:hover,
    .promo-ad__close:focus-visible {
      transform: scale(1.06);
      background: rgba(255, 255, 255, 0.14);
    }
    body.theme-light .promo-ad__close:hover,
    body.theme-light .promo-ad__close:focus-visible {
      background: rgba(138, 61, 255, 0.26);
      color: #fff;
    }
    .promo-ad.is-hidden {
      display: none;
    }

    @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;
      }
    }

    .link-confirm-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(6, 0, 18, 0.78);
      backdrop-filter: blur(10px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 1200;
    }

    .link-confirm-modal.is-visible {
      opacity: 1;
      visibility: visible;
    }

    .link-confirm-modal__backdrop {
      position: absolute;
      inset: 0;
    }

    .link-confirm-modal__card {
      position: relative;
      width: min(90vw, 420px);
      padding: 1.8rem;
      border-radius: 28px;
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      box-shadow: var(--panel-shadow);
      display: grid;
      gap: 1rem;
    }

    .link-confirm-modal__tag {
      font-size: 0.6rem;
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      color: var(--accent);
    }

    .link-confirm-modal__title {
      font-size: 1rem;
      letter-spacing: 0.18rem;
      text-transform: uppercase;
    }

    .link-confirm-modal__message {
      font-size: 0.7rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .link-confirm-modal__url {
      font-size: 0.64rem;
      word-break: break-all;
      padding: 0.6rem 0.8rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-primary);
    }

    .link-confirm-modal__actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.6rem;
    }

    /* ===========================
       Minigames
       =========================== */
    .cards .card:nth-child(4) { animation-delay: 270ms; }
    body.mods-overlay-open { overflow: hidden; }
    .btn.is-disabled,
    .btn[aria-disabled="true"] {
      opacity: 0.55;
      pointer-events: none;
    }
    .content-section--minigames {
      padding-top: clamp(1rem, 2.2vw, 1.4rem);
      gap: clamp(0.85rem, 2.2vh, 1.25rem);
    }
    .content-section--minigames .content-section__header {
      gap: clamp(0.45rem, 1.4vh, 0.7rem);
    }
    .content-section--minigames .content-section__grid { grid-template-columns: 1fr; }
    .minigames-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: clamp(1rem, 2.8vw, 1.6rem);
    }
    .minigame-card {
      padding: clamp(0.55rem, 1.2vw, 0.8rem);
      gap: 0.6rem;
      transition: opacity 320ms ease, transform 320ms ease, border-color 260ms ease, box-shadow 260ms ease;
    }
    .minigame-card__media {
      position: relative;
    }
    .minigame-card.is-soon { opacity: 0.88; }
    .minigames-grid.is-detail-open .minigame-card:not(.is-selected) {
      opacity: 0;
      transform: scale(0.96);
      pointer-events: none;
    }
    .minigame-card__avatar {
      width: 100%;
      height: clamp(132px, 18vw, 170px);
      border-radius: 16px;
      object-fit: cover;
      border: 1px solid var(--panel-border);
      justify-self: stretch;
    }
    .minigame-card__title {
      text-align: center;
      margin-top: 0.08rem;
    }
    .minigame-card__summary {
      font-size: clamp(0.52rem, 1.6vw, 0.62rem);
      text-align: center;
      color: var(--text-secondary);
      letter-spacing: 0.04rem;
      line-height: 1.45;
      max-width: 34ch;
      margin-inline: auto;
    }
    .minigame-card__ip-line {
      position: relative;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 0.45rem;
      align-items: center;
      padding: 0.34rem;
      border-radius: 15px;
      border: 1px solid rgba(183, 109, 255, 0.34);
      background:
        linear-gradient(140deg, rgba(183, 109, 255, 0.2), rgba(80, 44, 156, 0.2)),
        rgba(13, 9, 28, 0.82);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 10px 20px rgba(26, 10, 60, 0.34);
      overflow: hidden;
      isolation: isolate;
      transition: border-color 0.22s ease, box-shadow 0.26s ease;
    }
    .minigame-card__ip-line::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      pointer-events: none;
      opacity: 0;
      transform: translateX(-120%) skewX(-18deg);
      background:
        linear-gradient(
          100deg,
          rgba(61, 255, 168, 0) 0%,
          rgba(61, 255, 168, 0.2) 22%,
          rgba(138, 255, 213, 0.78) 48%,
          rgba(61, 255, 168, 0.34) 70%,
          rgba(61, 255, 168, 0) 100%
        );
      mix-blend-mode: screen;
      z-index: 0;
    }
    .minigame-card__ip-line::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      pointer-events: none;
      opacity: 0;
      transform: translateX(-135%) skewX(-14deg);
      background:
        linear-gradient(
          94deg,
          rgba(74, 255, 178, 0) 0%,
          rgba(74, 255, 178, 0.18) 30%,
          rgba(171, 255, 221, 0.65) 50%,
          rgba(74, 255, 178, 0.22) 70%,
          rgba(74, 255, 178, 0) 100%
        );
      mix-blend-mode: screen;
      filter: blur(1.2px);
      z-index: 0;
    }
    .minigame-card__ip-line.is-copying {
      border-color: rgba(82, 240, 153, 0.72);
      box-shadow:
        inset 0 0 0 1px rgba(150, 255, 210, 0.25),
        0 0 0 1px rgba(70, 230, 146, 0.2),
        0 0 22px rgba(61, 255, 168, 0.44),
        0 10px 24px rgba(17, 74, 47, 0.45);
      animation: liquidMetalPulse 1120ms ease-in-out both;
    }
    .minigame-card__ip-line.is-copying::after {
      opacity: 1;
      animation: liquidMetalFlash 1120ms cubic-bezier(0.2, 0.6, 0.2, 1) both;
    }
    .minigame-card__ip-line.is-copying::before {
      opacity: 0.9;
      animation: liquidMetalFlashSoft 1120ms cubic-bezier(0.24, 0.62, 0.28, 1) both;
    }
    .minigame-card__version {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 128px;
      height: 42px;
      border-radius: 12px;
      padding: 0 0.58rem;
      border: 1px solid rgba(183, 109, 255, 0.28);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      color: var(--text-primary);
      font-size: clamp(0.42rem, 1.2vw, 0.5rem);
      letter-spacing: 0.01rem;
      line-height: 1;
      white-space: nowrap;
    }
    .minigame-card__ip-value {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 12px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.03);
      color: var(--text-primary);
      font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
      text-align: center;
      letter-spacing: 0.03rem;
      font-size: clamp(0.52rem, 1.4vw, 0.6rem);
      padding: 0 0.75rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .minigame-card__ip-value--access {
      padding: 0.2rem;
      justify-content: stretch;
      overflow: visible;
    }
    .minigame-card__nick-input {
      width: 100%;
      min-height: 36px;
      border: 1px solid rgba(183, 109, 255, 0.28);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--text-primary);
      font-size: clamp(0.5rem, 1.35vw, 0.58rem);
      letter-spacing: 0.03rem;
      text-align: center;
      padding: 0 0.6rem;
    }
    .minigame-card__nick-input:focus {
      outline: 2px solid rgba(183, 109, 255, 0.45);
      outline-offset: 1px;
      background: rgba(255, 255, 255, 0.1);
    }
    .minigame-card__ip-text {
      width: 100%;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      letter-spacing: 0.04rem;
    }
    .minigame-card__captcha-hint {
      width: 100%;
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid rgba(183, 109, 255, 0.32);
      background: linear-gradient(140deg, rgba(124, 66, 232, 0.98), rgba(80, 40, 178, 0.98));
      color: rgba(22, 9, 50, 0.96);
      font-size: clamp(0.44rem, 1.15vw, 0.52rem);
      letter-spacing: 0.04rem;
      font-weight: 700;
      text-transform: uppercase;
      text-align: center;
      text-shadow: none;
      animation: captchaHintPulse 1.6s ease-in-out infinite;
    }
    .minigame-card__captcha-hint[hidden] {
      display: none !important;
    }
    .minigame-card__captcha-drawer {
      --captcha-scale: 0.82;
      max-height: 0;
      opacity: 0;
      transform: translateY(-8px);
      overflow: hidden;
      pointer-events: none;
      transition:
        max-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 220ms ease,
        transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        margin-top 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
      margin-top: 0;
    }
    .minigame-card__captcha-drawer.is-open {
      max-height: 120px;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      margin-top: 0.42rem;
    }
    .minigame-card__captcha-drawer-inner {
      width: 100%;
      min-height: calc(78px * var(--captcha-scale));
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.34rem;
      border-radius: 15px;
      border: 1px solid rgba(183, 109, 255, 0.34);
      background:
        linear-gradient(140deg, rgba(183, 109, 255, 0.2), rgba(80, 44, 156, 0.2)),
        rgba(13, 9, 28, 0.82);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 10px 20px rgba(26, 10, 60, 0.34);
    }
    .minigame-card__captcha-drawer .g-recaptcha {
      width: 304px;
      height: 78px;
      transform: scale(var(--captcha-scale)) !important;
      transform-origin: center center;
    }
    @keyframes captchaHintPulse {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.12); }
    }
    .minigame-card__access-status {
      margin: 0;
      min-height: 1.1rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.04);
      padding: 0.3rem 0.5rem;
      font-size: 0.44rem;
      letter-spacing: 0.03rem;
      color: rgba(226, 211, 255, 0.94);
    }
    .minigame-card__access-status--info {
      border-color: rgba(183, 109, 255, 0.35);
      color: rgba(226, 211, 255, 0.94);
    }
    .minigame-card__access-status--success {
      border-color: rgba(54, 194, 119, 0.46);
      color: #9df3c3;
      background: rgba(20, 56, 38, 0.4);
    }
    .minigame-card__access-status--error {
      border-color: rgba(231, 76, 60, 0.5);
      color: #ffb0a6;
      background: rgba(71, 24, 24, 0.34);
    }
    .minigame-card__copy {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(183, 109, 255, 0.32);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 16px rgba(26, 10, 60, 0.28);
      position: relative;
      z-index: 1;
    }
    .minigame-card__copy:hover,
    .minigame-card__copy:focus-visible {
      transform: translateY(-1px);
      background: linear-gradient(145deg, rgba(183, 109, 255, 0.42), rgba(106, 54, 212, 0.34));
      box-shadow: 0 10px 20px rgba(43, 16, 95, 0.4);
      outline: none;
    }
    .minigame-card__copy img {
      width: 24px;
      height: 24px;
      opacity: 0.92;
      filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
    }
    .minigame-card__ip-line .copy-feedback {
      position: absolute;
      top: 0.4rem;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(13, 34, 24, 0.92);
      border: 1px solid rgba(54, 194, 119, 0.4);
      border-radius: 999px;
      padding: 0.2rem 0.45rem;
      font-size: 0.42rem;
      color: #a7ffd1;
      letter-spacing: 0.06rem;
      z-index: 2;
    }
    .minigame-card__version,
    .minigame-card__ip-value {
      position: relative;
      z-index: 1;
    }
    @keyframes liquidMetalFlash {
      0% {
        transform: translateX(-120%) skewX(-18deg);
        opacity: 0;
        filter: blur(0px) saturate(0.95);
      }
      20% {
        opacity: 0.95;
        filter: blur(0.5px) saturate(1.18);
      }
      65% {
        opacity: 0.72;
      }
      100% {
        transform: translateX(130%) skewX(-18deg);
        opacity: 0;
        filter: blur(0px) saturate(1);
      }
    }
    @keyframes liquidMetalFlashSoft {
      0% {
        transform: translateX(-135%) skewX(-14deg);
        opacity: 0;
      }
      28% {
        opacity: 0.78;
      }
      62% {
        opacity: 0.55;
      }
      100% {
        transform: translateX(125%) skewX(-14deg);
        opacity: 0;
      }
    }
    @keyframes liquidMetalPulse {
      0% {
        box-shadow:
          inset 0 0 0 1px rgba(150, 255, 210, 0.08),
          0 0 0 0 rgba(64, 220, 142, 0),
          0 10px 24px rgba(17, 74, 47, 0.2);
      }
      45% {
        box-shadow:
          inset 0 0 0 1px rgba(170, 255, 220, 0.34),
          0 0 0 1px rgba(94, 255, 178, 0.26),
          0 0 26px rgba(80, 255, 178, 0.42),
          0 10px 24px rgba(17, 74, 47, 0.48);
      }
      100% {
        box-shadow:
          inset 0 0 0 1px rgba(150, 255, 210, 0.18),
          0 0 0 1px rgba(70, 230, 146, 0.16),
          0 0 10px rgba(61, 255, 168, 0.2),
          0 10px 24px rgba(17, 74, 47, 0.32);
      }
    }
    .minigame-card__cta {
      margin-top: auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem;
      border-radius: 999px;
      border: 1px solid rgba(183, 109, 255, 0.42);
      background: linear-gradient(145deg, rgba(156, 98, 255, 0.9), rgba(100, 55, 209, 0.92));
      box-shadow: 0 10px 20px rgba(36, 14, 83, 0.4);
    }
    .minigame-card__optional {
      text-align: center;
      color: rgba(248, 244, 255, 0.92);
      font-size: clamp(0.5rem, 1.3vw, 0.58rem);
      letter-spacing: 0.04rem;
      line-height: 1.2;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
    }
    .minigame-card__actions {
      display: inline-flex;
      grid-auto-flow: column;
      align-items: center;
      padding: 0.1rem;
      border-radius: 999px;
      background: rgba(49, 19, 106, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }
    .minigame-card__actions .btn {
      min-width: 170px;
      min-height: 44px;
      justify-content: center;
      border-radius: 999px;
      font-size: clamp(0.56rem, 1.3vw, 0.64rem);
      letter-spacing: 0.08rem;
    }
    .minigame-card__actions .btn.btn--primary {
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.16),
        0 8px 18px rgba(37, 14, 82, 0.55);
      border-color: rgba(255, 255, 255, 0.28);
      background: linear-gradient(140deg, rgba(124, 66, 232, 0.98), rgba(80, 40, 178, 0.98));
    }
    .minigame-card__actions .btn.btn--primary:hover,
    .minigame-card__actions .btn.btn--primary:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(255, 255, 255, 0.44);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.24),
        0 12px 24px rgba(37, 14, 82, 0.65);
    }
    .minigame-card__status {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid var(--panel-border);
      border-radius: 999px;
      padding: 0.3rem 0.55rem;
      font-size: 0.52rem;
      letter-spacing: 0.12rem;
      text-transform: uppercase;
      color: var(--text-secondary);
    }
    .minigame-card__status--media {
      position: absolute;
      left: 0.62rem;
      bottom: 0.62rem;
      z-index: 1;
      background: rgba(10, 18, 30, 0.85);
      backdrop-filter: blur(6px);
    }
    .minigame-card__status.is-online {
      border-color: rgba(54, 194, 119, 0.45);
      color: #36c277;
    }
    .minigame-card__status.is-offline {
      border-color: rgba(228, 77, 77, 0.45);
      color: #e44d4d;
    }
    .minigame-status-dot {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: rgba(228, 77, 77, 0.9);
      box-shadow: 0 0 8px rgba(228, 77, 77, 0.55);
    }
    .minigame-status-dot.is-online {
      background: #36c277;
      box-shadow: 0 0 8px rgba(54, 194, 119, 0.55);
    }
    .minigame-status-dot.is-offline {
      background: #e44d4d;
      box-shadow: 0 0 8px rgba(228, 77, 77, 0.55);
    }
    .minigame-card__copy[disabled],
    .minigame-card__copy[aria-disabled="true"] {
      opacity: 0.45;
      pointer-events: none;
    }
    .mods-overlay[hidden] { display: none; }
    .mods-overlay {
      position: fixed;
      inset: 0;
      z-index: 980;
      display: grid;
      place-items: center;
      padding: clamp(1rem, 3vw, 2rem);
    }
    .mods-overlay__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(7, 5, 16, 0.78);
      backdrop-filter: blur(8px);
    }
    .mods-overlay__dialog {
      position: relative;
      width: min(94vw, 760px);
      max-height: 92vh;
      overflow: auto;
      background: var(--panel-bg);
      border: 1px solid var(--panel-border);
      border-radius: 28px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
      padding: clamp(1.2rem, 3vw, 2.1rem);
      display: grid;
      gap: 1rem;
      animation: verySimpleFade 220ms ease-out both;
    }
    .mods-overlay__notice {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 0.7rem;
      padding: 0.5rem 1.35rem 0.5rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(171, 255, 149, 0.45);
      background: linear-gradient(135deg, rgba(126, 217, 87, 0.96), rgba(99, 201, 80, 0.94));
      box-shadow: 0 10px 22px rgba(37, 86, 24, 0.45), 0 0 16px rgba(145, 255, 147, 0.25);
      overflow: visible;
      margin-right: clamp(1.6rem, 5vw, 2.8rem);
    }
    .mods-overlay__notice-icon {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.38);
      flex: 0 0 auto;
    }
    .mods-overlay__notice-icon img {
      width: 20px;
      height: 20px;
      object-fit: contain;
      filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
    }
    .mods-overlay__notice-text {
      color: #f3fff0;
      font-size: clamp(0.76rem, 1.85vw, 0.95rem);
      letter-spacing: 0.02rem;
      line-height: 1.15;
      text-shadow: 0 0 10px rgba(32, 77, 20, 0.32);
    }
    .mods-overlay__notice-cat {
      position: absolute;
      right: clamp(-2rem, -2.8vw, -1.2rem);
      top: 50%;
      transform: translateY(-57%);
      width: clamp(74px, 10vw, 108px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
      pointer-events: none;
    }
    .mods-overlay__close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      border: 1px solid var(--panel-border);
      background: rgba(0, 0, 0, 0.3);
      color: var(--text-primary);
      font-size: 1rem;
      cursor: pointer;
    }
    .mods-overlay__title {
      font-size: clamp(0.86rem, 2.2vw, 1.05rem);
      color: var(--accent);
      letter-spacing: 0.18rem;
      text-transform: uppercase;
    }
    .mods-overlay__intro {
      font-size: clamp(0.54rem, 1.7vw, 0.64rem);
      line-height: 1.7;
      color: var(--text-secondary);
    }
    .mods-overlay__list {
      list-style: disc;
      padding-left: 1.2rem;
      display: grid;
      gap: 0.32rem;
      color: var(--text-secondary);
      font-size: clamp(0.5rem, 1.5vw, 0.6rem);
      line-height: 1.6;
    }
    .mods-overlay__meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }
    .mods-overlay__chip {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
      border: 1px solid rgba(183, 109, 255, 0.45);
      background: linear-gradient(150deg, rgba(143, 84, 255, 0.92), rgba(103, 52, 219, 0.92));
      color: #fff;
      font-size: clamp(0.74rem, 2vw, 0.9rem);
      letter-spacing: 0.08rem;
      text-transform: uppercase;
      min-height: 82px;
      box-shadow: 0 12px 28px rgba(50, 23, 108, 0.45);
    }
    .mods-overlay__download {
      width: 100%;
      justify-content: center;
      min-height: 70px;
      font-size: clamp(0.9rem, 2.6vw, 1.08rem);
      letter-spacing: 0.16rem;
    }
    @media (max-width: 760px) {
      .minigame-card__cta {
        grid-template-columns: 1fr;
        border-radius: 16px;
      }
      .minigame-card__actions .btn {
        width: 100%;
        min-width: 0;
      }
      .mods-overlay__meta {
        grid-template-columns: 1fr;
      }
      .minigame-card__ip-line {
        grid-template-columns: 1fr auto;
      }
      .minigame-card__version {
        grid-column: 1 / -1;
        min-width: 0;
        width: 100%;
      }
      .minigame-card__captcha-drawer {
        --captcha-scale: 0.72;
      }
      .minigame-card__captcha-drawer-inner {
        justify-content: flex-start;
      }
      .minigame-card__captcha-drawer .g-recaptcha {
        transform: scale(var(--captcha-scale)) !important;
      }
      .mods-overlay__notice {
        margin-right: 0;
        padding-right: 0.72rem;
      }
      .mods-overlay__notice-text {
        font-size: clamp(0.58rem, 2.7vw, 0.68rem);
      }
      .mods-overlay__notice-cat {
        right: -0.7rem;
        width: 62px;
      }
    }

    /* ===========================
       Home Structure Layout
       =========================== */
    .home-layout {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(1rem, 2.5vw, 1.8rem);
      align-items: start;
    }
    .home-layout__aside {
      position: static;
      width: 100%;
    }
    .home-layout .seasonal-panel {
      width: 100%;
      max-width: none;
      margin: 0;
    }
    .home-layout .seasonal-panel.is-collapsed {
      width: 100%;
    }
    .home-layout__main {
      min-width: 0;
      width: 100%;
    }
    .home-layout .cards {
      width: 100%;
      max-width: none;
      margin: 0;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(0.9rem, 2vw, 1.4rem);
    }
    .home-layout .card {
      min-height: 0;
    }
    .home-layout .card--feature {
      grid-column: span 1;
      min-height: 0;
    }
    .home-layout .card__actions {
      margin-top: 0.6rem;
      gap: 0.55rem;
    }
    .home-layout .card--feature .card__actions {
      margin-top: 0.6rem;
    }
    .home-layout .card__text {
      margin-bottom: 0.15rem;
    }

    @media (max-width: 760px) {
      .home-layout .cards {
        grid-template-columns: 1fr;
      }
      .home-layout .card--feature {
        grid-column: span 1;
      }
    }
