/* ===========================
   GLOBAL BODY STYLING
   =========================== */
body {
  background: radial-gradient(circle at top, #120014, #050009 70%);
  color: #f2f2ff;
  font-family: Verdana, Arial, sans-serif;
  margin: 0;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* Side Glow */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

body::before {
  left: 0;
  background: linear-gradient(to right, #ff008c55, transparent);
}

body::after {
  right: 0;
  background: linear-gradient(to left, #00eaff55, transparent);
}

/* Wrapper */
#wrapper {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* ===========================
   HEADER + FOOTER
   =========================== */
header,
footer {
  background: rgba(0, 0, 0, 0.55);
  padding: 30px;
  text-align: center;
  border-bottom: 4px solid #ff008c;
  box-shadow: 0 0 20px #ff008c55;
  backdrop-filter: blur(6px);
}

footer {
  border-top: 4px solid #00eaff;
  border-bottom: none;
}

/* Header Title */
header h1 {
  font-size: 4.2em;
  letter-spacing: 6px;
  text-shadow:
    0 0 15px #ff008c,
    0 0 25px #00eaff88,
    0 0 40px #ff008c55;
}

/* Section Titles */
h2 {
  color: #00eaff;
  font-size: 2em;
  text-align: center;
  margin-top: 40px;
  text-shadow: 0 0 10px #00eaff88;
}

/* ===========================
   NAVIGATION
   =========================== */
nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 25px 0;
}

nav li {
  display: inline-block;
  margin: 0 25px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15em;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ff008c;
  transition: 0.3s;
}

nav a:hover {
  color: #000000;
  background-color: #ff008c;
  box-shadow: 0 0 15px #ff008caa;
}

/* ===========================
   FEATURE IMAGE (INDEX PAGE)
   =========================== */
.feature-img {
  width: 350px;
  float: right;
  margin: 0 0 25px 25px;
  border: 4px solid transparent;
  border-image: linear-gradient(45deg, #ff008c, #00eaff) 1;
  border-radius: 14px;
  box-shadow: 0 0 20px #ff008c55;
}

/* Centered Large Hero Image */
.centered-img {
  float: none;
  display: block;
  margin: 0 auto 30px auto;
  width: 600px;
  max-width: 90%;
}

/* ===========================
   HIGHLIGHT BOX
   =========================== */
.highlight {
  background: rgba(0, 0, 0, 0.45);
  border-left: 6px solid #ff00eb;
  border-right: 6px solid #00eaff;
  box-shadow: 0 0 10px #ff00eb33;
  backdrop-filter: blur(6px);
  padding: 20px;
}

/* FORCE highlight paragraph BELOW the image */
.push-down {
  clear: both !important;
  margin-top: 40px !important;
  display: block;
}

/* Center About the Artist + Paragraph Spacing */
main h2 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
}

main p {
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.8;
}

/* ===========================
   ALBUM BLOCKS (MUSIC PAGE)
   =========================== */
.album-block {
  text-align: center;
  margin-bottom: 60px;
  display: block;
}

.album-block img {
  display: block;
  margin: 0 auto 15px auto;
  width: 240px;
  border: 4px solid transparent;
  border-image: linear-gradient(45deg, #00eaff, #ff00eb) 1;
  border-radius: 14px;
  box-shadow: 0 0 20px #00eaff55;
}

.album-title {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaffaa;
  margin-top: 20px;
  display: block;
}

.album-block ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: center;
}

.album-block ul li {
  margin: 6px 0;
  font-size: 1.1em;
}

/* ===========================
   DIVIDERS
   =========================== */
.album-divider {
  width: 80%;
  height: 4px;
  margin: 40px auto;
  background: linear-gradient(90deg, #ff00eb, #00eaff, #ff00eb);
  box-shadow: 0 0 12px #ff00ebaa, 0 0 20px #00eaffaa;
  border-radius: 4px;
  opacity: 0.9;
}

/* ===========================
   VIDEO BLOCK (NEWS PAGE)
   =========================== */
.video-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 20px #00eaff55;
}

.video-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  color: #000;
  background: #00eaff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 12px #00eaffaa;
  transition: 0.3s;
}

.video-button:hover {
  background: #ff00eb;
  box-shadow: 0 0 16px #ff00ebaa;
  color: #000;
}

/* ===========================
   CLEARFIX
   =========================== */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
