/* Minimal, responsive Linktree-style page */
:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #b3b3b3;
  --card: #1f1f1f;
  --card-hover: #2a2a2a;
  --accent: #ffffff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    /* Dark cinematic gradient background with subtle overlay texture */
  background:
    radial-gradient(ellipse at center,
      #2c2c2c 0%,
      #1f1f1f 250%,
      #141414 250%,
      #090909 50%,
      #000000 50%),
    url('../img/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: overlay;
  opacity: 0.95;

  color: var(--text);
}

.container {
  max-width: 550px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.profile {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 12px;
}

.brand {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-block;
}

h1 {
  margin: 16px 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subtitle {
  color: var(--muted);
  margin: 0;
}

.content {
  margin: 24px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.links {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 16px;
}

.link-btn {
  display: grid;
  grid-template-columns: 28px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background .2s ease, transform .06s ease;
}

.link-btn:hover { background: var(--card-hover); transform: translateY(-1px); }
.link-btn:active { transform: translateY(0); }

.icon svg, .more svg {
  width: 24px; height: 24px; display: block;
  fill: var(--text);
}

.label {
  font-weight: 600;
  letter-spacing: .2px;
}

.more { justify-self: end; opacity: .6; }

.footer {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .content {
    --grid-template-columns: 1.2fr 500px;
    align-items: start;
  }
}
