body {
  background-color: #0D0D0D;
}
.Lhud {
  position: absolute;
  left: 0;
  top: 0;  
  width: 30%;
  padding: 75px;
  background-color: #1C1C1C;
  height: 100%;
    box-shadow: 5px 0 5px #111111;
  }
.hud {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 75px;
  box-sizing: border-box;
  gap: 20px;
  width: 70vw;
  border-radius: 32px;
  flex-wrap: wrap;
}
.RHud {
  display: flex;
  position: absolute;
  flex-direction: column;
  width: 70%;
  height: 100%;
  left: 30%;
  overflow: hidden;
}
h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 0;
    color: #E0E0E0;
      margin-left: 5%;
}
.today {
  /* padding: 75px; */
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  padding: 75px;



}
/* Individual day pucks */
.puck {
  max-width: 200px;
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 10px;
      background: #292929;
    border: 2px solid #3D3D3D; /* muted dark gray */
    color: #E0E0E0;
}

/* Hover + active animation */
.puck:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px #111111;
    border-color: #555555;}

.puck.active {
  transform: scale(1.1);
  box-shadow: 0 8px 30px #111111;
    border-color: #FF7A5C; /* keep accent for active puck */}

/* Inside content (icons, temp, day, etc.) */
.puck .day {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
}

.puck .icon {
  font-size: 2.5rem;
  margin: 10px 0;
}

.puck .temp {
  font-size: 1.2rem;
  font-weight: 500;
}

.puck i {
}



























.rain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.rain.back-row {
  display: none;
  z-index: 1;
  bottom: 60px;
  opacity: 0.5;
}

body.back-row-toggle .rain.back-row {
  display: block;
}

.drop {
  position: absolute;
  bottom: 100%;
  width: 15px;
  height: 120px;
  pointer-events: none;
  animation: drop 0.5s linear infinite;
}

@keyframes drop {
  0% {
    transform: translateY(0vh);
  }
  75% {
    transform: translateY(99vh);
  }
  100% {
    transform: translateY(99vh);
  }
}

.stem {
  width: 1px;
  height: 60%;
  margin-left: 7px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
  animation: stem 0.5s linear infinite;
}

@keyframes stem {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.splat {
  width: 15px;
  height: 10px;
  border-top: 2px dotted rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transform: scale(0);
  animation: splat 0.5s linear infinite;
  display: none;
}

body.splat-toggle .splat {
  display: block;
}

@keyframes splat {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(0);
  }
  90% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.toggles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.toggle {
  position: absolute;
  left: 20px;
  width: 50px;
  height: 50px;
  line-height: 51px;
  box-sizing: border-box;
  text-align: center;
  font-family: sans-serif;
  font-size: 10px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.toggle:active {
  background-color: rgba(255, 255, 255, 0.3);
}

.toggle.active {
  background-color: rgba(255, 255, 255, 0.4);
}

.splat-toggle {
  top: 20px;
}

.back-row-toggle {
  top: 90px;
  line-height: 12px;
  padding-top: 14px;
}

.single-toggle {
  top: 160px;
}

body.single-toggle .drop {
  display: none;
}

body.single-toggle .drop:nth-child(10) {
  display: block;
}

.rain, .rain * {
  pointer-events: none;
}

.hud .puck {
  position: relative; /* if not already */
  z-index: 9999;
  pointer-events: auto;
}

.news {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 30px;

}

.story {
  border-bottom: 1px solid #333;
  padding: 10px;
} 

.story a[href] {
  color: white;;
}
