* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'VT323', monospace;
  font-weight: 200;
  color: #fef9eb;
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #19202a url('../assets/img/animated_bg.svg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header,
footer {
  background: #19202a70;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px #0001;
  border-radius: 8px;
}

main {
  overflow: auto;
  flex: 1;
}

.section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 30px;
}

/* Scrollbar Styles */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

body {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
}

@media (max-width: 650px) {
  .section-wrapper {
    padding: 20px 5px 0;
  }
}

@media (max-width: 420px) {
  .section-wrapper {
    padding: 20px 5px 0;
  }
}
