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

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
  background: #123f2d;
}

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

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(30px);
  transform: scale(1.08);
  z-index: -2;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.content {
  max-width: 920px;
  width: 100%;
  padding: 48px 32px;
}

h1 {
  font-size: clamp(64px, 11vw, 150px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

p {
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.social-link {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  outline: none;
}

.social-link svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

@media (max-width: 600px) {
  .content {
    padding: 36px 18px;
  }

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

  .social-link svg {
    width: 30px;
    height: 30px;
  }
}
