/* General Layout */
body {
  background: url('https://www.transparenttextures.com/patterns/stardust.png'),
              linear-gradient(#0b0023, #000000);
  color: #e0e6ff;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

/* Container Layout */
#wrapper {
  display: flex;
  max-width: 900px;
  margin: 2rem auto;
  background-color: rgba(20, 20, 30, 0.85);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Navigation */
nav {
  background-color: rgba(25, 25, 40, 0.9);
  padding: 1rem;
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid #444;
}

nav h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #a6c8ff;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  margin-bottom: 0.75rem;
}

nav a {
  color: #cdd9ff;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 4px #8affff, 0 0 8px #8affff, 0 0 12px #8affff;
}

}

/* Main Content */
main {
  padding: 2rem;
  flex-grow: 1;
}

main h2 {
  margin-top: 0;
  color: #d6b3ff;
}

/* Blinkie Banner */
.blinkie-banner,
.blinkie-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.blinkie-banner img,
.blinkie-row img {
  height: 30px;
  image-rendering: pixelated;
  border: 2px solid #8a6fff;
  background-color: #141628;
  padding: 2px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.blinkie-row img:hover {
  transform: scale(1.1);
}

/* Music Player */
.blinkie-music-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.music-player {
  background-color: rgba(20, 22, 40, 0.7);
  padding: 10px;
  border-radius: 12px;
  border: 2px dashed #8affff;
  text-align: center;
  font-size: 10px;
  color: #99ffff;
  box-shadow: 0 0 10px #00ffff55;
}

/* News Box / Updates */
.latest-news {
  background-color: rgba(20, 22, 40, 0.6);
  padding: 1.5rem;
  border-left: 4px solid #d08aff;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 0 15px #b19cd9;
}

.latest-news h2 {
  color: #ffd6ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px #d08aff;
}

.updates-box {
  background-color: rgba(20, 22, 40, 0.6);
  border: 2px solid #8a6fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 12px #8a6fff55;
}

.updates-box details {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.updates-box details:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.news-item summary {
  font-weight: bold;
  color: #ffccff;
  text-shadow: 0 0 3px #8a6fff;
  cursor: pointer;
}

.news-item p {
  color: #ddd;
  margin: 0.5rem 0 0 1rem;
}

.date {
  font-size: 0.8rem;
  color: #aaa;
}

/* Extra UI Enhancements */
.now-section {
  background-color: rgba(20, 22, 40, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 20px #8a6fff;
  margin-bottom: 2rem;

cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur838.cur'), auto;
