@font-face {
  font-family: "Arial";
  format("opentype");
  font-style: italic;
}

html {
    background-color: #1a1a1a;
}

body {
    padding: 0;
    margin: 0;
    text-align: center;
  font-family: "Arial";
  font-style: italic;
    color: #ededed;
}

a {
    color: #d3d3d3;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

/* logo */
.logo img {
  width: 200px;
  height: auto;
  display: block;
}


.site-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.site-title a {
  color: #ededed;
  text-decoration: none;
  text-shadow:
    0 0 10px rgba(255,255,255,0.25),
    0 0 20px rgba(255,255,255,0.15);
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  font-size: 15px;
  text-transform: lowercase;
  color: #d3d3d3;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Active page underline */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.6);
}

/* Mobile */
@media (max-width: 600px) {
  .site-title {
    font-size: 22px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* top nav */
.topnav {
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Brighter + more solid */
  background: rgba(120, 120, 120, 0.32);

  /* Strong frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Bright highlight border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);

  /* Soft glow to lift it from the background */
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.08);

  padding: 16px 30px;

  position: relative;
  z-index: 1000;
}

/* nav images */
.nav-links img {
  width: 120px;
  height: auto;
  transition: 0.3s ease;
}

.nav-links img:hover {
  filter: brightness(1.3);
}

.moongirlgif {
	align-items: right;
	width: 364px;
    height: auto;
}

/* Album container */
.album-block {
  background: #1f1f1f;
  padding: 10px 15px;
  margin: 20px auto;
  width: 600px;
  border-radius: 6px;
  color: #e0e6ed;
}

/* Expandable content layout */
.album-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.5s ease,
    opacity 0.35s ease;
}
}

/* LEFT SIDE */
.left {
  width: 65%;
}

/* Album cover */
.album-cover {
  width: 180px;
  height: 180px;
  border-radius: 6px;
  object-fit: cover;
}

/* Streaming icons */
.stream-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.stream-icons img {
  width: 38px;
  height: 38px;
  filter: brightness(0.75);
  transition: 0.2s;
}

.stream-icons img:hover {
  filter: brightness(1.1);
}

/* Responsive fix for mobile */
@media (max-width: 600px) {
  .album-layout {
    flex-direction: column;
    align-items: left;
  }

  .album-cover {
    width: 200px;
    height: 200px;
    margin-top: 15px;
  }

  .left {
    width: 100%;
  }
}

.album-block summary:hover {
  color: #ffffff;
}

/* Tracklist */
.tracklist {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 6px;
  overflow: hidden;
}

/* Individual track rows */
.tracklist li {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  padding: 10px 12px;
  background-color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  font-size: 15px;
  align-items: left;
}

.tracklist li:nth-child(odd) {
  background-color: #1a1a1a;
}

/* Number column */
.tracklist .num {
  opacity: 0.7;
}

/* Track title */
.tracklist .title {
  padding-left: 10px;
}

/* Timestamp column */
.tracklist .time {
  opacity: 0.8;
  font-size: 14px;
}

/* Total length */
.total {
  text-align: right;
  padding: 8px 12px;
  font-size: 14px;
  opacity: 0.8;
}

.blob-bounce {
  position: fixed;
  right: 40px;
  bottom: 0;
  width: 600px;
  pointer-events: none;
  z-index: 999;

  animation: blobBounce 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes blobBounce {
  0% {
    transform: translateY(0) scaleX(1) scaleY(1);
  }
  15% {
    transform: translateY(-160px) scaleX(0.95) scaleY(1.05); /* stretch upward */
  }
  30% {
    transform: translateY(0) scaleX(1.2) scaleY(0.8); /* big squish */
  }
  45% {
    transform: translateY(-100px) scaleX(0.9) scaleY(1.1); /* smaller stretch */
  }
  60% {
    transform: translateY(0) scaleX(1.15) scaleY(0.85); /* smaller squish */
  }
  75% {
    transform: translateY(-45px) scaleX(0.95) scaleY(1.05);
  }
  90% {
    transform: translateY(0) scaleX(1.08) scaleY(0.92);
  }
  100% {
    transform: translateY(0) scaleX(1) scaleY(1);
  }
}

/* ============================
   MOBILE FRIENDLY FIXES
   ============================ */
@media (max-width: 600px) {

  /* Make album block fit screen */
  .album-block {
    width: 90%;
    margin: 15px auto;
    padding: 12px;
  }

  /* Stack cover + tracklist vertically */
  .album-layout {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* Album cover centered and responsive */
  .album-cover {
    width: 200%;
    height: auto;
    max-width: 280px;
  }

  /* Tracklist full width */
  .left {
    width: 100%;
  }

  /* Tracklist spacing */
  .tracklist li {
    grid-template-columns: 25px 1fr auto;
    padding: 8px 10px;
    font-size: 14px;
  }

  .tracklist .title {
    padding-left: 6px;
  }

  /* Streaming icons centered and scaled */
  .stream-icons {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .stream-icons img {
    width: 32px;
    height: 32px;
  }

  /* Summary text bigger/tappable */
  details summary {
    font-size: 20px;
    padding: 10px 0;
  }

  /* Fix blob bounce on mobile */
  .blob-bounce {
    width: 200px;
    right: 10px;
    bottom: 0;
    animation-duration: 2.5s;
  }

  /* Prevent horizontal scrolling */
  body, html {
    overflow-x: hidden;
  }
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* Individual particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  filter: blur(1px);
  animation: drift 18s linear infinite;
  opacity: 0.4;
}

@keyframes drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-200px) translateY(40px);
  }
}