:root {
  --ink: #131217;
  --panel: #1d1b23;
  --panel-line: #2c2934;
  --cream: #f1e6d6;
  --cream-dim: #cdc2b3;
  --gold: #cf9a3e;
  --gold-bright: #e8b95f;
  --pink: #d98f95;
  --radius: 22px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  min-height: 100%;
}

.scene {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  position: relative;
  overflow: hidden;
}

/* faint ambient stars/eye-glints in the background */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 20%, var(--gold) 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 85% 15%, var(--cream-dim) 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 80%, var(--gold) 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 25% 88%, var(--cream-dim) 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 92% 60%, var(--gold) 0%, transparent 60%),
    radial-gradient(1.5px 1.5px at 6% 55%, var(--cream-dim) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 28px;
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}

/* glasses-inspired ring around the avatar */
.frame {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 20px;
}

.frame__arc {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  opacity: 0.9;
}

.frame__arc::before,
.frame__arc::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 3px;
  background: var(--gold);
  opacity: 0.9;
}

.frame__arc::before { left: -18px; }
.frame__arc::after { right: -18px; }

.frame__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 4px solid var(--ink);
  position: relative;
  z-index: 1;
}

.name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 26px;
  margin: 0;
  color: var(--cream);
  letter-spacing: 0.2px;
}

.tagline {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--gold-bright);
  font-weight: 500;
}

/* whisker divider */
.whisker {
  display: flex;
  gap: 6px;
  margin: 22px 0 20px;
}

.whisker span {
  width: 26px;
  height: 1.5px;
  background: var(--panel-line);
  border-radius: 2px;
}

.whisker span:nth-child(2) { width: 34px; background: var(--gold); opacity: 0.6; }

.tags {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* each link styled like a small ear-tag: rounded card with a notch */
.tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 18px;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  clip-path: polygon(
    16px 0, 100% 0, 100% 100%, 0 100%, 0 16px
  );
}

.tag:hover,
.tag:focus-visible {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(207, 154, 62, 0.6);
}

.tag:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.tag__icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: var(--ink);
}

.tag__label {
  flex: 1;
  text-align: left;
}

.tag__arrow {
  font-size: 14px;
  opacity: 0.5;
}

.footnote {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 12px;
  color: var(--cream-dim);
  opacity: 0.6;
}

.footnote code {
  background: var(--panel);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid var(--panel-line);
}

@media (prefers-reduced-motion: reduce) {
  .tag { transition: none; }
}
