body {
  font-family: "Lato", sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  padding: 2% 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navItems {
  display: flex;
  gap: 30px;
}

.nameLogoText {
  font-size: 1.4em;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
}

.mainContent {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 10%;
}

.pageTitle {
  font-size: 3em;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #69c9d0, #8cff9e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.3em;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 60px;
  color: #ccc;
}

.volumeContainer {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.volumeCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  width: 350px;
  min-height: 450px;
  max-width: 90vw;
}

.volumeCard:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.volumeDisc {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(0, 0, 0, 0.9);
  border: 2px solid #1a1a1a;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.volumeCard:hover .volumeDisc {
  animation: spin 2s linear infinite;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.3),
    inset 0 0 15px rgba(0, 0, 0, 0.9);
}

.volume1 {
  background: #6ad8fb;
}

.volume2 {
  background: #8cff9e;
}

.volume3 {
  background: #f4d35e;
}

.volume4 {
  background: #dc143c;
}

.volumeDisc::before,
.volumeDisc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.volumeDisc::before {
  top: 15%;
  left: 15%;
  right: 15%;
  bottom: 15%;
  border-style: dashed;
}

.volumeDisc::after {
  top: 35%;
  left: 35%;
  right: 35%;
  bottom: 35%;
  background-color: #1f3339;
  border: 2px solid #333;
}

.volumeTitle {
  font-size: 2em;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: bold;
}

.volume1 .volumeTitle {
  color: #6ad8fb;
}

.volume2 .volumeTitle {
  color: #8cff9e;
}

.volumeDisc.volume3 + .volumeTitle {
  color: #ffb347;
}

.volumeDisc.volume4 + .volumeTitle {
  color: #dc143c;
}

.volumeDescription {
  font-size: 1.1em;
  color: #ccc;
  letter-spacing: 1px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  line-height: 1.5;
  overflow-wrap: break-word;
  hyphens: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer {
  padding: 20px 0;
  text-align: center;
}

.nameText {
  font-size: 1.3em;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.studioText {
  letter-spacing: 3px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mainContent {
    padding: 30px 5%;
  }

  .pageTitle {
    font-size: 2.2em;
  }

  .subtitle {
    font-size: 1.1em;
    margin-bottom: 40px;
  }

  .volumeContainer {
    flex-direction: column;
    gap: 50px;
  }

  .volumeCard {
    width: 300px;
    min-height: 400px;
  }

  .volumeDisc {
    width: 150px;
    height: 150px;
  }

  .volumeTitle {
    font-size: 1.6em;
  }

  .volumeDescription {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .pageTitle {
    font-size: 1.8em;
  }

  .volumeCard {
    width: 280px;
    min-height: 380px;
    padding: 20px;
  }

  .volumeDisc {
    width: 120px;
    height: 120px;
  }

  .volumeTitle {
    font-size: 1.4em;
  }

  .volumeDescription {
    font-size: 0.95em;
  }
}
