* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #161b33 0, #050814 60%);
  color: #f5f5f5;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Sternenlayer 1: viele kleine Sterne */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;

  background:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 28% 76%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 41% 34%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 63% 22%, rgba(255,255,255,0.50), transparent 60%),
    radial-gradient(1px 1px at 77% 68%, rgba(255,255,255,0.40), transparent 60%),
    radial-gradient(1px 1px at 88% 35%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 9% 63%, rgba(255,255,255,0.40), transparent 60%),
    radial-gradient(1px 1px at 52% 82%, rgba(255,255,255,0.45), transparent 60%);

  background-size: 220px 220px;
  opacity: 0.95;
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    animation: driftStars 160s linear infinite;
  }
}

/* Sternenlayer 2: größere farbige Sterne + leichtes Pulsieren */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;

  background:
    radial-gradient(2px 2px at 18% 40%, rgba(140,200,255,0.45), transparent 70%),
    radial-gradient(2px 2px at 72% 28%, rgba(255,210,120,0.40), transparent 70%),
    radial-gradient(2px 2px at 83% 62%, rgba(255,140,160,0.35), transparent 70%),
    radial-gradient(3px 3px at 38% 60%, rgba(255,255,255,0.35), transparent 75%),
    radial-gradient(3px 3px at 56% 18%, rgba(140,255,215,0.30), transparent 75%),
    radial-gradient(2px 2px at 12% 78%, rgba(255,180,90,0.30), transparent 70%);

  background-size: 520px 520px;
  opacity: 0.9;
}

@media (prefers-reduced-motion: no-preference) {
  body::after {
    animation: pulseStars 7.5s ease-in-out infinite;
  }
}

/* Nebel / Galaxie Layer */
.space-nebula {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -4;
  opacity: 0.55;

  background:
    radial-gradient(circle at 25% 30%, rgba(120, 170, 255, 0.20), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(200, 120, 255, 0.16), transparent 58%),
    radial-gradient(circle at 55% 75%, rgba(90, 255, 210, 0.10), transparent 55%),
    radial-gradient(circle at 45% 45%, rgba(255, 160, 120, 0.08), transparent 50%);
  filter: blur(26px);
}

@media (prefers-reduced-motion: no-preference) {
  .space-nebula {
    animation: nebulaDrift 80s ease-in-out infinite;
  }
}

/* Mond oder Planet */
.space-planet {
  position: fixed;
  top: 12%;
  right: 8%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 15;
  opacity: 1;

  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.75), rgba(210,220,255,0.25) 55%, rgba(60,70,120,0.18) 100%);
  box-shadow: 0 0 22px rgba(210, 220, 255, 0.18), 0 0 55px rgba(210, 220, 255, 0.10);
}

/* Mond Krater */
.space-planet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 36%, rgba(30, 35, 70, 0.12) 0, rgba(30,35,70,0) 35%), radial-gradient(circle at 42% 58%, rgba(30, 35, 70, 0.10) 0, rgba(30,35,70,0) 38%), radial-gradient(circle at 65% 62%, rgba(30, 35, 70, 0.09) 0, rgba(30,35,70,0) 32%), radial-gradient(circle at 35% 34%, rgba(30, 35, 70, 0.07) 0, rgba(30,35,70,0) 30%);
  mix-blend-mode: saturation;
  opacity: 0.95;
}


@media (max-width: 640px) {
  .space-planet {
    width: 62px;
    height: 62px;
    top: 10%;
    right: 6%;
    opacity: 0.82;
  }
}


/* Sternschnuppen */
.shooting-star {
  position: fixed;
  top: -20%;
  left: -30%;
  width: 220px;
  height: 2px;
  pointer-events: none;
  z-index: -1;
  opacity: 0;

  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(140,200,255,0));
  filter: drop-shadow(0 0 10px rgba(140,200,255,0.35));
  transform: rotate(18deg);
}

@media (prefers-reduced-motion: no-preference) {
  .shooting-star {
    animation: shoot 9s ease-in-out infinite;
  }

  .shooting-star:nth-child(2) {
    animation-delay: 3.2s;
    transform: rotate(22deg);
  }

  .shooting-star:nth-child(3) {
    animation-delay: 6.4s;
    transform: rotate(14deg);
  }
}

/* Animationen */
@keyframes driftStars {
  from { background-position: 0 0; }
  to { background-position: 220px 440px; }
}

@keyframes pulseStars {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 0.95; }
}

@keyframes nebulaDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -2%) scale(1.03); }
}

@keyframes shoot {
  0% {
    opacity: 0;
    transform: translate(-40vw, -20vh) rotate(18deg);
  }
  10% {
    opacity: 0.85;
  }
  25% {
    opacity: 0;
    transform: translate(120vw, 85vh) rotate(18deg);
  }
  100% {
    opacity: 0;
    transform: translate(120vw, 85vh) rotate(18deg);
  }
}


@media (prefers-reduced-motion: no-preference) {
  body::before {
    animation: stars 120s linear infinite;
  }
}

@keyframes stars {
  from { background-position: 0 0; }
  to { background-position: 300px 600px; }
}


#galaxy-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}


.galaxy-spiral{
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  opacity: 0.9;

  background-repeat: no-repeat;
  background-position: 12% 22%;
  background-size: 520px 520px;

  filter: blur(0.2px);
  transform-origin: 12% 22%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cdefs%3E%3CradialGradient id='core' cx='50%25' cy='50%25' r='60%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='0.55'/%3E%3Cstop offset='35%25' stop-color='%23b6f7ff' stop-opacity='0.25'/%3E%3Cstop offset='70%25' stop-color='%239f7bff' stop-opacity='0.12'/%3E%3Cstop offset='100%25' stop-color='%23000000' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='mint' cx='45%25' cy='50%25' r='70%25'%3E%3Cstop offset='0%25' stop-color='%237fffd4' stop-opacity='0.0'/%3E%3Cstop offset='55%25' stop-color='%237fffd4' stop-opacity='0.16'/%3E%3Cstop offset='100%25' stop-color='%237fffd4' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='violet' cx='55%25' cy='50%25' r='70%25'%3E%3Cstop offset='0%25' stop-color='%23caa3ff' stop-opacity='0.0'/%3E%3Cstop offset='55%25' stop-color='%23caa3ff' stop-opacity='0.18'/%3E%3Cstop offset='100%25' stop-color='%23caa3ff' stop-opacity='0'/%3E%3C/radialGradient%3E%3Cfilter id='soft'%3E%3CfeGaussianBlur stdDeviation='1.6'/%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23soft)'%3E%3Cpath d='M260 260 C340 240 420 290 410 360 C400 430 300 470 230 430 C160 390 140 300 200 250 C265 200 360 200 380 260' fill='none' stroke='%239f7bff' stroke-opacity='0.25' stroke-width='22' stroke-linecap='round'/%3E%3Cpath d='M260 260 C330 220 405 250 405 315 C405 380 330 420 260 395 C190 370 170 300 215 255 C265 210 335 215 360 255' fill='none' stroke='%237fffd4' stroke-opacity='0.22' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M260 260 C310 245 350 270 348 305 C346 340 305 360 268 350 C230 340 215 300 240 278 C265 255 300 255 312 278' fill='none' stroke='%23ffd6fa' stroke-opacity='0.14' stroke-width='14' stroke-linecap='round'/%3E%3Ccircle cx='260' cy='260' r='180' fill='url(%23violet)'/%3E%3Ccircle cx='260' cy='260' r='190' fill='url(%23mint)'/%3E%3Ccircle cx='260' cy='260' r='155' fill='url(%23core)'/%3E%3C/g%3E%3C/svg%3E");
}

}

@media (prefers-reduced-motion: no-preference){
  .galaxy-spiral{
    animation: galaxyFloat 10s ease-in-out infinite, galaxySpin 70s linear infinite;
  }
}

@keyframes galaxySpin{
  from{ transform: rotate(0deg) scale(1); }
  to{ transform: rotate(360deg) scale(1); }
}

@keyframes galaxyFloat{
  0%{ opacity: 0.78; }
  50%{ opacity: 0.95; }
  100%{ opacity: 0.78; }
}



.space-galaxy {
  position: fixed;
  left: 10%;
  top: 22%;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: -2;
  opacity: 0.55;
  filter: blur(0.6px);
  transform: rotate(-12deg);
  border-radius: 50%;

  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 42%),
    conic-gradient(
      from 10deg,
      rgba(140,200,255,0.00) 0deg,
      rgba(140,200,255,0.14) 30deg,
      rgba(255,180,210,0.10) 60deg,
      rgba(255,230,170,0.08) 90deg,
      rgba(140,255,210,0.10) 120deg,
      rgba(140,200,255,0.12) 150deg,
      rgba(140,200,255,0.00) 360deg
    );
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 0, rgba(0,0,0,0) 72%);
}

@media (prefers-reduced-motion: no-preference) {
  .space-galaxy {
    animation: galaxySpin 60s linear infinite;
  }
}

@keyframes galaxySpin {
  from { transform: rotate(-12deg) scale(1); }
  to   { transform: rotate(348deg) scale(1); }
}

@media (max-width: 640px) {
  .space-galaxy {
    width: 190px;
    height: 190px;
    left: 6%;
    top: 18%;
    opacity: 0.45;
  }
}

.btn-sample {
  background: linear-gradient(90deg, #38d6ff, #7b5cff);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}


/* Skip Link für Tastatur Nutzer */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #050814;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.card {
  width: 100%;
  max-width: 860px;
  padding: 32px 28px 24px;
    background: rgba(0,0,0,0.6);
  border-radius: 24px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04);
	z-index:100;
}

.card.center {
  text-align: center;
}

.card.left {
  text-align: left;
}

 .card.wide {
  max-width: 860px;
}

.logo {
  margin-bottom: 24px;
}

.logo img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.subtitle {
  font-size: 14px;
  color: #c6d0ff;
  opacity: 0.9;
  margin-top: 6px;
  margin-bottom: 10px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 20px;
}

.link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    opacity 0.22s ease;
}

.link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.0) 0,
    rgba(255, 255, 255, 0.25) 50,
    rgba(255, 255, 255, 0.0) 100
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.link-btn .icon {
  font-size: 16px;
}

.link-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(255, 255, 255, 0.15);
  filter: brightness(1.05);
  opacity: 0.97;
}

.link-btn:hover::before {
  left: 120%;
}

.link-btn:active {
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  filter: brightness(0.97);
}

/* Sichtbarer Fokus für Tastatur Bedienung */
.link-btn:focus-visible,
.back:focus-visible,
.imprint a:focus-visible {
  outline: 3px solid rgba(90, 200, 255, 0.9);
  outline-offset: 3px;
}

.btn-book-main {
  background: linear-gradient(90deg, #ff4b5c, #ff7b4b);
}

.btn-book-activity {
  background: linear-gradient(90deg, #ffb36b, #f065e5);
}

.btn-book-color {
  background: linear-gradient(90deg, #905cff, #5ac8ff);
}

.btn-website {
  background: linear-gradient(90deg, #111111, #222222);
}

.btn-mail {
  background: linear-gradient(90deg, #27dcbc, #2ba8ff);
}

.note {
  font-size: 13px;
  color: #a0aac8;
  margin-bottom: 8px;
}

.copyright {
  font-size: 11px;
  color: #6c7696;
  opacity: 0.9;
}

.imprint {
  margin-top: 6px;
  font-size: 11px;
  text-align: center;
}

.imprint a {
  color: #8f98c8;
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.imprint a:visited {
  color: #8f98c8;
}

.imprint a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
}

.imprint a:active {
  color: #c6d0ff;
}

/* Impressum Seite */
h1 {
  font-size: 24px;
  margin-bottom: 18px;
  text-align: center;
 /* text-shadow:
    0 0 10px rgba(101, 248, 175, 0.7),
    0 0 24px rgba(84, 164, 255, 0.5);*/
}

h2 {
  font-size: 16px;
  margin: 14px 0 10px;
  color: #ffffff;
}

h3 {
  font-size: 14px;
  margin: 12px 0 6px;
  color: #ffffff;
}

p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #d6dcff;
}

.back {
  display: block;
  margin-top: 22px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(90deg, #27dcbc, #2ba8ff);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
  .card {
    margin: 16px;
    padding: 24px 18px 18px;
  }
  
 

  .link-btn {
    font-size: 14px;
    padding: 12px 14px;
  }
}

.divider {
  width: 100%;
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.0),
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.0)
  );
}

.about, .characters, .preview {
  margin-top: 18px;
  text-align: left;
}

.about h2, .characters h2, .preview h2 {
  font-size: 16px;
  margin: 14px 0 10px;
  color: #ffffff;
}

.characters h3 {
  font-size: 14px;
  margin: 12px 0 6px;
  color: #ffffff;
}

.preview-note {
  font-size: 13px;
  color: #a0aac8;
  margin-bottom: 12px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.preview-grid figure {
  margin: 0;
}

.preview-grid a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.preview-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.preview-grid figcaption {
  font-size: 12px;
  color: #a0aac8;
  margin-top: 6px;
  text-align: center;
}

.characters-boxes {
  margin-top: 18px;
  text-align: left;
}

.characters-boxes h2 {
  font-size: 16px;
  margin: 14px 0 10px;
  color: #ffffff;
}

.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.character-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.character-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}


.character-title h3 {
  font-size: 14px;
  margin: 0 0 4px;
  color: #ffffff;
}

.character-sub {
  font-size: 12px;
  color: #a0aac8;
  margin: 0;
  line-height: 1.4;
}

.character-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #d6dcff;
  margin-bottom: 10px;
}

.character-box p:last-child {
  margin-bottom: 0;
}

.characters {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.character-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.character-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  padding: 10px;
  box-shadow:
    0 20px 55px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.mic-feature {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  align-items: center;
  margin: 22px 0 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mic-img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.65));
  opacity: 0.9;
}
}

.mic-feature p {
  margin: 0;
  line-height: 1.65;
  color: #d6dcff;
}


.mic-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mic-note img {
  width: 50px;
  height: auto;
  opacity: 0.85;
  margin-top: 2px;
}



@media (max-width: 560px) {
  .character-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .character-img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .character-text h3,
  .character-text p {
    text-align: left;
	
  }

  .mic-feature {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mic-img {
    width: 110px;
    margin: 0 auto;
  }
}
  }
}


/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .link-btn,
  .link-btn::before,
  .back,
  .imprint a {
    transition: none;
  }

  .link-btn:hover {
    transform: none;
  }

  .link-btn:hover::before {
    left: -120%;
  }

}
