@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap");

@font-face {
  font-family: "Glacial Indifference";
  src: url("/assets/fonts/GlacialIndifference-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Glacial Indifference";
  src: url("/assets/fonts/GlacialIndifference-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Glacial Indifference";
  src: url("/assets/fonts/GlacialIndifference-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #100f0f;
  --bg-card: #1a1818;
  --coral: #ff5757;
  --coral-dim: #bb4242;
  --rose: #c1b0b0;
  --white: #ffffff;
  --text-dim: #b8b3b3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100svh;
  background: var(--bg);
  background-image: radial-gradient(
    circle at 50% 0%,
    rgba(255, 87, 87, 0.08),
    transparent 60%
  );
  color: var(--white);
  font-family: "Glacial Indifference", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  padding: 48px 16px 64px;
}

.page {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 0 0 1px rgba(255, 87, 87, 0.35), 0 0 32px rgba(255, 87, 87, 0.15);
}

h1 {
  font-family: "Glacial Indifference", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0 0 6px;
}

.tagline {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  color: var(--coral);
  margin: 0 0 12px;
}

.subtext {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 340px;
}

.divider {
  margin: 0 0 28px;
  opacity: 0.85;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: var(--bg-card);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: border-color 0.15s ease, transform 0.15s ease,
    background 0.15s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
  border-color: var(--coral);
  transform: translateY(-2px);
  background: #201d1d;
}

.link-btn:active {
  transform: translateY(0);
}

.link-btn.highlight {
  border-color: var(--coral);
  background: rgba(255, 87, 87, 0.1);
}

.link-btn.highlight:hover {
  background: rgba(255, 87, 87, 0.18);
}

.link-icon {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.link-label {
  flex: 1;
  text-align: left;
}

footer {
  margin-top: 40px;
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.6;
}

footer a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 176, 176, 0.4);
}

footer a:hover {
  color: var(--coral);
  border-color: var(--coral);
}

@media (prefers-reduced-motion: reduce) {
  .link-btn {
    transition: border-color 0.15s ease, background 0.15s ease;
  }

  .link-btn:hover,
  .link-btn:focus-visible {
    transform: none;
  }
}
