/* ------------------ */
/* GLOBAL RESET + CURSOR */
/* ------------------ */
* {
  cursor: url("https://ani.cursors-4u.net/others/oth-9/oth904.cur"), auto !important;
  box-sizing: border-box;
}

/* ------------------ */
/* BASIC PAGE STYLING */
/* ------------------ */
body {
  background-color: black;
  color: white;
  font-family: monospace;
  margin: 0;
  padding: 20px;
  text-align: center;
}

body {
  background-color: black;
  color: white;
  font-family: monospace;
  margin: 0;
  padding: 20px;
  text-align: center;
}



/* ------------------ */
/* LINKS */
/* ------------------ */
a {
  color: lime;
  text-decoration: none;
  text-shadow: 0 0 6px #39ff14;
}

a:hover {
  color: #39ff14;
  text-decoration: underline;
}

/* ------------------ */
/* HEADER IMAGE (if used) */
/* ------------------ */
header img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* ------------------ */
/* MAIN CONTAINER LAYOUT (if used elsewhere) */
/* ------------------ */
.centered-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* ------------------ */
/* COMIC SECTION */
/* ------------------ */
.comic-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.comic {
  border: 2px solid lime;
  padding: 10px;
  background-color: #111;
  width: 150px;
  text-align: center;
  font-size: 0.9em;
  transition: transform 0.3s, border-color 0.3s;
}

.comic img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.comic:hover {
  transform: scale(1.05);
  border-color: limegreen;
}

/* Art Gallery Styling */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.gallery img {
  width: 200px;
  border: 2px solid lime;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* about author */

.about-artist {
  margin-top: 50px;
  text-align: center;
  color: white;
  border-top: 2px solid lime;
  padding-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95em;
  line-height: 1.6em;
}
.green-line {
  border: none;
  height: 2px;
  background-color: limegreen;
  width: 60%; /* or 100% if you want full width */
  margin: 10px auto; /* centers the line */
}

/* blog */

.blog-post {
  border: 2px solid lime;
  padding: 15px;
  margin: 20px auto;
  width: 90%;
  max-width: 700px;
  background-color: #111;
  color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px lime;
  text-align: left;
}

.blog-post h2 {
  color: lime;
  font-family: monospace;
  margin-bottom: 10px;
}

/* what im lisening to */

.red-quote {
  color: #e53935;
}

/* album stuff*/

.album-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.album {
  width: 160px;
  text-align: center;
  color: #fff;
  font-family: monospace;
}

.album img {
  width: 100%;
  border: 2px solid #4caf50;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

.album img:hover {
  transform: scale(1.05);
}

.album-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.album {
  width: 160px; /* or 180px if you want slightly bigger covers */
  text-align: center;
  color: #fff;
  font-family: monospace;
}

.album img {
  width: 100%;
  border: 2px solid #4caf50;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

.album img:hover {
  transform: scale(1.05);
}

.album {
  position: relative;
  background-color: #222;
  border: 4px solid #555;
  border-radius: 12px;
  padding: 10px;
  width: 180px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.2s ease-in-out;
}

.album:hover {
  transform: scale(1.05);
}

.album::after {
  content: attr(data-lyric);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 35px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #39ff14;
  font-family: monospace;
  font-size: 0.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  opacity: 0;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.album:hover::after {
  opacity: 1;
}
