/* === Canvas Scope (ohne CSS-Variablen) === */
.canvas-scope {
  font-family: 'Inter', sans-serif;
  background-color: #030712; /* Deep dark */
  color: #f3f4f6;
  overflow-x: hidden;
  perspective: 1px;
  transform-style: preserve-3d;
}

/* Überschriften */
.canvas-scope h1,
.canvas-scope h2,
.canvas-scope h3,
.canvas-scope h4 {
  font-family: 'Poppins', sans-serif;
}

/* Glassmorphism */
.canvas-scope .glass-card {
  background-color: rgba(255, 255, 255, 0.05); /* statt var(--glass-bg) */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.canvas-scope .glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 255, 255, 0.3);
}

/* Neon */
.canvas-scope .neon-accent {
  color: #00FFFF; /* statt var(--neon-cyan) */
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}
.canvas-scope .neon-button {
  background: linear-gradient(90deg, #FF9900, #00FFFF); /* statt var(--neon-orange), var(--neon-cyan) */
  color: #030712;
  font-weight: 700;
  padding: 10px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.canvas-scope .neon-button::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease-in-out;
  z-index: 2;
}
.canvas-scope .neon-button:hover::after { left: 0; }

/* Icons */
.canvas-scope .social-icon-glow:hover {
  color: #00FFFF; /* statt var(--neon-cyan) */
  text-shadow: 0 0 5px #00FFFF;
}

/* Scroll-Animation */
.canvas-scope .scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.canvas-scope .scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero / Parallax */
.canvas-scope #hero { height: 100vh; overflow: hidden; position: relative; }
.canvas-scope .hero-visual {
  background-image: url('data:image/jpeg;base64,DEIN_VOLLSTÄNDIGER_BASE64_STRING_HIER');
  background-size: cover; background-repeat: no-repeat; background-position: center center;
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  transform: translateZ(-1px) scale(2);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95);
}
.canvas-scope .hero-content {
  position: relative; z-index: 10; transform: translateZ(0);
  height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
}
.canvas-scope .hero-text-overlay {
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.15);
}