/* ========== HOME ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.home-page {
  background: url("images/home-bg.png") no-repeat center center fixed;
  background-size: cover;
}

body {
  font-family: "Arial", sans-serif;
  color: #000;
}

.top-nav {
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.main-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border: 2px solid transparent;
  transition: background-color 0.2s;
  border-radius: 8px;
}

.main-menu a:hover {
  background-color: #ffd9ff;
  border-color: transparent;
}

.nav-right {
  display: flex;
  gap: 1rem;
}

.btn-signin,
.btn-register {
  background-color: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-signin:hover,
.btn-register:hover {
  background-color: #ffd9ff;
}

.home-container {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem !important;
}

.banner-carousel {
  position: relative;
  width: 400px;
  height: 220px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 50%;
  transform-style: preserve-3d;
  transition: transform 1s ease;
  z-index: 1;
}

.slide img {
  width: 180px;
  height: auto;
  display: block;
}

.slide.left {
  transform: translateX(-130%) rotateY(25deg) scale(0.9);
  z-index: 1;
}

.slide.center {
  transform: translateX(-50%) rotateY(0deg) scale(1);
  z-index: 2;
}

.slide.right {
  transform: translateX(30%) rotateY(-25deg) scale(0.9);
  z-index: 1;
}

.slide:hover {
  transform: translateX(-50%) rotateY(0deg) scale(1.1) !important;
  z-index: 3;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 4.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.btn-start {
  background-color: #D9E4FF;
  border: 3px solid #000;
  padding: 0.8rem 1.4rem;
  font-size: 2rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 8px;
}

.btn-start:hover {
  background-color: #fcebff;
}

/* ======================== */
@media (max-width: 768px) {
  .main-menu a {
    font-size: 1rem;
  }

  .banner-carousel {
    width: 90%;
    height: 200px;
  }

  .slide img {
    width: 160px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* ======================================= mystyle =================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.mystyle-page {
  background-color: #fdfbf6;
  color: #000;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

body.mystyle-page .top-nav {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.mystyle-page .nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.mystyle-page .logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

body.mystyle-page .main-menu a {
  color: #000;
  font-weight: bold;
  margin-right: 1rem;
}

body.mystyle-page .nav-right .btn-signout {
  background-color: transparent;
  padding: 0.4rem 0.8rem;
  border: none !important;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
}

body.mystyle-page .nav-right .btn-signout:hover {
  background-color: #ffd9ff;
  border: none !important;
}

.signout-animate {
  transform: rotate(360deg) scale(0.8);
  transition: transform 0.8s ease;
}


/* =============================== */
body.mystyle-page .sub-nav {
  width: 90%;
  max-width: 1200px;
  margin: 1rem auto;
  display: flex;
  gap: 4rem;
  border-bottom: 3px solid #c5e0ff;
  font-size: 1.7rem;
}

body.mystyle-page .sub-nav a {
  padding: 0.5rem 0;
  font-weight: bold;
  color: #000;
  position: relative;
}

body.mystyle-page .sub-nav a.active {
  color: #2b50ff;
}

body.mystyle-page .sub-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2b50ff;
}

body.mystyle-page .style-container {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
}

body.mystyle-page .style-details {
  margin-bottom: 2rem;
}

body.mystyle-page .style-details h2 {
  font-size: 3rem;
  color: #4732FA;
  margin-bottom: 1rem;
}

body.mystyle-page .style-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: transparent;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
}

body.mystyle-page .style-icon {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

body.mystyle-page .style-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

body.mystyle-page .style-name {
  font-size: 2.5rem;
  color: #f87cb5;
}

body.mystyle-page .style-tags {
  display: flex;
  gap: 0.5rem;
}

body.mystyle-page .tag-pink {
  background-color: #ffe9f3;
  color: #333;
  border: 1px solid #fca2d6;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 1.5rem;
}

body.mystyle-page .btn-view-style {
  margin-left: auto;
  padding: 0.5rem 0.8rem;
  border: 2px solid #c3bbff;
  background-color: #eee;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.2rem;
}

body.mystyle-page .btn-view-style:hover {
  background-color: #d9d3ff;
}

body.mystyle-page .recommend-songs h2 {
  font-size: 3rem;
  color: #4732FA;
  margin-bottom: 1rem;
}



body.mystyle-page .song-list .song-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.mystyle-page .song-list .song-item:first-child {
  border-top: none;
}

body.mystyle-page .song-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-left: 20px;
}

body.mystyle-page .song-info {
  flex: 1;
}

body.mystyle-page .song-info strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.2rem;
}

body.mystyle-page .song-info p {
  font-size: 1.2rem;
  color: #666;
}

body.mystyle-page .btn-view {
  border: 2px solid #000;
  background-color: transparent;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  font-size: 1.2rem;
}

body.mystyle-page .btn-view:hover {
  background-color: #eee;
}

body.mystyle-page .recommend-artists {
  margin-top: 2rem;
}

body.mystyle-page .recommend-artists h2 {
  font-size: 3rem;
  color: #4732FA;
  margin-bottom: 1rem;
}

body.mystyle-page .section-divider {
  border: none;
  border-top: 2px solid #c5e0ff;
  margin: 2rem 0;
}


body.mystyle-page .artist-item-1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.mystyle-page .artist-item-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

body.mystyle-page .artist-item:first-child {
  border-top: none;
}

body.mystyle-page .artist-item-1 img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-left: 10px;
}

body.mystyle-page .artist-item-2 img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-left: 10px;
}

body.mystyle-page .artist-info {
  flex: 1;
}

body.mystyle-page .artist-info strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.2rem;
  margin-left: 20px;
}

body.mystyle-page .artist-info p {
  font-size: 1.2rem;
  color: #666;
  margin-left: 21px;
}

body.mystyle-page .footer-area {
  width: 100%;
  background-color: #d9ecff;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

body.mystyle-page .footer-col {
  flex: 1;
  min-width: 150px;
  margin-left: 40px;
}

body.mystyle-page .footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

body.mystyle-page .footer-col ul {
  list-style: none;
}

body.mystyle-page .footer-col ul li {
  margin-bottom: 0.3rem;
}

body.mystyle-page .footer-col ul li a {
  font-size: 1.1rem;
  color: #000;
}

body.mystyle-page .get-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
  margin-right: 80px;
}

body.mystyle-page .get-app h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

body.mystyle-page .get-app .qr-code {
  width: 50px;
  height: auto;
}

body.mystyle-page .get-app .app-icons {
  width: 50px;
  height: auto;
}

/*=======================================*/
@media (max-width: 768px) {
  body.mystyle-page .sub-nav {
    gap: 1rem;
  }

  body.mystyle-page .style-info {
    flex-direction: column;
    align-items: flex-start;
  }

  body.mystyle-page .btn-view-style {
    margin-left: 0;
  }

  body.mystyle-page .song-list .song-item,
  body.mystyle-page .artist-item {
    flex-direction: column;
    align-items: flex-start;
  }

  body.mystyle-page .btn-view {
    align-self: flex-end;
  }

  body.mystyle-page .footer-area {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================ Saved lists ===================================*/


body.savedlists-page {
  background-color: #fdfbf6;
  color: #000;
}

body.savedlists-page .savedlists-container {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
}


body.savedlists-page .top-nav {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.savedlists-page .nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.savedlists-page .logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

body.savedlists-page .main-menu a {
  color: #000;
  font-weight: bold;
  margin-right: 1rem;
}

body.savedlists-page .nav-right .btn-signout {
  background-color: transparent;
  padding: 0.4rem 0.8rem;
  border: none !important;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
}

body.savedlists-page .nav-right .btn-signout:hover {
  background-color: #ffd9ff;
  border: none !important;
}

body.savedlists-page .sub-nav {
  width: 90%;
  max-width: 1200px;
  margin: 1rem auto;
  display: flex;
  gap: 4rem;
  border-bottom: 3px solid #c5e0ff;
  /* 浅蓝下划线 */
  font-size: 1.7rem;
}

body.savedlists-page .sub-nav a {
  padding: 0.5rem 0;
  font-weight: bold;
  color: #000;
  position: relative;
}

body.savedlists-page .sub-nav a.active {
  color: #2b50ff;
  /* or some highlight color */
}

body.savedlists-page .sub-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2b50ff;
}


body.savedlists-page .savedlists-container h2 {
  font-size: 3rem;
  color: #4732FA;
  margin-bottom: 1rem;
}

body.savedlists-page .style-card-1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
}

body.savedlists-page .style-card-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 20px;
}

body.savedlists-page .style-card:first-child {
  border-top: none;
}

body.savedlists-page .style-icon {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

body.savedlists-page .style-info {
  flex: 1;
}

body.savedlists-page .style-name-1 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  color: #f87cb5;
}

body.savedlists-page .style-name-2 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  color: #03a572;
}

body.savedlists-page .style-tags {
  display: flex;
  gap: 0.4rem;
}

body.savedlists-page .tag-pink {
  background-color: #ffe9f3;
  color: #333;
  border: 1px solid #fca2d6;
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  font-size: 1.5rem;
}

body.savedlists-page .tag-green {
  background-color: #dff4e5;
  color: #000;
  border: 1px solid #aaf3ce;
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  font-size: 1.5rem;
}

body.savedlists-page .btn-view-style-1 {
  margin-left: auto;
  padding: 0.5rem 0.8rem;
  border: 2px solid #c3bbff;
  background-color: #eee;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.2rem;
}

body.savedlists-page .btn-view-style-1:hover {
  background-color: #d9d3ff;
}

body.savedlists-page .btn-view-style-2 {
  margin-left: auto;
  padding: 0.5rem 0.8rem;
  border: 2px solid #aaf3ce;
  background-color: #eee;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.2rem;
}

body.savedlists-page .btn-view-style-2:hover {
  background-color: #dff4e5;
}


body.savedlists-page .section-divider {
  border: none;
  border-top: 2px solid #c5e0ff;
  margin: 2rem 0;
}

body.savedlists-page .music-playlists .playlist-item-1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.savedlists-page .music-playlists .playlist-item-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}


body.savedlists-page .music-playlists .playlist-item-1 img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 20px;
}

body.savedlists-page .music-playlists .playlist-item-2 img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 20px;
}


body.savedlists-page .playlist-info {
  flex: 1;
}

body.savedlists-page .playlist-info strong {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  display: block;
}

body.savedlists-page .playlist-info p {
  font-size: 1.2rem;
  color: #666;
}

body.savedlists-page .btn-view {
  border: 2px solid #000;
  background-color: transparent;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  font-size: 1.2rem;
}

body.savedlists-page .btn-view:hover {
  background-color: #eee;
}

body.savedlists-page .selected-artists .artist-item-1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.savedlists-page .selected-artists .artist-item-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.savedlists-page .selected-artists .artist-item-3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}


body.savedlists-page .selected-artists .artist-item-1 img {
  width: 220px;
  height: 140px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 10px;
}


body.savedlists-page .selected-artists .artist-item-2 img {
  width: 220px;
  height: 140px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 10px;
}

body.savedlists-page .selected-artists .artist-item-3 img {
  width: 220px;
  height: 140px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 10px;
}


body.savedlists-page .artist-info {
  flex: 1;
}

body.savedlists-page .artist-info strong {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  display: block;
  margin-left: 20px;
}

body.savedlists-page .artist-info p {
  font-size: 1.2rem;
  color: #666;
  margin-left: 21px;
}

/*=====================footer===================================*/

body.savedlists-page .footer-area {
  width: 100%;
  background-color: #d9ecff;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

body.savedlists-page .footer-col {
  flex: 1;
  min-width: 150px;
  margin-left: 40px;
}

body.savedlists-page .footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

body.savedlists-page .footer-col ul {
  list-style: none;
}

body.savedlists-page .footer-col ul li {
  margin-bottom: 0.3rem;
}

body.savedlists-page .footer-col ul li a {
  font-size: 1.1rem;
  color: #000;
}

body.savedlists-page .get-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
  margin-right: 80px;
}

body.savedlists-page .get-app h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

body.savedlists-page .get-app .qr-code {
  width: 50px;
  height: auto;
}

body.savedlists-page .get-app .app-icons {
  width: 50px;
  height: auto;
}






/* ==================== History ================= */
body.history-page {
  background-color: #fdfbf6;
  color: #000;
}

body.history-page .history-container {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
}


body.history-page .top-nav {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.history-page .nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.history-page .logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

body.history-page .main-menu a {
  color: #000;
  font-weight: bold;
  margin-right: 1rem;
}

body.history-page .nav-right .btn-signout {
  background-color: transparent;
  padding: 0.4rem 0.8rem;
  border: none !important;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
}

body.history-page .nav-right .btn-signout:hover {
  background-color: #ffd9ff;
  border: none !important;
}

/* ======================================== */
body.history-page .sub-nav {
  width: 90%;
  max-width: 1200px;
  margin: 1rem auto;
  display: flex;
  gap: 4rem;
  border-bottom: 3px solid #c5e0ff;
  font-size: 1.7rem;
}

body.history-page .sub-nav a {
  padding: 0.5rem 0;
  font-weight: bold;
  color: #000;
  position: relative;
}

body.history-page .sub-nav a.active {
  color: #2b50ff;
}

body.history-page .sub-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2b50ff;
}


body.history-page .history-container h2 {
  font-size: 3rem;
  color: #4732FA;
  margin-bottom: 1rem;
}

body.history-page .last-activities .activity-item-1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.history-page .last-activities .activity-item-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}


body.history-page .last-activities .activity-item-3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

body.history-page .activity-icon img {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 20px;
}

body.history-page .activity-info {
  flex: 1;
}

body.history-page .activity-info strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.2rem;
}

body.history-page .activity-info p {
  font-size: 1.2rem;
  color: #666;
}

body.history-page .btn-view {
  border: 2px solid #000;
  background-color: transparent;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  font-size: 1.2rem;
}

body.history-page .btn-view:hover {
  background-color: #eee;
}

body.history-page .section-divider {
  border: none;
  border-top: 2px solid #c5e0ff;
  margin: 2rem 0;
}

body.history-page .recently-browsed .browse-item-1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.history-page .recently-browsed .browse-item-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #c5e0ff;
  padding: 1rem 0;
}

body.history-page .recently-browsed .browse-item-3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

body.history-page .recently-browsed .browse-item:first-child {
  border-top: none;
}

body.history-page .browse-item-1 img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 20px;
}

body.history-page .browse-item-2 img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 20px;
}

body.history-page .browse-item-3 img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
  margin-left: 20px;
}

body.history-page .browse-info {
  flex: 1;
}

body.history-page .browse-info strong {
  font-size: 1.8rem;
  display: block;
}

body.history-page .browse-info p {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 5px;
}

body.history-page .arrow-indicator {
  font-size: 2rem;
  color: #666;
}

/* Archived */
body.history-page .archived h2 {
  font-size: 3rem;
  color: #4732FA;
  margin-bottom: 1rem;
}

body.history-page .archive-stats {
  display: flex;
  gap: 2rem;
}

body.history-page .archive-card {
  font-size: 2.5rem;
  white-space: nowrap;
  padding: 2rem 8.3rem;
  border-radius: 6px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.history-page .archive-card.green {
  background-color: #d9f5c3;
}

body.history-page .archive-card.mint {
  background-color: #cbfdf1;
}

body.history-page .footer-area {
  width: 100%;
  background-color: #d9ecff;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

body.history-page .footer-col {
  flex: 1;
  min-width: 150px;
  margin-left: 40px;
}

body.history-page .footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

body.history-page .footer-col ul {
  list-style: none;
}

body.history-page .footer-col ul li {
  margin-bottom: 0.3rem;
}

body.history-page .footer-col ul li a {
  font-size: 1.1rem;
  color: #000;
}

body.history-page .get-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
  margin-right: 80px;
}

body.history-page .get-app h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

body.history-page .get-app .qr-code {
  width: 50px;
  height: auto;
}

body.history-page .get-app .app-icons {
  width: 50px;
  height: auto;
}





/* =================================for savedlists-page & history-page=========================*/
@media (max-width: 768px) {

  body.savedlists-page .style-card,
  body.savedlists-page .playlist-item,
  body.savedlists-page .artist-item {
    flex-direction: column;
    align-items: flex-start;
  }

  body.history-page .activity-item,
  body.history-page .browse-item {
    flex-direction: column;
    align-items: flex-start;
  }

  body.history-page .arrow-indicator {
    align-self: flex-end;
  }
}

/* =========================================================== */


body.login-page {
  background: url("images/login-bg.png") no-repeat center center fixed;
  background-size: cover;
  color: #000;
  font-family: "Arial", sans-serif;
}

body.signup-page {
  background: url("images/signup-bg.png") no-repeat center center fixed;
  background-size: cover;
  color: #000;
  font-family: "Arial", sans-serif;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.clickable-logo {
  cursor: pointer;
  transition: transform 0.8s ease;
}

.logo-animate {
  transform: rotate(360deg) scale(0.8);
}

.login-overlay,
.signup-overlay {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
}

.saved-icon {
  width: 80px;
  height: 80px;
}

body.login-page .login-rect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  overflow: hidden;
}

body.login-page .login-content {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.login-page .field-label {
  font-size: 1.3rem;
  color: #3534A0;
}

body.login-page .login-input {
  border: 2px solid #3534A0;
  border-radius: 0;
  background-color: #EAFECC;
  width: 100%;
  height: 2rem;
  font-size: 1rem;
  color: #3534A0;
  outline: none;
}

/* remember me */
body.login-page .remember-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

body.login-page .remember-box {
  width: 24px;
  height: 24px;
  border-radius: 0;
  position: relative;
  border: 2px solid #3534A0;
  background-color: #EAFECC;
}

body.login-page .remember-box.checked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/correct.png") center center no-repeat;
  background-size: contain;
}

body.login-page .remember-text {
  font-size: 1rem;
  color: #3534A0;
}

body.login-page .login-btn {
  width: 100%;
  background-color: #9DE0C3;
  border: 2px solid #3534A0;
  border-radius: 0;
  padding: 0.6rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

body.login-page .login-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.login-page .login-bottom .underlined {
  text-decoration: underline;
  color: #3534A0;
  font-size: 1rem;
}

body.signup-page .signup-rect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  overflow: hidden;
}

body.signup-page .signup-content {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.signup-page .field-label {
  font-size: 1.3rem;
  color: #3534A0;
}

body.signup-page .signup-input {
  border: 2px solid #3534A0;
  border-radius: 0;
  background-color: #EAFECC;
  width: 100%;
  height: 2rem;
  font-size: 1rem;
  color: #3534A0;
  outline: none;
}

body.signup-page .remember-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

body.signup-page .remember-box {
  width: 24px;
  height: 24px;
  border: 2px solid #3534A0;
  background-color: #EAFECC;
  border-radius: 0;
  position: relative;
}

body.signup-page .remember-box.checked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/correct.png") center center no-repeat;
  background-size: contain;
}

body.signup-page .remember-text {
  font-size: 1rem;
  color: #3534A0;
}

body.signup-page .signup-btn {
  width: 100%;
  background-color: #9DE0C3;
  border: 2px solid #3534A0;
  border-radius: 0;
  padding: 0.6rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

body.signup-page .signup-bottom {
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
  color: #3534A0;
}

body.signup-page .signup-bottom .underlined {
  text-decoration: underline;
}

/*============================================================*/
@media (max-width: 768px) {

  body.login-page .login-rect,
  body.signup-page .signup-rect {
    width: 90%;
    height: 400px;
  }

  body.login-page .login-content,
  body.signup-page .signup-content {
    width: 90%;
    top: 40px;
  }
}