*, html {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  scrollbar-width: thin;
  scrollbar-color: #349ce7 black;
  scroll-behavior: smooth;
}

:-webkit-scrollbar {
  width: 1vh;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background-color: #349ce7;
  border-radius: 2vh;
}

::-moz-selection {
  background-color: #349ce7;
  color: white;
}

::selection {
  background-color: #349ce7;
  color: white;
}

body {
  background-color: #06111d;
  color: white;
  min-height: 100%;
  max-width: 100vw;
}

.navbar {
  position: fixed;
  z-index: 999;
  background-color: rgba(6, 17, 29, 0.5); /* SCSS-Syntax entfernt */
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  height: 100px;
  display: flex; /* wichtig! */
  align-items: center; /* vertikale Zentrierung */
  gap: 0px; /* Abstand zwischen Logo & Titel */
}

.navbar p {
  margin-top: auto;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.logo {
  padding: 10px;
  max-height: 80px;
  width: auto;
}

.title {
  margin-left: 25px;
  color: white;
  background: #1788D8;
  background: linear-gradient(to bottom, #1788D8 0%, #5BB6FC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.header {
  position: relative;
  display: block;
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: url("../img/wallpaper.png") no-repeat center/cover;
  height: 90vh;
}

.overlay {
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(6, 17, 29, 0.5);
}

.textbox {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -80%);
  text-align: center;
}

.fade-in {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0) linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #06111d 80%);
}

.fade {
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0) linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #06111d 80%);
}

.textbox h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

header h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.cta-buttons a {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.play-btn {
  background-color: #3b82f6;
  color: #fff;
}

.trailer-btn {
  background-color: #1f2937;
  color: #fff;
}

.sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 1rem;
}

.card {
  background-color: #1e293b;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 300px;
  text-align: center;
}

.card i {
  font-size: 3rem;
  background-color: gray;
  line-height: 5rem;
  width: 5rem;
  border-radius: 10%;
}

.card h2 {
  margin-top: 1rem;
}

.full-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 1rem;
}

.community-card {
  max-width: 960px;
  width: 100%;
}

.community-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.community-features p {
  font-size: 1rem;
}

.community-feature {
  border-radius: 8px;
  padding: 1rem;
  flex: 1;
  min-width: 120px;
  max-width: 300px;
  text-align: center;
}

.community-feature i {
  font-size: 5rem;
  background-color: transparent;
  color: gray;
  line-height: 5rem;
  width: 5rem;
  border-radius: 10%;
}

.community-feature div {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.custom-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 960px;
  margin: 2rem auto;
  gap: 1rem;
}

.gallery-left, .gallery-right {
  display: flex;
  flex-direction: column;
}

.gallery-left {
  flex: 2;
}

.gallery-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.gallery-right {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.gallery-right img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .custom-gallery {
    flex-direction: column;
    padding: 0 1rem;
  }
  .gallery-right {
    grid-template-columns: 1fr 1fr;
  }
}
footer {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 5vw;
  padding: 3vw;
  box-shadow: 0 0vw 1vw 0vw black;
  height: 10vh;
  padding: 3vw 8vw 3vw 8vw;
}

.footer-text {
  font-size: 1.5rem;
  float: center;
}

.footer-logo {
  float: center;
}

.footer-logo img {
  height: 8vh;
  width: auto;
  margin-left: 2vw;
}

.footer-text a {
  color: #349ce7;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */