:root {
  --void: #070405;
  --wine: #3a0c12;
  --blood: #7a1520;
  --ember: #b42332;
  --paper: #f3ece6;
  --mute: #c4b4b0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--void);
  color: var(--paper);
  overflow-x: hidden;
}

.stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, #1a070a 0%, transparent 58%),
    radial-gradient(circle at 50% 42%, rgba(122, 21, 32, 0.22), transparent 42%),
    var(--void);
}

.bolts {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.bolt {
  fill: none;
  stroke: var(--ember);
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(180, 35, 50, 0.45));
}

.bolt-a {
  stroke-width: 1.4;
  opacity: 0.28;
  animation: flash 7.5s ease-in-out infinite;
}

.bolt-b {
  stroke-width: 0.9;
  opacity: 0.16;
  animation: flash 11s ease-in-out infinite 2.4s;
}

@keyframes flash {
  0%,
  82%,
  100% {
    opacity: 0.08;
  }
  84% {
    opacity: 0.55;
  }
  87% {
    opacity: 0.12;
  }
  89% {
    opacity: 0.4;
  }
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 36px;
  padding: 72px 20px 80px;
}

.identity {
  text-align: center;
}

.avatar {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(180, 35, 50, 0.7);
  box-shadow:
    0 0 0 8px rgba(7, 4, 5, 0.9),
    0 0 40px rgba(122, 21, 32, 0.45);
}

h1 {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.35rem;
  letter-spacing: 0.04em;
}

h2 {
  margin: 10px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hi {
  margin: 8px 0 0;
  color: var(--mute);
  font-size: 1rem;
}

.orbit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 28px;
  max-width: 560px;
  margin: 0 auto;
}

.float {
  animation: drift 8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.1s);
}

.orb {
  --size: 104px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 6px;
  text-decoration: none;
  color: var(--paper);
  background:
    radial-gradient(circle at 35% 30%, rgba(180, 35, 50, 0.38), transparent 42%),
    radial-gradient(circle at 50% 80%, #120608, #2a0a10 70%);
  border: 1px solid rgba(180, 35, 50, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 220, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.orb svg {
  width: 26px;
  height: 26px;
}

.orb span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orb-kick {
  --size: 116px;
}

.orb-dokan span,
.orb-paypal span {
  letter-spacing: 0.08em;
}

.orb:hover,
.orb:focus-visible {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(243, 236, 230, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 220, 0.18),
    0 0 0 1px rgba(180, 35, 50, 0.35),
    0 16px 32px rgba(90, 10, 18, 0.5);
  outline: none;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolt-a,
  .bolt-b,
  .float {
    animation: none;
  }
}

@media (max-width: 520px) {
  .orb {
    --size: 92px;
  }
  .orb-kick {
    --size: 100px;
  }
  h1 {
    font-size: 2rem;
  }
}
