:root {
  --bg: #050814;
  --panel: rgba(255, 255, 255, 0.065);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #c7cad6;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top, #21345f 0%, var(--bg) 62%);
  color: var(--text);
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.stars,
.stars::before,
.stars::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(#ffffff 0.7px, transparent 0.7px),
    radial-gradient(#d4af37 0.8px, transparent 0.8px);
  background-size: 90px 90px, 140px 140px;
  background-position: 0 0, 35px 45px;
  opacity: 0.22;
  animation: drift 26s linear infinite;
}

.stars::before {
  opacity: 0.18;
  background-size: 120px 120px;
  animation-duration: 38s;
}

.stars::after {
  opacity: 0.12;
  background-size: 180px 180px;
  animation-duration: 52s;
}

.card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: 58px 42px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  animation: fadeUp 900ms ease-out both;
}

.orbit {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  position: relative;
  animation: rotate 8s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.92), rgba(212, 175, 55, 0.18));
  top: 22px;
  left: 22px;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.35);
}

.orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  top: -6px;
  left: 36px;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: 9px;
  line-height: 1;
  font-weight: 800;
}

.divider {
  width: 92px;
  height: 3px;
  margin: 30px auto 34px;
  background: var(--gold);
  border-radius: 99px;
}

.language-block {
  margin: 26px auto 0;
  max-width: 680px;
}

.language-block h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.language-block p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.badge {
  display: inline-block;
  margin-top: 36px;
  padding: 13px 28px;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
}

footer {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes drift {
  to {
    background-position: 180px 120px, 260px 190px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px;
  }

  .card {
    padding: 42px 24px;
    border-radius: 22px;
  }

  h1 {
    letter-spacing: 5px;
  }

  .eyebrow {
    letter-spacing: 3px;
  }

  .language-block h2 {
    font-size: 19px;
  }

  .language-block p {
    font-size: 15.5px;
  }
}
