
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  background-color: #000;
  color: #ffa500;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  color: #ff8c00;
  text-shadow: 0 0 8px #ff8c00;
  /*margin-bottom: 1rem; */
}



h2 {
    font-size: 2rem !important;
    color: #ff8c00;
    text-shadow: 0 0 8px #ff8c00;
    margin-bottom: 1rem;
  }


.card {
  background: rgba(0, 0, 0, 0.2); /* transparentes Schwarz */
  border: 1px solid #ff6600;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 0 10px #ff6600;
  transition: transform 0.3s ease;
}

/*.card {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}
*/
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
  }


button, .btn {
  background: linear-gradient(145deg, #ff8c00, #ff4500);
  border: none;
  padding: 10px 20px;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 8px #ff6600;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background: linear-gradient(145deg, #ffa500, #ff6347);
  box-shadow: 0 0 12px #ff8c00;
  color: black !important;
}

a {
  color: #ffa500;
  text-decoration: none;
}

a:hover {
  color: #ff4500;
  text-shadow: 0 0 5px #ff4500;
}

section {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px #ff6600;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.server-grid .card {
  background: #111;
}

.team-avatar {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  border: 4px solid #ff8c00;
  box-shadow: 0 0 10px #ff8c00;
  object-fit: cover;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.team-card img {
  border-radius: 50%;
  border: 3px solid #ff6600;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}


/* Farbvarianten */
.team-avatar.owner {
  border-color: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}

.team-avatar.dev {
  border-color: #fbbf24; /* gelb */
  box-shadow: 0 0 10px #fbbf24;
}

.team-avatar.admin {
  border-color: #3b82f6; /* blau */
  box-shadow: 0 0 10px #3b82f6;
}

.contact-box {
  background: #111;
  border: 1px solid #ffa500;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px #ffa500;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #ff6600;
  }
  50% {
    box-shadow: 0 0 20px #ff6600;
  }
  100% {
    box-shadow: 0 0 5px #ff6600;
  }
}
.glow {
  animation: glow 2s infinite;
}

#backgroundVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
  }


  #videoBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }

  #backgroundVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #videoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
  }




  body {
    background: #0f0f0f;
    color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
  }





#backgroundVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 768px) {
  #videoBackground {
    display: none;
  }
}


@media (max-width: 768px) {
  body {
    background-color: #000000 !important;
  }
  #videoBackground {
    display: none;
  }
}


@media (max-width: 768px) {
  body {
    background-color: #000 !important;
  }
}

  .status-green { color: #22c55e; }
  .status-red { color: #ef4444; }




#backgroundVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
    background: transparent;
  }
  
  .card,
  .team-card,
  .contact-box {
    background: rgba(0, 0, 0, 0.2);
  }

  html {
    scroll-behavior: smooth;
  }


  .gallery-section {
    text-align: center;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border: 2px solid #ff8c00;
    border-radius: 8px;
    box-shadow: 0 0 10px #ff8c00;
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  
  .server-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .server-card {
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.15);
    position: relative;
  }
  
  .server-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .server-card:hover::after {
    opacity: 1;
  }
  
  .server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.3);
  }
  
  .card-header {
    position: relative;
    height: 150px;
    overflow: hidden;
  }
  
  .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .server-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #22c55e;
    color: white;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 0 5px #22c55e;
  }
  

  .server-card.rust-modern {
    background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    border: 2px solid #ff6600;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .server-card.rust-modern:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.5);
  }
  
  .server-card .card-header {
    position: relative;
    height: 140px;
    overflow: hidden;
  }
  
  .server-card .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .server-status-modern {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #22c55e;
    color: white;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 0 5px #22c55e;
  }
  
  .server-specs-modern i {
    color: #ffa500;
  }
  

  /*
  .card {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    box-shadow: 0 0 10px #ff8c00;
  }
  */
  .glow-card {
    border: 1px solid #ff8c00;
    box-shadow: 0 0 12px #ff8c00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .glow-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #ff8c00;
  }
  
  
  

  .server-details {
    border: 1px solid #ff8c00;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px #ff8c00;
    padding: 16px;
  }

  .discord img,
  .vote img {
    width: 24px;
    height: 24px;
  }

  .news-card {
    text-align: center;
  }
  
  .news-card img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .news-card h3,
  .news-card p {
    text-align: center;
  }
  
  
  .news-card p {
    text-align: center;
  }


  

  .server-grid .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  @media (max-width: 768px) {
    .card-button {
      width: 100%;
    }
  }
  

  /*.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  */
  /* Der Inhaltsteil oben */
  .card > div:first-child {
    flex-grow: 1;
  }
  
  /* Der Button-Footer */
  .card-footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .card-button {
    width: 90%;
    max-width: 240px;
    min-height: 45px; /* gleiche Höhe */
    min-width: 180px; /* zwingt auch kurze Buttons zu einer Basisbreite */
    text-align: center;
  }