/* ============================================================
   NSTudio Biolink — Shared Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --bg-from:    #FF4500;
  --bg-to:      #FF8C00;
  --card:       #ffffff;
  --text:       #1a1a1a;
  --name-color: #ffffff;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--bg-from), var(--bg-to));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  padding: 32px 16px 48px;
  transition: background 0.4s ease;
}

/* ── Card ── */
.bio-card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Logo ── */
.bio-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  margin-bottom: 20px;
  overflow: hidden;
  animation: popIn 0.5s cubic-bezier(.34,1.56,.64,1) both;
}

.bio-logo span {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: #FF4500;
  letter-spacing: 1px;
}

/* ── Name ── */
.bio-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  letter-spacing: 3px;
  color: var(--name-color);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  animation: fadeUp 0.5s 0.1s ease both;
  margin-bottom: 4px;
}

.bio-tagline {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  animation: fadeUp 0.5s 0.15s ease both;
  margin-bottom: 28px;
}

/* ── Links ── */
.bio-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: fadeUp 0.5s ease both;
  opacity: 0;
}

.bio-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.bio-link:active {
  transform: scale(0.98);
}

.link-icon {
  font-size: 1.2rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.link-label {
  flex: 1;
  text-transform: uppercase;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.link-arrow {
  color: #aaa;
  font-size: 1rem;
  transition: transform 0.18s ease;
}

.bio-link:hover .link-arrow {
  transform: translateX(4px);
  color: #FF4500;
}

/* ── Footer ── */
.bio-footer {
  margin-top: 36px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  animation: fadeUp 0.5s 0.5s ease both;
}

/* ── Animations ── */
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

@keyframes fadeUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}