:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(10, 10, 10, 0.68);
  --panel-border: rgba(187, 149, 92, 0.34);
  --text: #f4ede4;
  --muted: #c1b3a1;
  --accent: #c8a26a;
  --accent-strong: #e2be84;
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Inter", Arial, sans-serif;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.72) 100%),
    url("background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.hero {
  width: min(100%, 760px);
  padding: 34px 24px 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  backdrop-filter: blur(6px);
  box-shadow: 0 28px 80px var(--shadow);
}

.eyebrow,
h1,
.lede,
.merch {
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.lede {
  width: min(100%, 560px);
  margin: 16px auto 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.links {
  display: grid;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  padding: 16px 18px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.36);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(226, 190, 132, 0.46);
  background:
    linear-gradient(135deg, rgba(226, 190, 132, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.52);
}

.icon-wrap {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(226, 190, 132, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-strong);
  font-size: 1.3rem;
}

.link-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 4px;
}

.link-copy strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.link-copy span {
  color: var(--muted);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.merch {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.merch-label {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merch-copy {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 700;
}

@media (max-width: 640px) {
  .hero {
    padding: 26px 16px 20px;
  }

  .social-link {
    padding: 14px;
    gap: 14px;
    min-height: 74px;
  }

  .icon-wrap {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }
}
