    :root {
      --bg: #0b0b0f;
      --card: rgb(255 255 255 / 0%);
      --border: rgb(255 255 255 / 10%);
      --text: #ffffff;
      --muted: #a1a1aa;
      --accent1: #7c3aed; /* lila */
      --accent2: #22d3ee; /* cyan */
      --accent3: #facc15; /* gelb */
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      text-decoration: none;
    }

body {
   font-family: 'Inter', sans-serif;
   background: url("/img/ImgBag1.png");
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   color: var(--text);
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 24px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.4) 40%,rgba(0,0,0,0.2) 100%);
  z-index: 0;
}
.page-container {
  position: relative;
  z-index: 1;
}
.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.logo {
  margin-bottom: 24px;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

    .logo span {
      background: linear-gradient(90deg, var(--accent1), var(--accent2));
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .subtitle {
      color: var(--muted);
      margin-top: 6px;
      font-size: 0.95rem;
    }

    .links {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 14px;
    }

    .link {
      position: relative;
      padding: 18px 20px;
      border-radius: 16px;
      background: var(--card);
      border: 1px solid var(--border);
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      backdrop-filter: blur(12px);
    }
    

    .link::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      background: linear-gradient(120deg, var(--accent1), var(--accent2), var(--accent3));
      opacity: 0;
      transition: opacity 0.25s ease;
      z-index: -1;
    }
    

    .link:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 10px 30px rgba(0,0,0,0.45),
        0 0 18px rgba(124,58,237,0.35);
      background: rgba(255,255,255,0.14);
    }
    

    .link:hover::before {
      opacity: 0.35;
    }

    .link small {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 400;
    }

    footer {
      margin-top: 36px;
      font-size: 0.75rem;
      color: var(--muted);
    }
    coming {
	 font-size: 0.8rem;
}
    /* Text alignment fix */
    .text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .title {
      font-weight: 600;
      line-height: 1.2;
    }

    .desc {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.2;
    }
   
    @media (max-width: 380px) {
      .logo h1 { font-size: 1.6rem; }
    }
	/* Nur Smartphones */
	@media (max-width: 800px) {
	  body {
    background-image: url("/img/BgoT.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	  }
	}

	/* Tablets */
	@media (min-width: 700px) and (max-width: 1024px) {
	  body {
		background-position: center center;
	  }
	}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  background: rgb(0 0 0 / 50%);
  border: 1px solid rgb(0 0 0 / 25%);
  border-radius: 14px;
  padding: 14px;
  color: #fff;
}

.contact-form button {
  background: linear-gradient(135deg, #ff3d3d, #b84bff);
  border: none;
  border-radius: 16px;
  padding: 14px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

/* Erfolg */
.success-section {
  text-align: center;
  padding: 40px 20px;
}

.mail-animation {
  font-size: 64px;
  animation: fly 1.2s ease-out forwards;
}

@keyframes fly {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.back-button {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
.startseite {
  background: linear-gradient(135deg, #b84bff, #ff3d3d);
  border: none;
  border-radius: 16px;
  padding: 14px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
}

/* BuddyPrints3D Gradient */
.buddyprints3d {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: none;

  /* Gradient-Farbe */
  background: linear-gradient(120deg, var(--accent1), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* leichter Neon-Glow*/
  text-shadow:
    0 5px 10px rgba(52, 211, 255, 0.18),
    0 5px 14px rgba(178, 76, 255, 0.14);
}
/* ===========================
   Contact submit overlay
   =========================== */
.send-overlay { 
  display: grid;            /* Layout wenn aktiv */
  position: fixed;
  inset: 0;
  place-items: center;
  z-index: 9999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
} 
.send-overlay { display: none; }
.send-overlay.is-open { display: grid; }

/* Hidden gewinnt immer */
.send-overlay[hidden] { display: none !important; }

.send-card{
  width: min(420px, 92vw);
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(20,20,20,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  text-align: center;
}

.send-title{
  font-weight: 800;
  font-size: 18px;
  margin-top: 12px;
}

.send-sub{
  opacity: .78;
  margin-top: 6px;
  font-size: 14px;
}

.send-icon{
  width: 54px;
  height: 54px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.plane{
  width: 18px;
  height: 18px;
  border-right: 3px solid rgba(255,255,255,.9);
  border-bottom: 3px solid rgba(255,255,255,.9);
  transform: rotate(-45deg);
  animation: fly 1s ease-in-out infinite;
}

@keyframes fly{
  0%   { transform: translateX(-10px) rotate(-45deg); opacity:.5; }
  50%  { transform: translateX(10px) rotate(-45deg); opacity:1; }
  100% { transform: translateX(-10px) rotate(-45deg); opacity:.5; }
}

.send-card.success .plane{
  animation: none;
  transform: rotate(-45deg) scale(1.05);
}
/* ===========================
   Socials auf dem Index
   =========================== */

.socials{
  display:flex;
  gap:14px;
  margin-top:26px;
}

.social-link{
  padding: 16px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  display: flex;
  flex:1;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(12px);
}

.social-link img{
  width:22px;
}

.social-text .title{
  font-weight:700;
  font-size:.9rem;
}

.social-text .desc{
  font-size:.75rem;
  color:var(--muted);
}


.social-link:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 10px 30px rgba(0,0,0,0.45);
}

.instagram::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--accent1), var(--accent2), var(--accent3));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
 }

.instagram:hover{
  transform: translateY(-3px) scale(1.01);
  box-shadow:
  0 0 0 1px rgba(255,255,255,0.08),
  0 10px 30px rgba(0,0,0,0.45),
  0 0 20px rgba(221,42,123,0.5);
}
.instagram:hover::before {
  opacity: 0.35;
  
}

.tiktok::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--accent1), var(--accent2), var(--accent3));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
 }

.tiktok:hover{
  transform: translateY(-3px) scale(1.01);
  box-shadow:
  0 0 0 1px rgba(255,255,255,0.08),
  0 10px 30px rgba(0,0,0,0.45),
  -5px 0 20px rgba(37,244,238,0.5),
  5px 0 20px rgba(254,44,85,0.5);
}
.tiktok:hover::before {
  opacity: 0.35;
  
}


