/* ═══════════════════════════════════════════════════════════
   Dean Skountzos – Neon Landing Page
   style.css

   EINSTELLUNGEN — Was du hier ändern kannst:

   FARBEN (Zeile ~15):
     --neon-pink    → Haupt-Akzentfarbe (Pink)
     --neon-cyan    → Zweite Akzentfarbe (Cyan)
     --neon-purple  → Dritte Akzentfarbe (Lila)
     --dark-bg      → Hintergrundfarbe

   LINK-FARBEN (ab Zeile ~360):
     Jedes data-theme hat 6 Farbwerte.
     Ändere die Hex-Codes um Karten-Farben anzupassen.

   SCHRIFTEN:
     Suche nach font-family um die Schrift zu ändern.
     Aktuell: "Outfit" (Text) + "Space Mono" (Initialen)

   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-pink: #ff2d7b;
  --neon-cyan: #00f0ff;
  --neon-purple: #b44dff;
  --dark-bg: #07060d;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--dark-bg);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}

/* ─── BACKGROUND EFFECTS ─── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.bg-glow.pink {
  width: 500px;
  height: 500px;
  background: var(--neon-pink);
  top: -10%;
  left: -10%;
}

.bg-glow.cyan {
  width: 600px;
  height: 600px;
  background: var(--neon-cyan);
  bottom: -15%;
  right: -15%;
  animation-delay: -6s;
}

.bg-glow.purple {
  width: 350px;
  height: 350px;
  background: var(--neon-purple);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -3s;
}

@keyframes floatGlow {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -40px) scale(1.15); }
  100% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ─── PARTICLES CANVAS ─── */
canvas#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── MAIN CONTAINER ─── */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── AVATAR ─── */
.avatar-wrapper {
  position: relative;
  margin-bottom: 28px;
  cursor: pointer;
}

.avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--neon-pink), var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  padding: 4px;
  animation: spinRing 4s linear infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avatar-ring:hover {
  animation-play-state: paused;
  transform: scale(1.08);
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(135deg, #12101a 0%, #1a1528 100%);
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  user-select: none;
  overflow: hidden;
}

/* Profilbild im Avatar-Ring */
.avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ─── NAME & BIO ─── */
.name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.bio {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── STATUS BADGE ─── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.15);
  font-size: 12px;
  color: var(--neon-cyan);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

/* ─── LINK CARDS ─── */
.links-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  animation: fadeUp 0.6s forwards;
}

.link-card:nth-child(1) { animation-delay: 0.6s; }
.link-card:nth-child(2) { animation-delay: 0.7s; }
.link-card:nth-child(3) { animation-delay: 0.8s; }
.link-card:nth-child(4) { animation-delay: 0.9s; }
.link-card:nth-child(5) { animation-delay: 1.0s; }

/* Gradient border on hover */
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, var(--accent) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.link-card:hover::before { opacity: 1; }

/* Mouse-follow radial glow */
.link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--accent-alpha) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.link-card:hover::after { opacity: 1; }

.link-card:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 40px var(--shadow-color);
}

/* ─── CARD INNER ELEMENTS ─── */
.link-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.link-card:hover .link-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 0 25px var(--icon-glow);
}

.link-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--icon-color);
  transition: filter 0.3s;
}
.link-card:hover .link-icon svg {
  filter: drop-shadow(0 0 6px var(--icon-color));
}

.link-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.link-text .label {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.2px;
  transition: color 0.3s;
}
.link-card:hover .label { color: var(--accent); }

.link-text .handle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin-top: 2px;
}

.link-arrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
  font-size: 18px;
}
.link-card:hover .link-arrow {
  color: var(--accent);
  transform: translateX(4px);
  filter: drop-shadow(0 0 8px var(--accent));
}

/* ─── CARD COLOR THEMES ─── */
.link-card[data-theme="instagram"] {
  --accent: #ff2d7b;
  --accent-alpha: rgba(255, 45, 123, 0.08);
  --shadow-color: rgba(255, 45, 123, 0.15);
  --icon-bg: rgba(255, 45, 123, 0.1);
  --icon-color: #ff2d7b;
  --icon-glow: rgba(255, 45, 123, 0.3);
}

.link-card[data-theme="tiktok"] {
  --accent: #00f0ff;
  --accent-alpha: rgba(0, 240, 255, 0.08);
  --shadow-color: rgba(0, 240, 255, 0.15);
  --icon-bg: rgba(0, 240, 255, 0.1);
  --icon-color: #00f0ff;
  --icon-glow: rgba(0, 240, 255, 0.3);
}

.link-card[data-theme="youtube"] {
  --accent: #ff4d6a;
  --accent-alpha: rgba(255, 77, 106, 0.08);
  --shadow-color: rgba(255, 77, 106, 0.15);
  --icon-bg: rgba(255, 77, 106, 0.1);
  --icon-color: #ff4d6a;
  --icon-glow: rgba(255, 77, 106, 0.3);
}

.link-card[data-theme="spotify"] {
  --accent: #1df268;
  --accent-alpha: rgba(29, 242, 104, 0.08);
  --shadow-color: rgba(29, 242, 104, 0.15);
  --icon-bg: rgba(29, 242, 104, 0.1);
  --icon-color: #1df268;
  --icon-glow: rgba(29, 242, 104, 0.3);
}

.link-card[data-theme="soundcloud"] {
  --accent: #ff8b2d;
  --accent-alpha: rgba(255, 139, 45, 0.08);
  --shadow-color: rgba(255, 139, 45, 0.15);
  --icon-bg: rgba(255, 139, 45, 0.1);
  --icon-color: #ff8b2d;
  --icon-glow: rgba(255, 139, 45, 0.3);
}

.link-card[data-theme="applemusic"] {
  --accent: #fc3c44;
  --accent-alpha: rgba(252, 60, 68, 0.08);
  --shadow-color: rgba(252, 60, 68, 0.15);
  --icon-bg: rgba(252, 60, 68, 0.1);
  --icon-color: #fc3c44;
  --icon-glow: rgba(252, 60, 68, 0.3);
}

.link-card[data-theme="custom"] {
  --accent: #b44dff;
  --accent-alpha: rgba(180, 77, 255, 0.08);
  --shadow-color: rgba(180, 77, 255, 0.15);
  --icon-bg: rgba(180, 77, 255, 0.1);
  --icon-color: #b44dff;
  --icon-glow: rgba(180, 77, 255, 0.3);
}

.link-card[data-theme="discord"] {
  --accent: #7289da;
  --accent-alpha: rgba(180, 77, 255, 0.08);
  --shadow-color: rgba(180, 77, 255, 0.15);
  --icon-bg: rgba(255, 255, 255, 0.1);
  --icon-color: #7289da;
  --icon-glow: rgba(114, 137, 218, 0,3);
}

/* ─── FOOTER ─── */
.footer {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.social-row {
  display: flex;
  gap: 6px;
}

.social-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: dotWave 2s ease-in-out infinite;
}
.social-dot:nth-child(1) { background: var(--neon-pink); animation-delay: 0s; }
.social-dot:nth-child(2) { background: var(--neon-cyan); animation-delay: 0.2s; }
.social-dot:nth-child(3) { background: var(--neon-purple); animation-delay: 0.4s; }

@keyframes dotWave {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(-6px); opacity: 1; }
}

.footer-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
  font-family: "Space Mono", monospace;
  letter-spacing: 1px;
}

/* ─── RIPPLE CLICK EFFECT ─── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  z-index: 2;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ═══════════════════════════════════════════
   FLOATING MUSIC PLAYER + VOLUME SLIDER
   ═══════════════════════════════════════════ */

.music-player {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* ── Play/Pause Button ── */
.music-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(7, 6, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  overflow: visible;
  color: var(--neon-cyan);
  outline: none;
}

.music-toggle:hover {
  transform: scale(1.12);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 240, 255, 0.15);
}

.music-toggle:active {
  transform: scale(0.95);
}

/* Animated ring pulse when playing */
.music-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.music-toggle.playing .music-ring {
  opacity: 1;
  animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Play / Pause Icons */
.icon-play,
.icon-pause {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity 0.3s, transform 0.3s;
}

.music-toggle.playing .icon-play  { display: none !important; }
.music-toggle.playing .icon-pause { display: block !important; }

/* Audio Visualizer Bars */
.music-visualizer {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  position: absolute;
}

.music-toggle.playing .music-visualizer { display: flex; }
.music-toggle.playing .icon-play,
.music-toggle.playing .icon-pause { display: none !important; }

.music-visualizer .bar {
  width: 3px;
  border-radius: 3px;
  background: var(--neon-cyan);
  animation: barDance 0.8s ease-in-out infinite alternate;
  box-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
}

.bar:nth-child(1) { height: 6px;  animation-delay: 0.0s; }
.bar:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.bar:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.bar:nth-child(4) { height: 18px; animation-delay: 0.1s; }
.bar:nth-child(5) { height: 8px;  animation-delay: 0.25s; }

@keyframes barDance {
  0%   { height: 4px; }
  100% { height: 20px; }
}

/* ── Volume Slider Panel ── */
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(7, 6, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.music-player:hover .volume-control {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.volume-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.volume-track {
  position: relative;
  width: 100px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  touch-action: none;
}

.volume-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  width: 5%;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

.volume-thumb {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: left 0.05s linear, box-shadow 0.3s;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
  cursor: grab;
}

.volume-thumb:active {
  cursor: grabbing;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.7);
  transform: translate(-50%, -50%) scale(1.2);
}

.volume-track:hover .volume-thumb {
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.6);
}

.volume-value {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  min-width: 30px;
  text-align: right;
  user-select: none;
}

/* ── Tooltip Label ── */
.music-label {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 16px;
  white-space: nowrap;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(7, 6, 13, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}

.music-toggle:hover ~ .music-label,
.music-player:hover .music-label {
  opacity: 0;
}

.music-toggle:hover + .volume-control + .music-label {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .container { padding: 40px 16px 60px; }
  .name { font-size: 24px; }
  .avatar-ring { width: 100px; height: 100px; }
  .avatar-inner { font-size: 30px; }
  .link-card { padding: 16px 18px; }

  .music-player {
    bottom: 16px;
    right: 16px;
  }
  .music-toggle {
    width: 48px;
    height: 48px;
  }
  .icon-play,
  .icon-pause { width: 18px; height: 18px; }
  .music-label { display: none; }
  .volume-track { width: 80px; }
}


/* ═══════════════════════════════════════════════════════════
   LANDING PAGE – zusätzliche Styles
   ═══════════════════════════════════════════════════════════ */

/* Body-Layout für Landing Page: vertikal stapeln statt horizontal */
body.landing-mode {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

/* Sanftere Glow-Orbs für die Landing Page */
.landing-mode .bg-glow { opacity: 0.55; }

/* Kein Drehen des Avatar-Rings auf der Landing Page */
.landing-mode .avatar-ring { animation: none; }

/* Smooth Scroll */
html.landing-scroll { scroll-behavior: smooth; }

/* ─── HERO SECTION ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
  position: relative;
}

/* Scroll-Pfeil */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  color: var(--neon-cyan);
  font-size: 18px;
  text-decoration: none;
  animation: bounce 2.4s ease-in-out infinite;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.scroll-hint:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── SECTION LAYOUT ─── */
.landing-section {
  padding: 6rem 20px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 12px;
  opacity: 0.85;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.15;
}

/* ─── ABOUT CARD (Glassmorphism) ─── */
.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 45, 123, 0.12), transparent 70%);
  pointer-events: none;
}

.about-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid;
  transition: box-shadow 0.2s;
}

.skill-tag.pink  { color: var(--neon-pink);   border-color: rgba(255, 45, 123, 0.45); }
.skill-tag.cyan  { color: var(--neon-cyan);   border-color: rgba(0, 240, 255, 0.45); }
.skill-tag.purple{ color: var(--neon-purple); border-color: rgba(180, 77, 255, 0.45); }

.skill-tag:hover { box-shadow: 0 0 14px currentColor; }

/* ─── NAV CARDS ─── */
.nav-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
}

.nav-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(180, 77, 255, 0.12), rgba(0, 240, 255, 0.08));
  transition: opacity 0.25s;
  pointer-events: none;
}

.nav-card:hover {
  border-color: rgba(180, 77, 255, 0.5);
  box-shadow: 0 0 32px rgba(180, 77, 255, 0.18), 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.nav-card:hover::before { opacity: 1; }

.nav-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(180, 77, 255, 0.12);
  border: 1px solid rgba(180, 77, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--neon-purple);
  position: relative;
  z-index: 1;
}

.nav-card-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.nav-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.nav-card-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.nav-card-arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.nav-card:hover .nav-card-arrow {
  color: var(--neon-purple);
  transform: translateX(4px);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LANDING FOOTER ─── */
.landing-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 3rem 20px 4rem;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
}

.landing-footer a {
  color: rgba(0, 240, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-footer a:hover { color: var(--neon-cyan); }

/* ─── ZURÜCK-BUTTON ─── */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.back-btn:hover {
  color: var(--neon-cyan);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.15);
}

/* ─── SECTIONS ROW (zwei Spalten nebeneinander) ─── */
.sections-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.landing-section--col {
  max-width: none;
  margin: 0;
}

/* ─── NAV CARD PINK VARIANTE (18+ Karte) ─── */
.nav-card--restricted {
  border-color: rgba(255, 45, 123, 0.18);
}

.nav-card--restricted:hover {
  border-color: rgba(255, 45, 123, 0.55);
  box-shadow: 0 0 32px rgba(255, 45, 123, 0.2), 0 8px 30px rgba(0,0,0,0.4);
}

.nav-card--restricted:hover::before {
  background: linear-gradient(135deg, rgba(255, 45, 123, 0.12), rgba(255, 45, 123, 0.06));
}

.nav-card-icon--pink {
  background: rgba(255, 45, 123, 0.12);
  border-color: rgba(255, 45, 123, 0.3);
  color: var(--neon-pink);
}

.nav-card-arrow--pink {
  font-size: 16px;
}

/* ─── ALTERSVERIFIKATIONS-MODAL ─── */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 6, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.age-gate-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.age-gate-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 45, 123, 0.35);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(255, 45, 123, 0.15), 0 24px 60px rgba(0,0,0,0.6);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.age-gate-overlay.active .age-gate-card {
  transform: translateY(0);
}

.age-gate-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.age-gate-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.age-gate-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.age-gate-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.age-gate-btn--yes {
  background: linear-gradient(135deg, var(--neon-pink), #c4005e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 123, 0.4);
}

.age-gate-btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 45, 123, 0.55);
}

.age-gate-btn--no {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}

.age-gate-btn--no:hover {
  opacity: 0.75;
}

.age-gate-legal {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
}

/* ─── LANDING RESPONSIVE ─── */
@media (max-width: 680px) {
  .sections-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .landing-section { padding: 4rem 16px; }
  .about-card { padding: 22px 18px; }
  .nav-card { padding: 16px 18px; }
  .nav-card-icon { width: 38px; height: 38px; font-size: 17px; }
}
