body {
  cursor: url('https://cur.cursors-4u.net/religion/rel-3/rel268.ani'), url('https://cur.cursors-4u.net/religion/rel-3/rel268.png'), auto;
  background-color: #0d0d0d;
  /* Layers a dark purple-black mist over a repeating collage of vintage tarot card backs */
  background: 
    linear-gradient(rgba(13, 13, 13, 0.92), rgba(30, 10, 45, 0.90)), 
    url('https://images.sacred-texts.com/tarot/pkt/img/ar15.jpg'); /* The vintage Devil card pattern repeating in the background! */
  background-attachment: fixed;
  background-size: 180px; /* Perfectly sizes the repeating cards for a neat collage effect */
  color: #ffffff;
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 10px 20px;
}

/* TOP MUSIC BAR */
.top-music-bar {
  background: rgba(20, 10, 30, 0.9);
  border: 2px solid #ff66cc;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px #8a2be2;
}

.music-title {
  color: #ff66cc;
  font-weight: bold;
  text-shadow: 0 0 5px #ff66cc;
  font-size: 14px;
}

/* 3-COLUMN LAYOUT SYSTEM */
.container {
  max-width: 98%; 
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 280px; 
  gap: 15px;
}

/* SIDEBARS (Left & Right) */
.sidebar {
  background-color: rgba(10, 5, 15, 0.9);
  border: 3px double #ff66cc; 
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 15px #8a2be2; 
  height: fit-content;
}

/* MAIN CENTRAL HUB */
.main-box {
  background-color: rgba(20, 10, 30, 0.85); 
  border: 3px double #8a2be2; 
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px #ff66cc; 
}

.sidebar img {
  border-radius: 5px; 
  border: 2px solid #ff66cc;
}

.card-text {
  font-size: 11px; 
  color: #ff66cc; 
  margin-top: 10px;
}

marquee {
  color: #ff66cc; 
  font-weight: bold; 
  background: #1a151f; 
  border-top: 2px solid #8a2be2; 
  border-bottom: 2px solid #8a2be2; 
  padding: 8px; 
  margin-bottom: 20px;
  font-size: 16px;
}

hr {
  border: 1px solid #8a2be2;
  margin: 15px 0;
}

a {
  color: #ff66cc;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #8a2be2;
  text-shadow: 0 0 5px #ff66cc;
}

h1, h2, h3 {
  color: #ff66cc;
  text-shadow: 0 0 8px #8a2be2;
  text-align: center;
  margin-top: 5px;
}