body {
  margin: 0px;
  padding: 0px;
  overflow-y: auto;
  /* overflow-y: clip; */
  overflow-x: clip;
  
  /* Hintergrundbild */
  background: #000000 url("/img/Saturn.jpg") no-repeat local right top;
  
  /* Fixiert über oberen rechten Bildschirmrand hinaus */
  background-attachment: fixed;
  background-position: calc(100% + 20px) calc(-20px);
  background-size: 110% auto; /* leicht größer als Viewport */
  transition: background-position 0.1s ease-out; /* sanfte Bewegung */
}


/* Blur-Hintergrund-Layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: #000000 url("/img/Saturn.jpg") no-repeat right top;
  background-position: calc(100% + 20px) calc(-20px);
  background-size: 110% auto;

  filter: blur(2px);
  transform: scale(1.05); /* verhindert weiße Ränder durch Blur */
}

/* SEO Visually Hidden Feature */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#allContentContainer_OverallPositioner {
  margin: 0px auto 0px auto;
  padding: 0px;
  border-width: 0px;
  /* overflow-y: clip; */
  overflow-x: clip;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/*
.blogfeature {
  margin-top: 15px;
  height: 400px;
  width: 400px;
}
*/

/* .logo {
  margin-top: -80px;
} */

/*
.visualizer {
  margin-top: 0px;
  margin-bottom: 40px;
  width: 400px;
  border: 0px solid #fff
}
*/
/*
.player {
  margin-top: -120px;
  margin-bottom: 0px;
  padding-top: 15px;
  width: 400px;
  height: 180px;
  z-index: 5;
}


#nowplaying-container {
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  background-color: transparent;
  color: #aaa;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  width: 400px;
  box-sizing: border-box;
  margin-top: 15px;
}

#nowplaying {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

#nowplaying-container:hover #nowplaying {
  animation-play-state: paused;
}
*/

.footer {
  margin: 0px 0px 25px 0px;
  padding: 0px;
  width: 100%;
  max-width: inherit;
  border-width: 0px;
}

/*
.nyan {
  margin-top: 10px;
}
*/

.djs {
  color: #aaa;
  font-size: 10px;
  width: 400px;
  margin-top: 20px;
}

a {
  text-decoration: none;
  color: #37e4ea;
  filter: grayscale(100%);
  filter: grey;
  -webkit-filter: grayscale(100%);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

a:hover {
  text-decoration: underline;
  color: #37e4ea;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  filter: none;
  transition: 1s ease;
  -webkit-transition: 1s ease;
}

a img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

a img:hover {
  filter: grayscale(0%);
  filter: gray;
  -webkit-filter: grayscale(0%);
  filter: none;
  transition: 1s ease;
  -webkit-transition: 1s ease;
}

.pr a img {
  filter: blur(0px);
  padding: 0px;
  margin-top: -100px;
}

.pr a img:hover {
  filter: none;
  transition: 1s ease;
}

/*
.weather-widget {
  margin: 10px 0px 10px 0px;
  width: 100%;
  z-index: 4;
}
*/

.weather {
  width: 100%;
}

#weather-widget {
  font-family: Arial, sans-serif;
  background: none;
  color: #aaa;
  border: none;
  margin: 10px 0px 10px 0px;
  padding: 0px;
  width: 100%;
  text-align: center;
  overflow-y: clip;
  overflow-x: clip;
}

#location {
  font-size: 12px;
  font-style: italic;
  color: #aaa;
}

#temperature {
  font-size: 12px;
  font-weight: bold;
  color: #aaa;
}

#weather-description {
  font-size: 11px;
  font-style: italic;
  color: #aaa;
}

#weather-icon {
  display: none;
  height: 36px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

#weather-icon:hover {
  filter: grayscale(0%);
  filter: gray;
  -webkit-filter: grayscale(0%);
  filter: none;
  transition: 1s ease;
  -webkit-transition: 1s ease;
}




.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  background-color: transparent;
  color: #aaa;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  width: 100%;
  box-sizing: border-box;
  margin: 60px 0px 10px 0px;
  overflow-y: clip;
  overflow-x: clip;
  /* margin-top: -120px; */
  /* margin-bottom: 100px; */
}

.marquee {
  display: inline-block;
  padding-left: 20%;
  animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee {
  animation-play-state: paused;
  cursor: none;
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* Anpassung der Breite an den Viewport */
@media (max-width: 400px) {
  .marquee-container {
    font-size: 14px;
  }

}

@media (max-height: 725px) {
  .marquee-container {
    margin: 20px 0px 10px 0px;
  }
  .footer {
    margin: 0px 0px 25px 0px;
  }
}
