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

:root {
  --bg: #0b0f1a;
  --surface: rgba(18, 24, 40, 0.72);
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #e8edf7;
  --text-muted: #8b95ad;
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.35);
  --accent-2: #22d3ee;
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.bg__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.bg__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
}

.page {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-height: calc(100vh - 3rem);
}

.hero {
  text-align: center;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 10vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__title-main {
  display: block;
  color: var(--text);
}

.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 32ch;
  margin-inline: auto;
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--surface-border);
}

.card__icon {
  font-size: 1.15rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news__body {
  padding: 1.5rem 1.25rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news__empty {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 360px;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  color: #0b0f1a;
  background: linear-gradient(135deg, #fbbf24 0%, var(--accent) 100%);
  box-shadow: 0 8px 28px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--accent-glow);
}

.btn-download:active {
  transform: translateY(0);
}

.btn-download__icon {
  font-size: 1.2rem;
  line-height: 1;
}

.actions__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.actions__hint code {
  font-family: ui-monospace, monospace;
  font-size: 0.76rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #b8c0d4;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent-2);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .page {
    padding-top: 2.5rem;
  }

  .hero__tagline {
    font-size: 0.95rem;
  }
}
