body {
  margin: 0;
  background: black;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* BACKGROUND */
#bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  filter: blur(18px) brightness(0.6);
  z-index: 1;
}

/* OVERLAY */
#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

/* PHOTO */
#photo {
  position: absolute;
  max-width: 88%;
  max-height: 88%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 3;
  transition: opacity 0.5s ease;
}

/* TEXT */
#time, #date, #weather, #forecast, #rss {
  position: absolute;
  z-index: 4;
  text-shadow: 0 0 12px rgba(0,0,0,0.9);
}

/* TIME */
#time {
  top: 15px;
  left: 25px;
  font-size: 56px;
  font-weight: 600;
}

#date {
  top: 80px;
  left: 25px;
  font-size: 22px;
  opacity: 0.85;
}

/* WEATHER */
#weather {
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 600;
}

#forecast {
  top: 90px;
  right: 25px;
  font-size: 20px;
  line-height: 1.6;
}

/* RSS */
#rss {
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  background: rgba(0,0,0,0.6);
  padding: 10px 0;
  font-size: 20px;
  animation: scroll 40s linear infinite;
}

/* SCROLL */
@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}