*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --red:      #e80014;
  --bg:       #000;
  --surface:  #111;
  --surface2: #1c1c1c;
  --text:     #fff;
  --muted:    #888;
  --border:   #2a2a2a;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 64px;
  background-image: radial-gradient(ellipse 100% 40% at 50% 0%, rgba(232,0,20,0.22) 0%, transparent 60%);
}

a { color: inherit; text-decoration: none; }

/* ── PAGE WRAPPER ── */
.page {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── PROFILE ── */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  margin-bottom: 20px;
}

.logo-link {
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.2s, filter 0.2s;
}
.logo-link:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(232, 0, 20, 0.6));
}

.logo {
  height: 44px;
  display: block;
}

.genres {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 8px;
}

.location {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #444;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}

.bio {
  font-size: 13px;
  line-height: 1.75;
  color: #999;
  text-align: center;
  max-width: 400px;
  margin-bottom: 36px;
}

/* ── LINKS ── */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
}
.link-card:hover {
  background: var(--surface2);
  border-color: #3a3a3a;
  transform: translateY(-1px);
}
.link-card:active { transform: translateY(0); }

.link-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}

.link-body {
  flex: 1;
  padding: 0 14px;
  min-width: 0;
}
.link-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}
.link-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.link-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--muted);
  margin-right: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-plain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}
.link-plain:hover {
  background: var(--surface2);
  border-color: #3a3a3a;
  color: var(--text);
  transform: translateY(-1px);
}
.link-plain:active { transform: translateY(0); }
.link-plain svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.link-book {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.link-book:hover {
  background: #c80012;
  border-color: #c80012;
  color: #fff;
}

/* ── DIVIDER LABEL ── */
.section-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 14px;
  color: #333;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── SOCIAL ICONS ── */
.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover {
  background: var(--surface2);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 12px rgba(232, 0, 20, 0.5);
}
.social-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

/* ── FOOTER ── */
.footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 56px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }
.footer-copy {
  font-size: 10px;
  color: #2e2e2e;
  letter-spacing: 0.08em;
}
.footer-copy a {
  color: #444;
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 520px) {
  body { padding: 36px 16px 48px; }
  .avatar { width: 100px; height: 100px; }
  .logo { height: 36px; }
}
