.now-window {
  width: 75%;
  margin: 20px 0;
  border: 2px solid #fff;
  background-color: #000;
  padding: 20px;
  box-shadow: 0px 0px 12px #ff00ff;
  color: white;
  text-align: center;
}

.now-post {
  margin-bottom: 50px;
  padding: 20px;
  background-color: #050505;
  border: 2px solid red;
}

.post-header {
  text-align: left;
}

.post-meta {
  font-family: Courier, monospace;
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

.vibes-container {
  display: flex;
  justify-content: center; 
  font-family: "VCR OSD Mono", Courier, monospace;
  font-size: 14px;
  height: 1vh;
}

.vibes-bar-bg {
  width: 200px;
  height: 18px;
  background-color: #222;
  margin-left: 10px;
  border: 1px solid #444;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Vibes bar */
.vibes-bar-fill {
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(to right, #ff0000 0%, #8600c9 30%, #056bc4 100%);
  background-size: 200px 100%;
  transition: width 0.5s ease;
  z-index: 1;
}

.vibes-text {
  display: flex;
  justify-content: center; 
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: "VCR OSD Mono", Courier, monospace;
  font-size: 12px;
  color: white;
  text-shadow: 1px 1px 1px #000;
  z-index: 2;
  pointer-events: none;
}
/* Vibes bar end */

.red-dotted-divider {
  border: none;
  border-top: 1px dotted red;
  margin: 20px 0;
}

.content-list {
  list-style-type: square;
  color: red;
  padding-left: 20px;
  text-align: justified;
}

.content-list li {
  margin-bottom: 12px;
  line-height: 1;
}

.content-list li span {
  color: white;
  font-family: Courier, monospace;
}

.post-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.post-gallery img {
  max-width: none;
  height: auto;
  border: 1px solid #333;
}

.post-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #000;
  padding: 15px;
  border-left: 2px solid red;
  text-align: left;
  margin-top: 20px;
  line-height: 1;
}

.post-links a {
  color: #fff;
  font-family: "VCR OSD Mono", Courier, monospace;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

.post-links a:hover {
  color: red;
  text-decoration-style: solid;
}