html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #251b43;
}

body::-webkit-scrollbar {
  display: none;
  padding-bottom: 120px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #330066 0%, #552288 50%, #330066 100%);
  color: #0066cc;
  font-size: 36px;
  font-family: 'Great Vibes', cursive;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  margin: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  padding-left: 48px;
}

.header-left a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.header-left a:visited {
  color: inherit;
}

.header-left a:hover {
  text-decoration: none;
}

.header-right {
  display: flex;
  gap: 25px;
  font-family: sans-serif;
  font-size: 16px;
  padding-right: 48px;
}

.header-right a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-right a:hover {
  color: #aa0033;
  text-shadow: 0 0 7px #660022;
}

.scroll-offset::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -80px;
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

.firstview {
  width: 100vw;
  height: 50vw;
  padding-top: 75px;
  padding-bottom: 15px;
  background-image: url(haikei.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

h2 {
  padding-top: 40px;
  text-align: center;
  font-family: sans-serif;
  font-size: 28px;
}

.biography {
  color: #dad2feb0;
}

.biography p{
  color: #91d7f9ce;
  padding-left:9.5%
}

.music {
  color: #dad2feb0;
}

.music-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: nowrap;
  margin-top: 20px;
  position: relative;
  isolation: isolate;
}

.music-item {
  text-align: center;
  width: 26%;
  transition: transform 0.3s ease;
  will-change: transform;
  
  margin-top: 0;
  transition: margin-top 0.3s ease;
}

.music-item:hover {
  transform: translateY(-10px);
  margin-top: -10px;
  transform: none;
}

.music-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.music-wrapper:hover {
  transform: scale(1.1);
}

.music-item p {
  margin-top: 8px;
  font-size: 16px;
  color: #91d7f9ce;
  transition: all 0.3s ease;
}

.music-item a {
  text-decoration: none;
}

.music-item:hover p {
  font-size: 18px;
  transform: translateY(10px);
}

.music-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.music-item:hover .music-wrapper {
  transform: scale(1.1);
}

.music2 {
  color: #dad2feb0;
}

.music-row2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  isolation: isolate;
}

.music-item2 {
  text-align: center;
  width: 26%;
  transition: transform 0.3s ease;
  position: relative;
}

.music-item2:hover {
  transform: translateY(-8px) scale(1.03);
}

.music-wrapper2 {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.music-item2:hover .music-wrapper2 {
  transform: scale(1.07);
}

.music-item2 p {
  margin-top: 8px;
  font-size: 16px;
  color: #91d7f9ce;
  transition: transform 0.3s ease;
  position: relative;
}

.music-item2 a {
  text-decoration: none;
}

.music-item2:hover p {
  transform: translateY(10px) scale(1.1);
}

.music-wrapper2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}



.cd {
  color: #dad2feb0;
}


.cd-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
  flex-wrap: nowrap;
  margin-top: 20px;
  position: relative;
  isolation: isolate;
}

.cd-item {
  text-align: center;
  width: 25%;
  transition: transform 0.3s ease;
  margin-top: 0;
  transition: margin-top 0.3s ease;
}

.cd-item:hover {
  transform: translateY(-10px);
  margin-top: -10px;
  transform: none;
}

.cd-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  border-radius: 12;
}

.cd-wrapper:hover {
  transform: scale(1.1);
}

.cd-item p {
  margin-top: 8px;
  font-size: 16px;
  color: #91d7f9ce;
  transition: all 0.3s ease;
}

.cd-item a {
  text-decoration: none;
}

.cd-item:hover p {
  font-size: 18px;
  transform: translateY(10px);
}

.cd-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cd-item:hover .cd-wrapper {
  transform: scale(1.1);
}

.cd2 {
  color: #dad2feb0;
}

.cd-row2 {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  isolation: isolate;
}

.cd-item2 {
  text-align: center;
  width: 25%;
  transition: transform 0.3s ease;
  position: relative;
}

.cd-item2:hover {
  transform: translateY(-8px) scale(1.03);
}

.cd-wrapper2 {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  border-radius: 12;
}

.cd-item2:hover .cd-wrapper2 {
  transform: scale(1.07);
}

.cd-item2 p {
  margin-top: 8px;
  font-size: 16px;
  color: #91d7f9ce;
  transition: transform 0.3s ease;
  position: relative;
}

.cd-item2 a {
  text-decoration: none;
}

.cd-item2:hover p {
  transform: translateY(10px) scale(1.1);
}

.cd-wrapper2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.voice {
  color: #dad2feb0;
}


.voice-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
  flex-wrap: nowrap;
  margin-top: 20px;
  position: relative;
  isolation: isolate;
}

.voice-item {
  text-align: center;
  width: 25%;
  transition: transform 0.3s ease;
  margin-top: 0;
  transition: margin-top 0.3s ease;
}

.voice-item:hover {
  transform: translateY(-10px);
  margin-top: -10px;
  transform: none;
}

.voice-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  border-radius: 12;
}

.voice-wrapper:hover {
  transform: scale(1.1);
}

.voice-item p {
  margin-top: 8px;
  font-size: 16px;
  color: #91d7f9ce;
  transition: all 0.3s ease;
}

.voice-item a {
  text-decoration: none;
}

.voice-item:hover p {
  font-size: 18px;
  transform: translateY(10px);
}

.voice-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.voice-item:hover .voice-wrapper {
  transform: scale(1.1);
}


.button-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin: 0 auto;
  padding: .9em 2em;
  border: 1px solid #dad2fe;
  border-radius: 25px;
  background-color: #dad2fe;
  color: #ffffff;
  font-size: 1em;
  font-weight: 600;
  height: 18.5px;
  transition: color 0.3s;
  text-decoration: none;
}

.button-1:hover {
  height: 20px;
  border: none;
  background-color: #dad2fe;
  color: #aa0033;
  text-shadow: 0 0 7px #660022;
}

.button-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin: 0 auto;
  padding: .9em 2em;
  border: 1px solid #dad2fe;
  border-radius: 25px;
  background-color: #dad2fe;
  color: #ffffff;
  font-size: 1em;
  font-weight: 600;
  height: 18px;
  transition: color 0.3s;
  text-decoration: none;
}

.button-2:hover {
  height: 20px;
  border: none;
  background-color: #dad2fe;
  color: #aa0033;
  text-shadow: 0 0 7px #660022;
}