.help-page { padding-bottom: 48px; max-width: 760px; margin: 0 auto; }

    .help-block {
      background: var(--panel-dark);
      border: 2px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      padding: 22px 22px 20px;
      margin-bottom: 18px;
      box-shadow: var(--shadow-md);
    }

    .help-block h2 {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .help-block__sub {
      font-size: 0.88rem;
      color: rgba(238, 241, 255, 0.6);
      margin-bottom: 18px;
      line-height: 1.45;
    }

    .steps {
      list-style: none;
      counter-reset: step;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .steps li {
      counter-increment: step;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-size: 0.9rem;
      color: rgba(238, 241, 255, 0.88);
      line-height: 1.5;
    }

    .steps li::before {
      content: counter(step);
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: linear-gradient(145deg, var(--gold), var(--gold-dark));
      color: #1a1a2e;
      font-family: 'Fredoka', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
    }

    .steps a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .steps a:hover { color: #ffe066; }

    .help-note {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      background: rgba(2, 183, 87, 0.1);
      border: 1px solid rgba(2, 183, 87, 0.25);
      font-size: 0.84rem;
      color: rgba(238, 241, 255, 0.75);
      line-height: 1.45;
    }

    .faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 14px 0;
      text-align: left;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 700;
      color: rgba(238, 241, 255, 0.9);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .faq-q::after {
      content: '+';
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--gold);
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q::after { transform: rotate(45deg); }

    .faq-a {
      display: none;
      padding: 0 0 14px;
      font-size: 0.875rem;
      color: rgba(238, 241, 255, 0.72);
      line-height: 1.55;
    }

    .faq-item.open .faq-a { display: block; }

    .contact-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      border-radius: var(--radius-sm);
      background: rgba(0, 0, 0, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: border-color 0.15s, background 0.15s;
    }

    .contact-item:hover {
      border-color: rgba(255, 201, 54, 0.3);
      background: rgba(255, 201, 54, 0.06);
    }

    .contact-item__icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-item__body { min-width: 0; }

    .contact-item__label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(238, 241, 255, 0.45);
      margin-bottom: 2px;
    }

    .contact-item__value {
      font-size: 0.92rem;
      font-weight: 600;
      color: #fff;
      word-break: break-word;
    }

    .contact-item__icon img {
      width: 24px;
      height: 24px;
      display: block;
      border-radius: 6px;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .legal-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      padding: 14px 16px;
      border-radius: var(--radius-sm);
      border: 2px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.15);
      color: rgba(238, 241, 255, 0.9);
      font-family: inherit;
      font-size: 0.88rem;
      font-weight: 700;
      cursor: pointer;
      text-align: left;
      transition: border-color 0.15s, background 0.15s, transform 0.1s;
      box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
    }

    .legal-btn:hover {
      border-color: rgba(255, 201, 54, 0.35);
      background: rgba(255, 201, 54, 0.08);
    }

    .legal-btn:active { transform: translateY(2px); box-shadow: none; }

    .legal-btn svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      opacity: 0.5;
    }

    .doc-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .doc-modal.show { display: flex; }

    .doc-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
    }

    .doc-modal__box {
      position: relative;
      background: var(--panel-dark);
      border: 2px solid rgba(255, 201, 54, 0.35);
      border-radius: var(--radius);
      padding: 24px 22px;
      max-width: 560px;
      width: 100%;
      max-height: 82vh;
      overflow-y: auto;
      box-shadow: var(--shadow-md);
      animation: modalIn 0.2s ease;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: translateY(12px) scale(0.98); }
      to { opacity: 1; transform: none; }
    }

    .doc-modal__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .doc-modal__title {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.3;
    }

    .doc-modal__close {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
    }

    .doc-modal__close:hover { background: rgba(255, 255, 255, 0.12); }

    .doc-modal__body {
      font-size: 0.84rem;
      color: rgba(238, 241, 255, 0.78);
      line-height: 1.6;
    }

    .doc-modal__body h4 {
      font-size: 0.88rem;
      font-weight: 700;
      color: #fff;
      margin: 16px 0 6px;
    }

    .doc-modal__body h4:first-child { margin-top: 0; }

    .doc-modal__body p { margin-bottom: 10px; }

    .doc-modal__body ul {
      margin: 0 0 10px 18px;
    }

    .doc-modal__body li { margin-bottom: 4px; }

    @media (max-width: 560px) {
      .legal-grid { grid-template-columns: 1fr; }
    }

.game-decor { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
    .game-block { position: absolute; border-radius: 6px; opacity: 0.12; animation: floatBlock 8s ease-in-out infinite; }
    .game-block.b1 { width: 56px; height: 56px; background: var(--gold); top: 12%; left: 4%; transform: rotate(18deg); }
    .game-block.b2 { width: 40px; height: 40px; background: var(--green); top: 28%; right: 6%; transform: rotate(-12deg); animation-delay: -2s; }
    .game-block.b3 { width: 32px; height: 32px; background: #5b8def; bottom: 22%; left: 8%; animation-delay: -4s; }
    .game-block.b4 { width: 48px; height: 48px; background: #e2231a; bottom: 14%; right: 10%; animation-delay: -1s; }
    @keyframes floatBlock {
      0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
      50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
    }