:root {
  color-scheme: dark;
  --bg: #060606;
  --bg-2: #121111;
  --text: #f0eeee;
  --muted: #aaa3a3;
  --line: rgba(255, 255, 255, 0.14);
  --red: #b91916;
  --red-2: #ec322a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 22%, rgba(184, 25, 22, 0.2), transparent 34rem),
    radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.08), transparent 26rem),
    linear-gradient(135deg, #040404, #101010 54%, #050505);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(28px, 6vw, 72px) 20px;
  place-items: center;
}

.hero {
  width: min(100%, 720px);
  text-align: center;
}

.logo {
  width: min(62vw, 320px);
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.7));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-2);
  font-size: clamp(1rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 15em;
  margin: 0 auto;
  font-size: clamp(2rem, 6.5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 860px);
  margin: clamp(34px, 7vw, 58px) auto 0;
}

.social-card {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--text);
  text-align: left;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(236, 50, 42, 0.75);
  background: linear-gradient(145deg, rgba(185, 25, 22, 0.25), rgba(255, 255, 255, 0.05));
  outline: none;
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #f5f3f1;
}

.social-icon svg {
  width: 27px;
  height: 27px;
  fill: #090909;
}

.youtube .social-icon {
  background: #ff1b16;
}

.youtube .social-icon svg {
  width: 30px;
  fill: #fff;
}

.youtube .play {
  fill: #ff1b16;
}

.telegram .social-icon {
  background: #27a7e7;
}

.telegram .social-icon svg {
  fill: #fff;
}

.social-card strong,
.social-card span span {
  display: block;
}

.social-card strong {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.social-card span span {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .social-links {
    grid-template-columns: 1fr;
    width: min(100%, 440px);
  }

  .social-card {
    min-height: 78px;
  }
}
