:root{
  --bg1:#0b0f2b;
  --bg2:#1a0943;
  --accent:#33a0e9;
  --neon:#39ff14;
  --pink:#ff2fd0;
  --cyan:#2ff7ff;
  --card:#0f1235cc;
  --text:#e8f0ff;
}

/* Reset/Grundlage */
*{ box-sizing: border-box; }
html,body{
  margin:0;
  padding:0;
  height:100%;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -20%, #2e1a72 0%, transparent 60%),
              radial-gradient(800px 500px at 110% 20%, #0ac2ff22 0%, transparent 60%),
              linear-gradient(140deg, var(--bg1), var(--bg2));
  overflow-x: hidden;
}

/* Animierter Hintergrund-Overlay */
.bg-animated{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 80% 10%, #ff00e61a 0%, transparent 60%),
    radial-gradient(800px 500px at 20% 90%, #00ffd51a 0%, transparent 60%);
  filter: blur(40px) saturate(140%);
  animation: floatGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes floatGlow{
  0%   { transform: translateY(0) translateX(0); opacity: .8; }
  100% { transform: translateY(-20px) translateX(10px); opacity: 1; }
}

/* Header mit Equalizer */
.header{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 16px 12px;
}
.title{
  margin: 0 auto 8px;
  font-family: 'Electrolize', monospace;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 6px var(--cyan),
    0 0 16px var(--pink),
    0 0 32px var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.subtitle{
  margin: 0;
  opacity: .9;
}

/* Equalizer-Balken */
.title .eq{
  display:inline-block;
  width: 6px;
  height: 14px;
  background: linear-gradient(180deg, var(--neon), var(--cyan));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon), 0 0 16px var(--cyan);
  animation: eqPulse 1.1s ease-in-out infinite;
}
.title .eq-1{ animation-delay: 0s }
.title .eq-2{ animation-delay: .08s }
.title .eq-3{ animation-delay: .16s }
.title .eq-4{ animation-delay: .24s }
.title .eq-5{ animation-delay: .32s }
.title .eq-6{ animation-delay: .40s }
.title .eq-7{ animation-delay: .48s }
.title .eq-8{ animation-delay: .56s }
.title .eq-9{ animation-delay: .64s }
.title .eq-10{ animation-delay: .72s }
@keyframes eqPulse{
  0%,100%{ transform: scaleY(.6); opacity:.7; }
  50%{ transform: scaleY(1.8); opacity:1; }
}

/* Disco-Kugel (reines CSS) */
.disco-ball{
  position: absolute;
  right: clamp(8px, 4vw, 48px);
  top: clamp(8px, 2vw, 24px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 8%, #ccc 10% 20%, transparent 22%),
    radial-gradient(circle at 70% 70%, #fff 0 8%, #ccc 10% 20%, transparent 22%),
    repeating-conic-gradient(from 0deg, #ffffff33 0 6deg, #00000022 6deg 12deg);
  box-shadow:
    0 0 12px #ffffffaa,
    0 0 30px #ffffff55,
    0 0 60px #ffffff33;
  animation: spinBall 6s linear infinite, sway 2.6s ease-in-out infinite;
  transform-origin: 50% -18px;
}
@keyframes spinBall{ to{ transform: rotate(360deg); } }
@keyframes sway{
  0%,100%{ translate: 0 0; }
  50%{ translate: 4px 2px; }
}

/* Formular-Karte */
.Contactform{
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  margin: 32px auto 80px;
  padding: 24px 20px 28px;
  background: linear-gradient(180deg, #0b0f2bcc, #0b0f2b99);
  border: 1px solid #4ac1ff33;
  border-radius: 16px;
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    0 0 0 1px #33a0e966 inset,
    0 10px 30px #0008,
    0 0 24px #2ff7ff55;
}

.Contactform label{
  display:block;
  margin: 10px 8px 4px;
  font-weight: 600;
  letter-spacing: .3px;
}

.Contactform input{
  width: calc(100% - 16px);
  display:block;
  padding: 12px 14px;
  margin: 0 8px 14px;
  border-radius: 10px;
  border: 1px solid #4ac1ff55;
  background: #0c1a2cbb;
  color: var(--text);
  outline: none;
  transition: box-shadow .25s, border-color .25s, transform .1s;
  box-shadow: 0 0 0 0 rgba(51,160,233,.0);
}
.Contactform input::placeholder{ color:#cfe6ff88; }
.Contactform input:focus{
  border-color: var(--cyan);
  box-shadow: 0 0 12px #2ff7ff66, 0 0 24px #ff2fd044;
  transform: translateY(-1px);
}

.hello{
  margin: 0 8px 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--pink);
  background: linear-gradient(90deg, #ff2fd011, transparent);
  border-radius: 6px;
}

.actions{
  display:flex;
  justify-content:center;
  margin-top: 6px;
}

.sendbutton{
  width: auto;
  min-width: 160px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #0b0f2b;
  background: linear-gradient(90deg, var(--neon), var(--cyan), var(--pink));
  filter: saturate(130%);
  cursor: pointer;
  box-shadow:
    0 0 10px var(--neon),
    0 0 24px var(--cyan),
    0 0 40px var(--pink);
  transition: transform .12s ease, box-shadow .25s ease, filter .25s ease;
  text-shadow: none;
}
.sendbutton:hover{
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05) saturate(150%);
  box-shadow:
    0 0 14px var(--neon),
    0 0 32px var(--cyan),
    0 0 56px var(--pink);
}
.sendbutton:active{
  transform: translateY(0) scale(.99);
  filter: brightness(.98);
}

.privacy-hint{
  margin: 14px 8px 0;
  font-size: 12px;
  opacity: .75;
}

.footer{
  text-align:center;
  padding: 24px 12px 40px;
  opacity:.8;
}

/* Responsive */
@media (max-width: 420px){
  .Contactform{ padding: 18px 14px 22px; }
  .sendbutton{ width:100%; }
}

