  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
    
  body {
  background-color: #f9f9f9;
  color: #000;
  }
    
    
  header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 100;
  }
                
  header .logo {
  font-size: 32px;
  font-weight: bold;
  }
  
  header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  }
    
  header nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  padding: 5px 0;
  cursor: pointer;
  white-space: nowrap;
  }
                      
  .home-icon {
  display: block;
  width: 20px;
  height: 20px;
  }
                        
  header nav a, .genres-btn {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  padding: 5px 0;
  cursor: pointer;
  }
                        
  .genres {
  position: relative;
  display: flex;
  align-items: center;
  }
                        
  .dropdown {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background-color: #fff;
  border: 1px solid #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 200px;
  padding: 10px 0;
  }
                        
  .dropdown.show {
  display: block;
  }
                        
  .dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  }
                        
  .dropdown-item:hover {
  background-color: #f5f5f5;
  }
                        
  .sub-dropdown {
  display: none;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  }
                        
  .sub-dropdown.show {
  display: block;
  }
                 
  .sub-dropdown a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 17px;
  }
                        
  .sub-dropdown a:hover {
  background-color: #f0f0f0;
  }
                        
  .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  }
                        
  .hamburger .line {
  width: 100%;
  height: 3px;
  background-color: #333;
  }
                      
  @media (max-width: 768px) {
  header nav {
  display: none;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #fff;
  border-top: 1px solid #ddd;
  z-index: 100;
  flex-direction: column;
  }
                        
  header nav.open {
  display: flex;
  }
               
  header nav a {
  padding: 10px 20px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  }
                
  .hamburger {
  display: flex;
  }
                  
  .genres {
  justify-content: flex-start;
  width: 100%;
  }
                        
  .dropdown {
  display: none;
  position: static;
  box-shadow: none;
  }
                        
  .dropdown.show {
  display: block;
  position: static;
  }
                      
  .dropdown-item {
  position: relative;
  }
                      
  .sub-dropdown {
  left: 100%;
  top: 0;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  }
                      
  .sub-dropdown.show {
  display: block;
  }
                    
  .sub-dropdown a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 17px;
  }
                      
  .sub-dropdown a:hover {
  background-color: #f0f0f0;
  }
}
  
  
  .biography-section {
  position: relative;
  height: 100vh;
  background: url('../../images/pop/Billie_Eilish_page/biography/biography_1.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
  }

  .biography-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  }

  .biography-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  }
  
  .biography-content {
  position: relative;
  max-width: 50%;
  color: #ddd;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 255, 150, 0.6);
  padding: 30px;
  }

  .biography-content::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 10px;
  background: linear-gradient(90deg, #424242, #bbb, #424242);
  border-radius: 5px;
  }

  .biography-content::before {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  }
  
  .biography-content h2 {
  font-family: "Aboreto", serif;
  font-weight: 900;
  font-size: 44px;
  margin-bottom: 15px;
  }
  
  .biography-content p {
  font-family: "Cormorant Unicase", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  text-align: justify;
  }
  
  
  .albums-section {
  position: relative;
  text-align: center;
  padding: 60px 40px;
  background-color: #0f3426d4;
  }

  .albums-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  z-index: 1;
  }

  .albums-title {
  font-family: "Ponomar", system-ui;
  font-size: 47px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 40px;
  }

  .albums-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  }

  .album {
  width: 350px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgb(1, 21, 16);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease;
  }

  .album:hover {
  box-shadow: 0 6px 16px rgba(94, 123, 108, 0.803);
  }

  .album-image {
  position: relative;
  width: 100%;
  }

  .album-image img {
  width: 100%;
  display: block;
  }

  .release-date {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgb(255, 255, 255);
  font-family: "Aboreto", serif;
  color: #000000;
  font-size: 15px;
  padding: 4px 8px;
  }

  .album-info {
  padding: 15px;
  }

  .album-title {
  font-family: "Fahkwang", serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  }

  .album-description {
  font-family: "EB Garamond", serif;
  font-size: 17px;
  line-height: 1.4;
  color: #555;
  }


  .songs-section {
  position: relative;
  height: 80vh;
  background: url('../../images/pop/Billie_Eilish_page/music/music_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  }

  .songs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  }

  .songs-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  }

  .songs-title {
  font-family: "Ponomar", sans-serif;
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px;
  z-index: 2;
  }

  .songs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
  }

  .song {
  width: 300px;
  transform: rotate(-10deg);
  background: #acb5b3;
  border: solid 1px #053132;
  color: #fff;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  }

  .song:hover {
  transform: rotate(0deg);
  }

  .song-2 {
  transform: rotate(10deg);
  }

  .song-3 {
  transform: rotate(-15deg);
  }

  .song-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
  }

  .song-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }

  .song-info {
  color: #000;
  }

  .song-info h3 {
  font-family: "Fahkwang", serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  }

  .song-info p {
  font-family: "EB Garamond", serif;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 15px;
  }

  .song-btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background: #053132;
  transition: background 0.3s ease;
  }

  .song-btn:hover {
  background: transparent;
  border: solid 1px #053132;
  color: #000;
  }
  
  
  footer {
  padding: 40px 60px;
  background-color: #222;
  color: #fff;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  }
                    
  footer .contact-info {
  margin-bottom: 30px;
  }
                    
  footer .contact-info p {
  font-size: 22px;
  line-height: 1.4;
  margin: 10px 0;
  }
                  
  footer .social-media {
  margin-bottom: 30px;
  }
                    
  footer .social-media a {
  margin: 0 15px;
  font-size: 21px;
  text-decoration: none;
  color: #f9f9f9;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  }
                    
  footer .social-media a:hover {
  color: #ff7f00;
  }
              
  footer .contact-icon {
  margin-right: 7px;
  }
                    
  footer .newsletter {
  margin-bottom: 30px;
  }
                    
  footer .newsletter h3 {
  font-size: 24px;
  margin-bottom: 15px;
  }
                    
  footer form {
  display: flex;
  justify-content: center;
  gap: 10px;
  }
                    
  footer input[type="email"] {
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  width: 300px;
  }
                    
  footer button {
  padding: 12px 25px;
  font-size: 18px;
  border: solid 1px #f9f9f9;
  border-radius: 4px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  }
         
  footer button:hover {
  background-color: #ff7f00;
  }
            
  footer .footer-info p {
  font-size: 17px;
  margin: 5px 0;
  }
  
  
  @media (max-width: 768px) {
  header {
  padding: 10px 15px;
  }
  
  header .logo {
  font-size: 24px;
  }
  
  header nav {
  display: none;
  flex-direction: column;
  text-align: center;
  }
  
  header nav.open {
  display: flex;
  }
  
  .hamburger {
  display: flex;
  }

  .biography-section {
  padding: 30px 15px;
  min-height: 50vh;
  }

  .biography-content {
  max-width: 90%;
  padding: 15px;
  }

  .biography-content h2 {
  font-size: 24px;
  }

  .biography-content p {
  font-size: 16px;
  line-height: 1.4;
  }

  .albums-container {
  flex-direction: column;
  align-items: center;
  }
  
  .album {
  max-width: 250px;
  }
  
  .album-title {
  font-size: 16px;
  }
  
  .album-description {
  font-size: 15px !important;
  }

  .songs-section {
  padding: 40px 0;
  }
  
  .songs-title {
  font-size: 30px;
  }
  
  .songs-container {
  gap: 15px;
  flex-direction: column;
  align-items: center;
  }
  
  .song {
  width: 90%;
  max-width: 250px;
  transform: rotate(-10deg);
  }
  
  .song-2 {
  transform: rotate(10deg);
  }
  
  .song-3 {
  transform: rotate(-15deg);
  }
  
  .song h3 {
  font-size: 17px !important;
  }
  
  .song p {
  font-size: 15px !important;
  }
  
  .song-btn {
  font-size: 14px;
  padding: 8px 16px;
  }
  
  footer {
  padding: 20px 30px;
  }
                      
  footer .newsletter input[type="email"] {
  width: 100%;
  }
                      
  footer button {
  width: 100%;
  }
}
  
  
  @media (max-width: 1024px) {
  header {
  padding: 15px 20px;
  }
  
  header .logo {
  font-size: 28px;
  }

  .biography-section {
  height: auto;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  }

  .biography-content {
  max-width: 90%;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  }

  .biography-content h2 {
  font-size: 30px;
  }

  .biography-content p {
  font-size: 17px;
  line-height: 1.5;
  }
  
  .albums-container {
  flex-direction: column;
  align-items: center;
  }
  
  .album {
  width: 80%;
  max-width: 300px;
  }
  
  .album-title {
  font-size: 18px;
  }
  
  .album-description {
  font-size: 14px;
  }

  .songs-section {
  height: auto;
  padding: 50px 20px;
  text-align: center;
  }

  .songs-title {
  font-size: 36px;
  }

  .songs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  }

  .song {
  width: 80%;
  max-width: 280px;
  transform: rotate(-5deg);
  }

  .song-2 {
  transform: rotate(5deg);
  }

  .song-3 {
  transform: rotate(-5deg);
  }

  .song h3 {
  font-size: 18px;
  }

  .song p {
  font-size: 14px;
  }

  .song-btn {
  font-size: 14px;
  padding: 8px 16px;
  }
  
  footer {
  padding: 30px 40px;
  }
                  
  footer .newsletter input[type="email"] {
  width: 250px;
  }
                  
  footer button {
  width: 250px;
  }
}
  
  
  @media (max-width: 1440px) {
  .biography-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  }

  .biography-content {
  max-width: 60%;
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  }

  .biography-content h2 {
  font-size: 36px;
  }

  .biography-content p {
  font-size: 18px;
  }

  .songs-section {
  padding: 60px 40px;
  text-align: center;
  }

  .songs-title {
  font-size: 36px;
  margin-bottom: 30px;
  }

  .songs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  }

  .song h3 {
  font-size: 18px;
  }

  .song p {
  font-size: 16px;
  }

  .song-btn {
  font-size: 16px;
  padding: 10px 20px;
  }
}