:root {
  --ink: #171512;
  --muted: #6f675b;
  --paper: #fbf7ef;
  --gold: #c49a43;
  --gold-strong: #e3bd64;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body.links-page {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  background:
    radial-gradient(circle at top, rgba(196, 154, 67, 0.18), transparent 42%),
    linear-gradient(160deg, #171512 0%, #24221d 55%, #171512 100%);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

.links-card {
  width: min(420px, 100%);
  padding: 36px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(23, 21, 18, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.links-logo {
  width: 108px;
  height: 108px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(227, 189, 100, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.links-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 7vw, 2.6rem);
  line-height: 1;
}

.links-subtitle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.link-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 189, 100, 0.45);
  background: rgba(227, 189, 100, 0.14);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.link-btn-primary {
  background: var(--gold-strong);
  border-color: transparent;
  color: #16110a;
  box-shadow: 0 14px 28px rgba(227, 189, 100, 0.22);
}

.link-btn-primary:hover {
  background: #f0cb72;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(227, 189, 100, 0.3);
}

.links-footer {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}
