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

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #f5f5f5;
  background: #000;
}

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

/* Background image */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/_assets/background.webp");
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(0.35);
  transform: scale(1.03);
  z-index: -1;
}

.page-content {
  width: 100%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 100;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-title-box {
  display: inline-flex;
  column-gap: 2rem;
  margin-bottom: 1.25rem;
}

.hero-date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b3b3b3;
  margin-bottom: 0.75rem;
}

.links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 3rem;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  min-width: 140px;
  border: 1px solid #333333;
  background: #050505;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition:
    border-color 140ms ease-out,
    background-color 140ms ease-out,
    transform 140ms ease-out,
    box-shadow 140ms ease-out;
}

.link-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.link-btn:hover {
  border-color: #555;
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

@media (max-width: 600px) {
  .links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-title-box {
    flex-direction: column;
  }

  .link-btn {
    width: 100%;
  }
}
