/* zommmbri — "Amethyst": vampy dark glam. Aubergine void, magenta+amethyst glow,
   high-contrast serif, glossy primary. Distinct from ibit3irl's crimson gothic. */

:root {
  --void:    #0a0710;
  --plum:    #160a1f;
  --smoke:   rgba(38, 20, 52, 0.55);
  --line:    rgba(210, 160, 255, 0.22);
  --magenta: #e0409c;
  --amethyst:#a259ff;
  --lilac:   #e8c8ff;
  --silver:  #d8d2e0;
  --ash:     #9a8fae;
  --display: "Didot", "Bodoni MT", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:    ui-sans-serif, "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 5vw, 40px);
  font-family: var(--sans);
  color: var(--silver);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background: aubergine with a slow-shifting amethyst aurora */
.bg {
  position: fixed; inset: -10%; z-index: -2;
  background:
    radial-gradient(70% 55% at 25% 18%, rgba(162, 89, 255, 0.30), transparent 60%),
    radial-gradient(65% 55% at 82% 22%, rgba(224, 64, 156, 0.26), transparent 62%),
    radial-gradient(120% 100% at 50% 120%, #1c0d2b 0%, var(--plum) 45%, var(--void) 100%);
  animation: aurora 22s ease-in-out infinite alternate;
}
.bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(130% 120% at 50% 45%, transparent 42%, rgba(0,0,0,0.82) 100%);
}
@keyframes aurora {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.05); }
  to   { transform: translate3d(1.5%, 1.5%, 0) scale(1.12); }
}

/* Particles: rising violet glints */
.sparkles { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute; bottom: -12px; width: 3px; height: 3px; border-radius: 50%;
  background: radial-gradient(circle, #f4d9ff 0%, var(--amethyst) 55%, transparent 75%);
  box-shadow: 0 0 8px 1px rgba(162, 89, 255, 0.7);
  opacity: 0; animation: rise linear infinite;
}
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) scale(0.7); }
  12% { opacity: 0.9; } 80% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-104vh) translateX(16px) scale(1.1); }
}

/* Card: smoked amethyst glass */
.card {
  position: relative; width: min(412px, 100%);
  padding: clamp(30px, 6vw, 44px) clamp(20px, 5vw, 34px) clamp(22px, 4vw, 28px);
  text-align: center;
  background: var(--smoke);
  -webkit-backdrop-filter: blur(18px) saturate(1.1); backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 40px 90px -34px rgba(0,0,0,0.9), 0 0 70px -26px rgba(162,89,255,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Avatar with a pulsing amethyst halo */
.avatar {
  width: clamp(108px, 30vw, 132px); height: clamp(108px, 30vw, 132px);
  border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 18px;
  border: 2px solid rgba(232, 200, 255, 0.55);
  box-shadow: 0 0 0 5px rgba(162, 89, 255, 0.35), 0 0 34px -2px rgba(224, 64, 156, 0.6);
  animation: halo 5s ease-in-out infinite;
}
@keyframes halo {
  0%, 100% { box-shadow: 0 0 0 5px rgba(162,89,255,0.30), 0 0 30px -4px rgba(224,64,156,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(162,89,255,0.45), 0 0 44px 0 rgba(224,64,156,0.75); }
}

/* Name: high-contrast serif, silver with a lilac glow */
.name {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 12vw, 58px); line-height: 1; letter-spacing: 0.005em;
  color: #fbf7ff;
  text-shadow: 0 0 16px rgba(162,89,255,0.55), 0 0 34px rgba(224,64,156,0.35);
}
.tagline {
  margin: 13px auto 30px; font-size: clamp(11px, 3.2vw, 13px);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--ash);
}
.hrt {
  -webkit-text-fill-color: var(--magenta); color: var(--magenta);
  font-variant-emoji: text; font-family: var(--sans); display: inline-block;
  text-shadow: 0 0 12px rgba(224,64,156,0.8); transform: translateY(0.02em); margin-left: 0.08em;
}
.name .hrt { font-size: 0.5em; vertical-align: 0.28em; }
.seo { margin: -20px auto 26px; max-width: 30ch; font-size: 11px; line-height: 1.5; color: var(--ash); opacity: 0.75; }

/* Links */
.links { display: flex; flex-direction: column; gap: 13px; }
.link {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 20px; border-radius: 13px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; overflow: hidden;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease, border-color .22s ease;
}
.link__emoji { font-size: 17px; line-height: 1; }
.link:hover { transform: translateY(-2px); }
.link:active { transform: translateY(0) scale(.985); }

.link--primary {
  color: #fff;
  background: linear-gradient(100deg, #7b1f6b, var(--magenta) 52%, var(--amethyst));
  background-size: 200% 100%;
  border: 1px solid rgba(232, 200, 255, 0.5);
  box-shadow: 0 16px 34px -16px rgba(224,64,156,0.9), 0 0 26px -6px rgba(162,89,255,0.7);
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.link--primary:hover { box-shadow: 0 20px 42px -16px rgba(224,64,156,1), 0 0 40px -6px rgba(162,89,255,0.9); }

.link--social {
  color: var(--silver); background: rgba(30, 16, 42, 0.6);
  border: 1px solid rgba(210, 160, 255, 0.18); box-shadow: 0 10px 26px -18px #000;
}
.link--social:hover {
  border-color: rgba(224, 64, 156, 0.7); background: rgba(40, 20, 56, 0.66);
  box-shadow: 0 12px 28px -14px #000, 0 0 20px -6px rgba(162,89,255,0.6);
}

.foot {
  margin-top: 26px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ash); opacity: 0.6;
}

/* Entrance reveal */
@keyframes appear { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.avatar, .name, .tagline, .seo, .link, .foot { animation: appear .8s cubic-bezier(.2,.7,.2,1) both; }
.avatar { animation-delay: .05s; }
.name { animation: appear .8s .18s cubic-bezier(.2,.7,.2,1) both; }
.tagline { animation-delay: .3s; }
.link:nth-child(1) { animation-delay: .42s; } .link:nth-child(2) { animation-delay: .52s; }
.link:nth-child(3) { animation-delay: .62s; } .link:nth-child(4) { animation-delay: .72s; }
.foot { animation-delay: .86s; }
.link--primary { animation: appear .8s .42s cubic-bezier(.2,.7,.2,1) both, sheen 7s 1.1s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .avatar, .name, .tagline, .seo, .link, .foot { opacity: 1; transform: none; }
  .sparkles { display: none; }
}
