* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    background:
      radial-gradient(circle at top left, #DE66FF14, transparent 60%),
      radial-gradient(circle at bottom right, #008C9F14, transparent 60%),
      linear-gradient(to bottom, #1a1a1a 0%, #0f0f0f 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* ← hinzufügen */
    align-items: center;     /* ← hinzufügen */
    padding-top: 3rem;
    overflow-x: hidden;
  }
  
  
  /* Diagonale Streifen links/rechts */
  body::before,
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 40px;
    background-image: repeating-linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0px,
      rgba(0, 0, 0, 0.1) 8px,
      transparent 8px,
      transparent 16px
    );
    z-index: 0;
    pointer-events: none;
  }
  
  body::before {
    left: 0;
    box-shadow: inset 5px 0 20px #DE66FF14;
  }
  
  body::after {
    right: 0;
    box-shadow: inset -5px 0 20px #008C9F14;
  }
  
  /* Inhalt oben halten */
  .container {
    position: relative;
    z-index: 1;
  }
  
  
  
  .container {
    max-width: 700px;
    width: 100%;
    padding: 0 1.2rem;
  }
  
  /* Header */
  .header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -4vw;
  }
  
  .site-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  
  .site-title {
    font-size: 2.2rem;
    margin-top: -2vw;
  }
  
  .site-description {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.3rem;
  }
  
  /* Project Box */
  .project-box {
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(50% 50% at 50% 50%, #393939 0%, #575757 100%);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.2rem;
    cursor: pointer;
    border: 2px solid #767676;
    transition: .3s;
  }
  
  .project-box:hover {
    transform: scale(0.98);
    background: radial-gradient(50% 50% at 50% 50%, #575757 0%, #767676 100%);
    border: 2px solid #a3a3a3;
}

  .project-type {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
    opacity: 0.95;
    letter-spacing: 0.5px;
  }
  

  .project-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 1rem;
  }
  
  .project-info {
    flex: 1;
  }
  
  .project-name {
    font-size: 1.15rem;
    font-weight: 600;
  }
  
  .project-description {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 0.25rem;
  }
  
  /* Modal */
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .modal-content {
    background: radial-gradient(50% 50% at 50% 50%, #393939 0%, #575757 100%);
    border-radius: 16px;
    border: 2px solid #767676;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
    overflow: visible;
  }
  
  .modal-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  .modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 42px;
    height: 42px;
    background: #2c2c2c;
    border: 2px solid #767676;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 2;
  }
  
  .modal-close:hover {
    background: #5c5c5c;
    border: 2px solid #cecece;
    transform: scale(1.1) rotate(5deg);
  }
  
  .modal-close svg {
    width: 20px;
    height: 20px;
  }
  
  
  
  
  
  #modalText {
    margin-bottom: 1.5rem; /* Abstand nach unten zum Button */
  }
  
  .modal-button {
    margin-top: 3vw;
    padding: 0.6rem 1.4rem;
    background: radial-gradient(50% 50% at 50% 50%, #575757 0%, #595959 100%);
    border: 2px solid #a7a7a7;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: .3s;
  }
  
  .modal-button:hover {
    transform: scale(0.98);
    background: radial-gradient(50% 50% at 50% 50%, #666666 0%, #9f9f9f 100%);
    border: 2px solid #cecece;
}
  
  .hidden {
    display: none;
  }
  .bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  .visitor-counter {
    background: radial-gradient(50% 50% at 50% 50%, #393939 0%, #575757 100%);
    border-radius: 16px;
    border: 2px solid #767676;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    color: #ccc;
  }
  
  .social-boxes {
    display: flex;
    gap: 1rem;
  }
  
  .social-box {
    background: radial-gradient(50% 50% at 50% 50%, #393939 0%, #575757 100%);
    border-radius: 16px;
    border: 2px solid #767676;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: .3s;
  }
  
  .social-box img {
    width: 24px;
    height: 24px;
    filter: brightness(0.9);
  }
  
  .social-box:hover {
    transform: scale(0.98);
    background: radial-gradient(50% 50% at 50% 50%, #575757 0%, #767676 100%);
    border: 2px solid #a3a3a3;
  }
  
  .project-box.coming-soon {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
  }
  
  .coming-soon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }


  
  /* Mobile */
  @media (max-width: 500px) {
    .site-title {
      font-size: 1.6rem;
    }
    .project-logo {
      width: 50px;
      height: 50px;
    }
    .project-name {
      font-size: 1rem;
    }
    .project-description {
      font-size: 0.85rem;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
  }
  .container::after {
    content: "";
    display: block;
    height: 100px; /* oder 150px – je nach Geschmack */
  }
  