:root {
  --bg: #070709;
  --bg-soft: #101014;
  --panel: rgba(22, 22, 28, 0.78);
  --panel-strong: rgba(33, 17, 20, 0.9);
  --border: rgba(255, 255, 255, 0.11);
  --border-red: rgba(255, 44, 73, 0.38);
  --text: #f8fafc;
  --muted: #b7bdc9;
  --red: #ff2d46;
  --red-strong: #d91532;
  --gold: #ffd166;
  --gold-strong: #f2a81d;
  --gold-soft: rgba(255, 209, 102, 0.12);
  --panel-line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --glow: 0 0 28px rgba(255, 45, 70, 0.38);
  --gold-glow: 0 0 28px rgba(255, 209, 102, 0.24);
  --radius: 8px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 45, 70, 0.18), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.08), transparent 30rem),
    linear-gradient(180deg, #08080b 0%, #0b0709 46%, #070709 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 9, 0.76);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span {
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border-red);
  box-shadow: var(--glow);
}

.nav-menu {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  box-shadow: inset 0 -2px 0 var(--red), 0 0 18px rgba(255, 45, 70, 0.16);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.settings-menu {
  position: relative;
}

.settings-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 1.05rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.settings-toggle:hover,
.settings-menu.open .settings-toggle {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 102, 0.52);
  background: rgba(255, 209, 102, 0.1);
  box-shadow: var(--gold-glow);
}

.settings-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 70;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(255, 45, 70, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 45, 70, 0.1), rgba(255, 209, 102, 0.055)),
    rgba(8, 8, 12, 0.96);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.settings-menu.open .settings-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.settings-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.settings-dropdown a:hover,
.settings-dropdown a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--border-red);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 45, 70, 0.12);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 70, 0.8);
  background: rgba(255, 45, 70, 0.2);
  box-shadow: var(--glow);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #9f1024);
  border-color: rgba(255, 255, 255, 0.16);
}

.button.gold {
  color: #130d02;
  background: linear-gradient(135deg, var(--gold), #e7a823);
  border-color: rgba(255, 209, 102, 0.4);
}

.button.topgg {
  color: #0f0802;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  border-color: rgba(255, 209, 102, 0.5);
  box-shadow: var(--gold-glow);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 84px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.96), rgba(7, 7, 9, 0.84), rgba(7, 7, 9, 0.96)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-inner,
.section-inner {
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 64px)));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.84fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-logo {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  border: 1px solid var(--border-red);
  box-shadow: var(--glow);
  animation: heroFloat 5s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 950;
}

.tagline {
  margin: 16px 0 0;
  color: var(--gold);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-badge {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.trust-badge.gold {
  border-color: rgba(255, 209, 102, 0.34);
  color: var(--gold);
  background: var(--gold-soft);
}

.radar-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 45, 70, 0.14), rgba(255, 209, 102, 0.07)),
    rgba(9, 9, 12, 0.78);
  box-shadow: var(--shadow), var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: clamp(18px, 3vw, 26px);
}

.radar-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 45, 70, 0.58), transparent 36%, rgba(255, 209, 102, 0.46));
  opacity: 0.5;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.radar-header,
.radar-status {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.radar-title {
  font-weight: 950;
}

.radar-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 850;
}

.radar-pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  animation: pulseDot 1.5s ease-in-out infinite;
}

.radar-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin: 18px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 209, 102, 0.08), transparent 61%),
    radial-gradient(circle, rgba(255, 45, 70, 0.15), transparent 66%);
  box-shadow: inset 0 0 48px rgba(255, 45, 70, 0.24), 0 0 38px rgba(255, 45, 70, 0.22);
}

.radar-stage::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  box-shadow: inset 0 0 30px rgba(255, 209, 102, 0.12);
  pointer-events: none;
}

.radar-gif {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.css-radar {
  position: relative;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 209, 102, 0.12) 1px, transparent 1px),
    radial-gradient(circle, transparent 0 28%, rgba(255, 45, 70, 0.24) 29% 30%, transparent 31% 54%, rgba(255, 209, 102, 0.2) 55% 56%, transparent 57%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  overflow: hidden;
}

.css-radar::after {
  content: "";
  position: absolute;
  inset: 50% 50% 0 0;
  transform-origin: 100% 0;
  background: linear-gradient(45deg, rgba(255, 45, 70, 0.72), transparent 62%);
  animation: radarSweep 3.8s linear infinite;
}

.radar-status {
  justify-content: center;
}

.radar-status span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

section {
  padding: 84px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-lead {
  max-width: 790px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.policy-card,
.contact-card,
.link-card,
.step,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 182px;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card::before,
.contact-card::before,
.link-card::before,
.policy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 45, 70, 0.22), transparent 48%, rgba(255, 209, 102, 0.14));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: var(--shadow), var(--glow);
}

.card:hover::before,
.contact-card:hover::before,
.link-card:hover::before,
.policy-card:hover::before {
  opacity: 1;
}

.card > *,
.contact-card > *,
.link-card > *,
.policy-card > * {
  position: relative;
  z-index: 1;
}

.icon-badge {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
}

.feature-icon,
.link-card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: 14px;
  color: var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 45, 70, 0.15), rgba(255, 209, 102, 0.1)),
    rgba(8, 8, 12, 0.78);
  box-shadow: 0 0 20px rgba(255, 45, 70, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: 14px;
  color: var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 45, 70, 0.16), rgba(255, 209, 102, 0.1)),
    rgba(8, 8, 12, 0.78);
  box-shadow: 0 0 20px rgba(255, 45, 70, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-card-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.card h3,
.contact-card h3,
.link-card h3,
.step h3 {
  margin-top: 16px;
  font-size: 1.02rem;
}

.card p,
.contact-card p,
.link-card p,
.step p {
  margin: 10px 0 0;
  color: var(--muted);
}

.feature-group {
  min-height: 330px;
}

.feature-group ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-group li {
  margin: 7px 0;
}

.data-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.data-list div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.step {
  position: relative;
  padding: 22px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #17070a;
  background: var(--gold);
  font-weight: 950;
}

.table-wrap {
  max-width: 100%;
  margin-top: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  color: var(--gold);
  background: rgba(255, 45, 70, 0.1);
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.faq-item button {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--text);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button span {
  color: var(--gold);
  font-weight: 950;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.open {
  border-color: var(--border-red);
}

.link-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.contact-card,
.link-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red);
  box-shadow: var(--glow);
}

.contact-card:hover .contact-card-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 209, 102, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 45, 70, 0.22), rgba(255, 209, 102, 0.14)),
    rgba(8, 8, 12, 0.88);
  box-shadow: var(--glow), var(--gold-glow);
}

.card:hover .feature-icon,
.link-card:hover .feature-icon,
.link-card:hover .link-card-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 209, 102, 0.58);
  box-shadow: var(--glow), var(--gold-glow);
}

.link-card a,
.policy-card a {
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.official-hero .section-lead {
  max-width: 760px;
}

.official-warning-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 209, 102, 0.35);
  border-radius: 999px;
  color: var(--gold);
  background: var(--gold-soft);
  box-shadow: var(--gold-glow);
  font-size: 0.92rem;
  font-weight: 900;
}

.official-links-section {
  padding-top: 42px;
}

.official-group + .official-group {
  margin-top: 52px;
}

.official-section-header {
  margin-bottom: 18px;
}

.official-section-title {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.official-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.official-grid-single {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
}

.official-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 235px;
  padding: 22px;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 45, 70, 0.1), rgba(255, 209, 102, 0.045)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.official-card-wide {
  min-height: 190px;
  max-width: 100%;
}

.official-card-wide p {
  max-width: 760px;
  flex: 0 1 auto;
}

.official-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 45, 70, 0.24), transparent 48%, rgba(255, 209, 102, 0.16));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.official-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: 0.76;
}

.official-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 45, 70, 0.55);
  box-shadow: var(--shadow), var(--glow);
}

.official-card:hover::before {
  opacity: 1;
}

.official-card > * {
  position: relative;
  z-index: 1;
}

.official-card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: 14px;
  color: var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 45, 70, 0.16), rgba(255, 209, 102, 0.1)),
    rgba(8, 8, 12, 0.78);
  box-shadow: 0 0 20px rgba(255, 45, 70, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.official-card:hover .official-card-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 209, 102, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 45, 70, 0.22), rgba(255, 209, 102, 0.14)),
    rgba(8, 8, 12, 0.88);
  box-shadow: var(--glow), var(--gold-glow);
}

.official-card h3 {
  margin-top: 14px;
  font-size: 1.14rem;
}

.official-card p {
  flex: 0 1 auto;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.official-card-actions {
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}

.official-card-actions .button,
.official-card-actions button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding-inline: 15px;
}

.official-copy-status {
  flex: 1 0 100%;
  min-height: 0;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
}

.official-copy-status:not(:empty) {
  margin-top: 0;
}

.official-copy-status:empty {
  display: none;
}

.official-grid,
.link-grid {
  align-items: stretch;
}

.link-card {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.link-card p,
.official-card p {
  margin-bottom: 0;
}

.link-card-actions,
.card-actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.link-card-actions .btn,
.card-actions .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compact-link-grid {
  align-items: stretch;
}

.compact-link-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
}

.compact-link-card p {
  line-height: 1.6;
}

.compact-link-card .link-card-actions {
  padding-top: 18px;
}

.compact-link-card .button {
  min-height: 42px;
}

.official-safety {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: var(--radius);
  color: var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(255, 45, 70, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--gold-glow);
}

.official-safety .official-card-icon {
  flex: 0 0 auto;
}

.official-safety p {
  margin: 0;
  font-weight: 850;
}

.notice {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 45, 70, 0.16), rgba(255, 209, 102, 0.08));
  box-shadow: var(--glow);
}

.policy-hero {
  padding: 72px 0 34px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.toc a:hover {
  color: var(--gold);
}

.policy-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  margin-bottom: 18px;
}

.policy-card h2 {
  font-size: 1.55rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  padding-left: 20px;
}

.policy-card li + li {
  margin-top: 8px;
}

.policy-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.policy-link-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.policy-link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 102, 0.46);
  background: rgba(255, 209, 102, 0.1);
}

.copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.copy-value {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.copy-status {
  min-height: 24px;
  color: var(--gold);
  font-weight: 800;
}

.contact-form {
  position: relative;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 45, 70, 0.1), rgba(255, 209, 102, 0.045)),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 45, 70, 0.2), transparent 50%, rgba(255, 209, 102, 0.12));
  pointer-events: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--text);
  font-weight: 850;
  font-size: 0.94rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 5, 8, 0.72);
  padding: 12px 14px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(183, 189, 201, 0.68);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 209, 102, 0.76);
  background: rgba(8, 8, 12, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.12), var(--gold-glow);
}

.form-safety {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: 8px;
  color: var(--gold);
  background: var(--gold-soft);
  font-weight: 800;
}

.form-alert {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 850;
}

.form-alert.show {
  display: block;
}

.form-alert.success {
  border: 1px solid rgba(80, 220, 140, 0.35);
  color: #bff7d3;
  background: rgba(80, 220, 140, 0.12);
}

.form-alert.error {
  border: 1px solid rgba(255, 45, 70, 0.45);
  color: #ffd0d7;
  background: rgba(255, 45, 70, 0.14);
}

.form-submit {
  margin-top: 22px;
}

.success-page {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
}

.success-page section {
  width: 100%;
  padding: 78px 0;
}

.success-card {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 45, 70, 0.38);
  border-radius: var(--radius);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 45, 70, 0.12), rgba(255, 209, 102, 0.07)),
    var(--panel);
  box-shadow: var(--shadow), var(--glow), var(--gold-glow);
  backdrop-filter: blur(18px);
}

.success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 209, 102, 0.18), transparent 34rem),
    linear-gradient(135deg, rgba(255, 45, 70, 0.18), transparent 48%, rgba(255, 209, 102, 0.14));
  pointer-events: none;
}

.success-card > * {
  position: relative;
  z-index: 1;
}

.success-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border: 1px solid var(--border-red);
  border-radius: 8px;
  box-shadow: var(--glow);
}

.success-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 209, 102, 0.45);
  border-radius: 999px;
  color: #160d02;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: var(--gold-glow);
  font-size: 2rem;
  font-weight: 950;
}

.success-card h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.success-card .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.success-note {
  margin: 16px auto 0;
  color: var(--gold);
  font-weight: 850;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.success-safety {
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 8px;
  color: var(--gold);
  background: var(--gold-soft);
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 52px 0 28px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 45, 70, 0.06), rgba(0, 0, 0, 0.34)),
    rgba(0, 0, 0, 0.36);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 950;
  font-size: 1.15rem;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-red);
  box-shadow: var(--glow);
}

.footer-brand p,
.footer-col p {
  margin: 14px 0 0;
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.footer-bottom p {
  display: block;
  margin: 0;
}

.footer-warning {
  color: var(--gold);
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-red);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 45, 70, 0.85);
  box-shadow: var(--glow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .nav-link {
    padding-inline: 9px;
  }

  .grid.features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    inset: 72px 0 auto;
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(7, 7, 9, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .nav-menu .button,
  .nav-cta,
  .settings-menu,
  .settings-toggle {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    flex-direction: column;
  }

  .settings-dropdown {
    position: static;
    min-width: 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transform: translateY(-4px);
  }

  .settings-menu.open .settings-dropdown {
    max-height: 260px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .radar-panel {
    max-width: 540px;
    margin: 0 auto;
  }

  .toc {
    position: static;
  }

  .grid.features,
  .steps,
  .link-grid,
  .contact-grid,
  .official-grid,
  .grid.three,
  .policy-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  section {
    padding: 66px 0;
  }

  .hero {
    padding: 62px 0 58px;
  }

  .policy-hero {
    padding: 58px 0 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 4.4rem);
  }

  .hero-copy,
  .section-lead {
    font-size: 1rem;
  }

  .radar-panel {
    width: min(100%, 520px);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .link-grid,
  .contact-grid,
  .official-grid,
  .grid.three,
  .policy-link-list,
  .grid.features,
  .steps,
  .data-list,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .official-grid-single {
    max-width: none;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 52px 0 52px;
  }

  .hero-actions .button,
  .form-submit,
  .copy-row .button,
  .footer-copy {
    width: 100%;
  }

  .copy-value {
    width: 100%;
    text-align: center;
  }

  .official-card {
    min-height: 0;
    padding: 22px;
  }

  .official-card-actions {
    padding-top: 18px;
  }

  .official-card-actions .button,
  .official-card-actions button {
    width: 100%;
  }

  .compact-link-card {
    min-height: 0;
  }

  .compact-link-card .button {
    width: 100%;
  }

  .official-copy-status {
    position: static;
    flex: 0 0 100%;
    margin-top: 2px;
    text-align: center;
  }

  .official-safety {
    flex-direction: column;
  }

  .success-page section {
    padding: 54px 0;
  }

  .success-logo {
    width: 72px;
    height: 72px;
  }

  .success-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .nav-inner {
    min-height: 66px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-menu {
    inset: 66px 0 auto;
    max-height: calc(100vh - 66px);
    max-height: calc(100dvh - 66px);
    padding: 14px;
  }

  .hero-logo {
    width: 86px;
    height: 86px;
  }

  h1 {
    font-size: clamp(2.1rem, 14vw, 3.15rem);
  }

  .section-title {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .card,
  .contact-card,
  .link-card,
  .policy-card,
  .official-card,
  .step,
  .notice,
  .success-card {
    padding: 18px;
  }

  .feature-icon,
  .link-card-icon,
  .official-card-icon,
  .contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 1.16rem;
  }

  .success-icon {
    width: 56px;
    height: 56px;
  }

  .success-logo {
    width: 64px;
    height: 64px;
  }

  .radar-status span,
  .trust-badge {
    width: 100%;
    text-align: center;
  }

  th,
  td {
    padding: 12px;
  }

  .scroll-top {
    right: 12px;
    bottom: 12px;
  }
}
