:root {
  --bg: #161616;
  --panel: #202020;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f5f3;
  --muted: #b8b7b2;
  --accent: #ff5b2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 91, 45, 0.18), transparent 28%),
    linear-gradient(180deg, #131313 0%, #191919 100%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 760px);
  padding: 44px 32px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(32, 32, 32, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.logo {
  width: min(240px, 56vw);
  height: auto;
}

h1 {
  margin: 20px 0 0;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 1;
}

.lead {
  max-width: 34rem;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
  text-decoration: none;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 91, 45, 0.45);
  background: rgba(255, 91, 45, 0.08);
  transform: translateY(-1px);
}

.icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.icon-youtube {
  color: #ff0000;
}

.icon-telegram {
  color: #27a7e7;
}

.icon-instagram {
  color: #e4405f;
}

.icon-tiktok {
  color: #25f4ee;
}

.note {
  margin: 24px auto 0;
  max-width: 38rem;
  color: #8f8d87;
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .card {
    padding: 32px 20px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
