/* ===== Allgemeines Layout ===== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    height: 100%;
    background: transparent;
    overflow: hidden;
  }
  
  /* ===== Hintergrund-Video ===== */
  .background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-position: center center; /* Bild immer in der Mitte */
    background-size: cover; /* Bild immer deckend */
  }
  
  /* ===== Responsives Verhalten für mobile Ansicht ===== */
  @media (max-width: 600px) {
    .background-video {
      background-position: center center; /* Bild auch auf mobilen Geräten zentrieren */
      background-size: cover;
    }
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 0.4 = 40% dunkel, kannst du anpassen */
    z-index: 0;
  }
  /* ===== Container für Inhalt ===== */
  .container {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #00FFA3, #DC1FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
  }
  
  /* ===== Link Buttons ===== */
  .links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }

  .icons {
    color: #1DB954; /* Spotify-Grün */
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
  }
  .icont {
    color: #FE2C55; /*  */
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
  }
  .iconi {
    color: #E1306C; /* - */
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
  }
  .icony {
    color: #FF0000; /* - */
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
  }
  .icont {
    color: #00c4ba; /* - */
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
  }
  
  .links a {
    display: block;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: 0.2s ease-in-out;
  }
  
  .links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.03);
  }
  
  /* ===== Responsives Verhalten ===== */
  @media (max-width: 600px) {
    h1 {
      font-size: 2.2rem;
    }
    .links a {
      font-size: 0.95rem;
      padding: 12px;
    }
  }
  .impressum-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(50, 50, 50, 0.6);
    padding: 8px 16px;
    border-radius: 10px;
    text-align: center;
  }
  
  .impressum-box a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .impressum-box a:hover {
    text-decoration: underline;
  }
  