/* page-goto.css — интерстициальная страница редиректа */
.goto-main {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(700px 360px at 85% -10%, rgba(143, 224, 102, 0.15), transparent 60%),
    linear-gradient(160deg, #17301F 0%, #0E1B12 60%, #12240F 100%);
}
.goto-card {
  max-width: 520px; text-align: center;
  background: linear-gradient(180deg, var(--bg-2), #14231A);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 44px 32px;
  position: relative;
}
.goto-card__star { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); filter: hue-rotate(28deg); }
.goto-card h1 { font-size: clamp(24px, 4vw, 30px); }
.goto-card .btn { width: 100%; margin: 18px 0; }
.goto-note { font-size: 13px; color: var(--text-3); margin-bottom: 0; }
