:root {
  --text: #ffffff;
  --line: rgba(255, 255, 255, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  overflow: hidden;
}

.expired-page {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0b0b0b 42%, #000 100%);
}

.brand-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.brand-block {
  position: relative;
  z-index: 2;
  width: min(86vw, 460px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.brand-logo {
  width: min(300px, 72vw);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.72));
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-link {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link:hover {
  background: #ff8a1d;
  color: #111;
  transform: translateY(-2px);
}

.icon-center {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  line-height: 0;
}

.social-link svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.site-icon-link svg {
  width: 25px;
  height: 25px;
}

.telegram-link svg {
  transform: translate(-1px, 1px);
}

.social-link[href="#"] {
  display: none;
}

@media (max-width: 520px) {
  .brand-block {
    gap: 28px;
  }

  .brand-logo {
    width: min(220px, 70vw);
  }

  .social-link {
    width: 48px;
    height: 48px;
  }
}
