.impressum-footer {
  background-color: #1f1a1767;
  color: #e6e0dc;
  padding: 30px 20px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  animation: slideUP 0.8s;
  text-align: center;
}

.impressum-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.impressum-logo img {
  height: 60px;
}

.impressum-text p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.impressum-text a {
  color: #e6e0dc;
  text-decoration: underline;
}

.impressum-icons a {
  margin-left: 15px;
  font-size: 1.5rem;
  color: #e6e0dc;
  transition: color 0.3s ease;
}

.impressum-icons a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .impressum-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .impressum-icons {
    margin-top: 10px;
  }
}

@keyframes fadeOutParticle {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #1e0033, #3a0066);
  color: #fff;
  overflow-x: hidden;
}

.background-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 10s infinite linear;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 32px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: white;
  z-index: 1000;

  animation: slideDown 0.8s ease-out;
  transition: all 0.25s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes slideUP {
  from {
    transform: translateY(100%);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.navbar img {
  height: 40px;
}

.navbar a {
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s;
  cursor: pointer;
}

a.split-cardo:link {
  color: rgb(138, 91, 173);
  background-color: transparent;
  text-decoration: none;
}

.navbar a:hover {
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/images/backgroundimage.png");
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
  padding-top: 60px;
  text-align: center;
  z-index: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.392);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-text,
.hero-text2,
.mitspielen-button {
    position: relative;
    z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  z-index: -1;
}

.hero-text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 6rem;
  font-weight: 900;
  color: white;
  transition: opacity 1s ease;
  animation: fadeIn 2s ease-out;
}

.hero-text2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  transition: opacity 1s ease;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mitspielen-button {
  padding: 10px 25px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.1rem;
  font-weight: 600;
  background:#a64cff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  animation: fadeIn 2s ease-out 0.4s both;
}

.mitspielen-button:hover {
  background: #8453d4;
  padding: 13px 28px;
}

.mitspielen-button.clicked {
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.split-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;

  background: #3a0066;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;

  overflow: hidden;

  opacity: 0;
  transform: translateY(24px);

  transition: opacity 1s ease, transform 0.5s ease;
}

.split-card.show {
  opacity: 1;
  transform: translateY(0);
}

.split-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.split-image {
  height: 300px;
  background: url("/images/skibididdodopdopdopdopdodopodpopd.jpg") center center/cover no-repeat;
}
.split-imageb {
  height: 300px;
  background: url("/images/toptopotp.png") center center/cover no-repeat;
}
.split-imagec {
  height: 300px;
  background: url("/images/skibidididiidpdiiy.png") center center/cover no-repeat;
}
.split-imaged {
  height: 300px;
  background: url("/images/backgroundimage.png") center center/cover no-repeat;
}
.split-imagee {
  height: 300px;
  background: url("/images/skibidisigmato.jpg") center center/cover no-repeat;
}
.split-imagef {
  height: 300px;
  background: url("/images/abasfetterbigmac.png") center center/cover no-repeat;
}
.split-imageg {
  height: 300px;
  background: url("/images/skibidi whatsapp bild.jpg") center center/cover no-repeat;
}

.split-content {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.02);
  color: white;
}

.split-content h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.split-content p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  margin: 10px 0;
  line-height: 1.6;
  font-size: 0.97rem;
}

.discord-button {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #8e44ff;
  text-decoration: none;
  border: none;
  color: white;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.discord-button:hover {
  background-color: #7a3ddc;
}

.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1001;
}

.popup.show {
  opacity: 1;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
}

.row .split-card {
  max-width: 600px;
  flex: 1 1 400px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a64cff, #663399);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c266ff, #7a3ddc);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #a64cff rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 3rem;
  }
  .hero-text2 {
    font-size: 1.3rem;
  }

  .mitspielen-button {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .split-card {
    flex-direction: column;
    margin: 0 auto;
  }

  .split-content {
    padding: 20px;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .navbar a {
    display: inline-block;
    margin: 8px 10px 0 0;
    font-size: 0.7rem;
  }

  .row {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .background-dots {
    display: none;
  }

  .popup {
    font-size: 0.9rem;
    bottom: 10px;
    right: 10px;
  }
}