* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
  }
  
  body {
    min-height: 100vh;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
  }
  
  .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(-45deg, #2e003e, #6e00a3, #2c0036, #1a001f);
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
  }
  
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
  }
  
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .container {
    text-align: center;
    padding: 4rem 1rem;
  }
  
  .container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e0b3ff;
    text-shadow: 0 0 10px #8800cc;
  }
  
  .container p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d1a3ff;
  }
  
  .button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: rgba(138, 43, 226, 0.2);
    color: #fff;
    text-decoration: none;
    border: 2px solid #bb44ff;
    border-radius: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    font-size: 1rem;
    box-shadow: 0 0 8px #bb44ff55;
  }
  
  .btn:hover {
    transform: scale(1.08);
    background: rgba(200, 100, 255, 0.3);
    box-shadow: 0 0 15px #e066ff;
    border-color: #e066ff;
  }
  
  .footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: #d9b3ff;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
  }
  
  .footer-icon {
    display: inline-block;
    margin-right: 0.5rem;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  .destruct-section {
  margin-top: 3rem;
  text-align: center;
}

#destruct-btn {
  background: #ff0066;
  color: white;
  padding: 1rem 2rem;
  border: none;
  font-size: 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px #ff3399;
}

#destruct-btn:hover {
  background: #cc0052;
  box-shadow: 0 0 20px #ff3399;
}

/* Wenn aktiviert */
body.selfdestruct {
  animation: shake 0.4s infinite, glitchBackground 0.8s infinite;
  filter: contrast(2) brightness(0.8) saturate(2) hue-rotate(90deg);
}

@keyframes shake {
  0% { transform: translate(2px, 2px); }
  25% { transform: translate(-2px, 3px); }
  50% { transform: translate(3px, -2px); }
  75% { transform: translate(-1px, -3px); }
  100% { transform: translate(0, 0); }
}

@keyframes glitchBackground {
  0% { background-position: 0 0; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0 0; }
}

.rickroll {
    background: rgba(255, 0, 255, 0.1);
    border-color: #ff66ff;
    color: #ffccff;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .rickroll:hover {
    background: rgba(255, 0, 255, 0.3);
    border-color: #ff99ff;
    color: #fff;
    box-shadow: 0 0 12px #ff66ff;
    transform: scale(1.1) rotate(-1deg);
  }
  
  