.cta-row .btn-primary:first-of-type {
  margin-bottom: -10px;
}
.cta-row .btn-primary {
  margin-bottom: 0;
}
.cta-row .btn-primary:last-of-type {
  margin-bottom: 4px;
}
/* YouTube-Embed individuell und modern */
.youtube-embed-frame {
  border-radius: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 32px 0 rgba(80, 120, 255, 0.18), 0 0 0 2px rgba(120,180,255,0.10);
  background: linear-gradient(135deg, rgba(30,34,60,0.98) 60%, rgba(80,120,255,0.10) 100%);
  transition: box-shadow 0.22s, border-color 0.22s;
  outline: none;
}
.youtube-embed-frame:focus, .youtube-embed-frame:hover {
  box-shadow: 0 8px 40px 0 rgba(120,180,255,0.28), 0 0 0 3px #7bb6ff;
  border-color: #7bb6ff;
}
.youtube-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.youtube-embed:not([hidden]) {
  margin-top: 12px;
  margin-bottom: 18px;
}
:root {
  --bg: #0b0b10;
  --bg-tint: #BC9BDE;
  --card: #14141d;
  --card-rgb: 20, 20, 29;
  --text: #f5f7ff;
  --muted: #b8bfd6;
  --button: #1e1f2b;
  --button-hover: #2b2d3d;
  --accent: #ffffff;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(188, 155, 222, 0.42) 0%, rgba(188, 155, 222, 0.14) 36%, rgba(188, 155, 222, 0) 62%),
    radial-gradient(circle at top, #1e1f2b 0%, var(--bg) 45%);
}

body.light-mode {
  color: #1b2331;
  background:
    radial-gradient(circle at top, rgba(4, 145, 216, 0.2) 0%, rgba(4, 145, 216, 0.08) 34%, rgba(4, 145, 216, 0) 68%),
    linear-gradient(180deg, #f5f8ff 0%, #eaf1fc 100%);
}

body.light-mode .profile-card {
  background: linear-gradient(to bottom, #f0f4ff 0%, #eef3ff 26%, #e8eefb 100%);
  border: 1px solid rgba(16, 42, 68, 0.16);
}

body.light-mode .section-title {
  color: #1b2331;
}

body.light-mode .cta-row {
  background: linear-gradient(to bottom, rgba(232, 238, 251, 0.96) 0%, rgba(232, 238, 251, 0.86) 40%, rgba(232, 238, 251, 0) 100%);
}

body.light-mode .video-wrap::after {
  background: linear-gradient(to bottom, rgba(232, 238, 251, 0) 0%, rgba(232, 238, 251, 0.35) 26%, rgba(232, 238, 251, 0.92) 100%);
}

body.light-mode .btn-link {
  background: linear-gradient(180deg, rgba(240, 244, 255, 0.92) 0%, rgba(233, 240, 252, 0.92) 100%);
  color: #1b2331;
  border: 1px solid rgba(16, 42, 68, 0.18);
  box-shadow: 0 8px 20px rgba(16, 42, 68, 0.12);
}

body.light-mode .btn-link:hover {
  background: linear-gradient(180deg, rgba(245, 248, 255, 0.96) 0%, rgba(236, 243, 255, 0.96) 100%);
  box-shadow: 0 12px 24px rgba(16, 42, 68, 0.16);
}

body.light-mode .btn-icon {
  background: rgba(16, 42, 68, 0.08);
  border-color: rgba(16, 42, 68, 0.14);
  color: #102a44;
}

body.light-mode .spotify-embed,
body.light-mode .cookie-banner {
  background: rgba(241, 246, 255, 0.96);
  border-color: rgba(16, 42, 68, 0.14);
  box-shadow: 0 12px 28px rgba(16, 42, 68, 0.12);
}

body.light-mode .cookie-text {
  color: #1b2331;
}

body.light-mode .legal-footer,
body.light-mode .legal-footer a,
body.light-mode .legal-link-btn,
body.light-mode .creator-caption,
body.light-mode .creator-link {
  color: #4f5e79;
}

body.intro-active {
  overflow: hidden;
}

.cinematic-intro {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(188, 155, 222, 0.24) 0%, rgba(188, 155, 222, 0) 56%),
    linear-gradient(180deg, #07070d 0%, #0a0a12 100%);
  opacity: 1;
  transition: opacity 0.48s ease;
}

.cinematic-intro[hidden] {
  display: none !important;
}

.cinematic-intro-inner {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(72vw, 500px);
}

.cinematic-intro-logo {
  width: 100%;
  display: block;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.68));
  animation: introLogoIn 0.8s ease-out 0.18s forwards;
}

.cinematic-intro-inner::after {
  content: "";
  position: absolute;
  inset: -14% -8%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 76%);
  transform: translateX(-120%);
  animation: introSweep 0.9s ease-out 0.38s forwards;
}

.cinematic-intro.is-leaving {
  opacity: 0;
}

@keyframes introLogoIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introSweep {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.bg-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.aura-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.aura-layer::before,
.aura-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aura-layer::before {
  background:
    radial-gradient(340px circle at var(--aura-x, 50%) var(--aura-y, 50%), rgba(188, 155, 222, 0.3), rgba(188, 155, 222, 0) 72%),
    radial-gradient(520px circle at var(--aura-x, 50%) var(--aura-y, 50%), rgba(188, 155, 222, 0.14), rgba(188, 155, 222, 0) 76%);
  filter: blur(6px);
  animation: auraPulse 5.6s ease-in-out infinite;
}

.aura-layer::after {
  background: radial-gradient(210px circle at var(--aura-x, 50%) var(--aura-y, 50%), rgba(216, 194, 243, 0.24), rgba(216, 194, 243, 0) 74%);
  animation: auraDrift 8s ease-in-out infinite;
}

body.aura-mode .aura-layer {
  opacity: 1;
}

.aura-beat-wave {
  position: fixed;
  left: var(--x);
  top: var(--y);
  width: var(--size, 220px);
  height: var(--size, 220px);
  transform: translate(-50%, -50%) scale(0.62);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(188, 155, 222, 0.34) 0%, rgba(188, 155, 222, 0.14) 42%, rgba(188, 155, 222, 0) 72%);
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  animation: auraBeatWave var(--life, 720ms) ease-out forwards;
}

@keyframes auraBeatWave {
  0% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(0.58);
  }
  65% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes auraDrift {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.85;
  }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.bg-heart {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  color: rgba(188, 155, 222, 0.82);
  text-shadow: 0 0 12px rgba(188, 155, 222, 0.45);
  opacity: 0;
  will-change: transform, opacity;
  animation: heartFloat var(--heart-life, 2200ms) ease-out forwards;
}

@keyframes heartFloat {
  0% {
    opacity: 0;
    transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px)) scale(0.7) rotate(var(--rot, 0deg));
  }
  12% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate(calc((var(--x) + var(--drift-x, 0)) * 1px), calc((var(--y) + var(--drift-y, -36)) * 1px)) scale(1.08)
      rotate(calc(var(--rot, 0deg) + 14deg));
  }
}

.profile-card {
  width: min(100%, 580px);
  background: linear-gradient(to bottom, #090913 0%, #0f0f19 24%, var(--card) 46%, var(--card) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 0 20px 20px;
  display: grid;
  gap: 0;
  overflow: hidden;
}

.profile-header {
  text-align: center;
  padding-top: 12px;
}

.avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.name {
  margin: 12px 0 6px;
  font-size: 1.45rem;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-title {
  margin: 0 0 4px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.section-title--channels {
  margin-top: 24px;
  margin-bottom: 8px;
}

.video-wrap {
  margin: 0 -20px;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background: #000;
  position: relative;
}

.video-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 12, 0) 0%,
    rgba(6, 6, 12, 0.18) 20%,
    rgba(6, 6, 12, 0.62) 52%,
    rgba(6, 6, 12, 0.96) 100%
  );
  -webkit-mask-image: radial-gradient(142% 102% at 50% -14%, transparent 31%, rgba(0, 0, 0, 0.54) 63%, #000 100%);
  mask-image: radial-gradient(142% 102% at 50% -14%, transparent 31%, rgba(0, 0, 0, 0.54) 63%, #000 100%);
  pointer-events: none;
}

.hero-video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  pointer-events: none;
}

.hero-video.is-hidden {
  opacity: 0;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-fallback.is-visible {
  opacity: 1;
}

.hero-meta {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.hero-name {
  margin: 0;
  font-size: clamp(2rem, 6.8vw, 3.1rem);
  letter-spacing: 0.03em;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.65);
}

.hero-logo {
  width: clamp(180px, 54vw, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.95)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.88)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.78)) drop-shadow(0 34px 56px rgba(0, 0, 0, 0.64)) drop-shadow(0 52px 86px rgba(0, 0, 0, 0.46));
}

.cta-row,
.links {
  display: grid;
  gap: 10px;
}

.cta-row {
  margin-top: 0;
  padding: 30px 20px 0;
  margin-left: -20px;
  margin-right: -20px;
  background: linear-gradient(to bottom, rgba(8, 8, 14, 0.94) 0%, rgba(12, 12, 20, 0.72) 36%, rgba(20, 20, 29, 0) 100%);
}

.inline-note {
  margin: 2px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: #d8c2f3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.inline-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.spotify-embed {
  margin-top: 2px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(43, 45, 61, 0.58) 0%, rgba(30, 31, 43, 0.72) 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.spotify-embed-frame {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 12px;
  display: block;
}

.spotify-open-link {
  margin-top: 9px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #e8d8f8;
  text-decoration: none;
}

.spotify-open-link:hover {
  color: #ffffff;
}

.links {
  margin-top: 10px;
}

.legal-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.legal-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-link-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.legal-footer a:hover,
.legal-link-btn:hover {
  color: #ffffff;
}

.creator-credit {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.creator-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  opacity: 0.88;
  color: var(--muted);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.creator-control-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffe066;
  border-radius: 999px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  min-width: 84px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.creator-control-btn:hover {
  color: #ffd700;
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.creator-control-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.creator-control-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.creator-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.creator-logo {
  width: min(118px, 36vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.38));
}

.creator-caption {
  font-size: 0.64rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: rgba(232, 216, 248, 0.78);
}

body.light-mode .creator-control-btn {
  background: rgba(16, 42, 68, 0.06);
  border-color: rgba(16, 42, 68, 0.18);
  color: #e6a700;
}

body.light-mode .creator-control-btn:hover {
  color: #ffb300;
  border-color: rgba(16, 42, 68, 0.32);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.18s ease;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(20px);
  width: min(92vw, 640px);
  background: rgba(20, 20, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #e9ecfb;
}

.cookie-text a {
  color: #ffffff;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-primary {
  background: #ffffff;
  color: #11131b;
}

.cookie-btn-muted {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #BC9BDE;
  color: #1a1224;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 22px rgba(188, 155, 222, 0.3);
  margin-bottom: 12px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 14px 28px rgba(188, 155, 222, 0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 62%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 0;
}

.btn-primary.is-shimmering::before {
  opacity: 1;
}

.btn-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  gap: 12px;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(43, 45, 61, 0.78) 0%, rgba(30, 31, 43, 0.78) 100%);
  backdrop-filter: blur(6px);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-link:hover {
  background: linear-gradient(180deg, rgba(59, 62, 82, 0.86) 0%, rgba(38, 40, 56, 0.9) 100%);
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 64%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 0;
}

.btn-link.is-shimmering::before {
  opacity: 1;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex: 0 0 30px;
  color: #ffffff;
}

.btn-icon svg {
  width: 17px;
  height: 17px;
}

.btn-label {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.2s ease;
}

.btn-link:hover .btn-label {
  transform: translateY(-1px);
}

.not-found-body {
  background:
    radial-gradient(circle at 50% 12%, rgba(188, 155, 222, 0.28) 0%, rgba(188, 155, 222, 0.08) 32%, rgba(188, 155, 222, 0) 64%),
    radial-gradient(circle at top, #1e1f2b 0%, var(--bg) 42%);
}

.nf-card {
  width: min(100%, 620px);
  padding: 22px 22px 20px;
  gap: 16px;
  overflow: hidden;
}

.nf-visual {
  position: relative;
  min-height: 210px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 45%, rgba(188, 155, 222, 0.25), rgba(188, 155, 222, 0) 62%),
    linear-gradient(180deg, rgba(16, 16, 24, 0.9) 0%, rgba(10, 10, 18, 0.95) 100%);
}

.nf-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  filter: drop-shadow(0 0 14px rgba(188, 155, 222, 0.24));
}

.nf-orbit--outer {
  width: min(72vw, 340px);
  aspect-ratio: 1 / 1;
  animation: nfOrbitOuter 9.8s linear infinite;
}

.nf-orbit--inner {
  width: min(58vw, 260px);
  aspect-ratio: 1 / 1;
  animation: nfOrbitInner 6.6s linear infinite;
}

.nf-code {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: clamp(3.2rem, 18vw, 6.4rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-shadow: 0 8px 32px rgba(188, 155, 222, 0.48);
}

.nf-code::before,
.nf-code::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: rgba(188, 155, 222, 0.52);
  pointer-events: none;
}

.nf-code::before {
  transform: translate(-2px, -1px);
}

.nf-code::after {
  transform: translate(2px, 1px);
}

.nf-kicker {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #d8c2f3;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nf-title {
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 1.18rem;
}

.nf-copy {
  margin: 0;
  text-align: center;
  line-height: 1.55;
  color: #e8ddf6;
}

.nf-actions {
  margin-top: 4px;
  display: grid;
  gap: 10px;
}

.nf-secondary-link {
  justify-content: center;
}

.nf-particle {
  position: fixed;
  left: var(--x);
  bottom: -22px;
  font-size: var(--size, 1rem);
  line-height: 1;
  color: rgba(216, 194, 243, 0.82);
  text-shadow: 0 0 12px rgba(188, 155, 222, 0.38);
  opacity: 0;
  transform: translateX(0) translateY(0) scale(0.76);
  pointer-events: none;
  animation: nfParticleRise var(--life, 3600ms) ease-out var(--delay, 0ms) forwards;
}

@keyframes nfOrbitOuter {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes nfOrbitInner {
  from {
    transform: rotate(360deg) scale(0.96);
  }
  50% {
    transform: rotate(180deg) scale(1.02);
  }
  to {
    transform: rotate(0deg) scale(0.96);
  }
}

@keyframes nfParticleRise {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0.76);
  }
  14% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translateX(var(--drift, 0px)) translateY(-108vh) scale(1.05);
  }
}

@media (max-width: 420px) {
  .profile-card {
    padding: 0 16px 16px;
  }

  .nf-card {
    padding: 16px;
    gap: 12px;
  }

  .nf-visual {
    min-height: 180px;
    border-radius: 16px;
  }

  .nf-kicker {
    font-size: 0.7rem;
    bottom: 11px;
  }

  .nf-title {
    font-size: 1.05rem;
  }

  .hero-logo {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.9)) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.78)) drop-shadow(0 18px 28px rgba(0, 0, 0, 0.62));
  }

  .video-wrap {
    margin: 0 -16px;
  }

  .btn {
    padding: 12px 14px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    width: 100%;
  }
}
