* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 500px;
  opacity: 1; /* Make visible immediately */
  transform: translateY(0); /* No initial offset */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px); /* Additional blur for content area */
  -webkit-backdrop-filter: blur(5px);
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  text-align: center;
  margin-bottom: 30px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05); /* Slight background for SVG visibility */
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Special handling for SVG images */
.profile-image img[src$=".svg"] {
  padding: 5px;  /* Add some padding for the SVG */
  object-fit: contain; /* Better for SVG files */
}

/* Enhanced Natural Precision font class with increased specificity */
.natural-precision,
h1.natural-precision,
h2.natural-precision {
  font-family: 'Natural Precision', sans-serif !important;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 10px;
  font-weight: normal;
  font-display: swap;
}

.profile p {
  color: #ccc;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.link-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.link-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.6s ease;
}

.link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.link-item:hover:before {
  left: 100%;
}

.link-item i {
  font-size: 1.4rem;
  margin-right: 12px;
}

.spotify {
  border-left: 4px solid #1DB954;
}

.apple {
  border-left: 4px solid #FB2D4E;
}

.youtube, .youtube-music {
  border-left: 4px solid #FF0000;
}

.amazon {
  border-left: 4px solid #FF9900;
}

.video-container {
  margin: 40px 0;
}

/* Video container heading with Natural Precision font */
.video-container h2,
.video-container h2.natural-precision {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Natural Precision', sans-serif !important;
  font-size: 1.8rem;
  color: #f5f7fa;
  font-weight: normal;
}

.youtube-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Social Icons Styling - Updated to remove underlines */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px; /* Increased margin to create space below video */
  margin-bottom: 20px;
}

.social-icon {
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-decoration: none; /* Remove underline */
}

/* Hover effects for different social platforms - Updated for the 3 icons */
.social-icon:hover {
  transform: translateY(-5px);
}

.social-icon:nth-child(1):hover {
  color: #E1306C; /* Instagram */
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social-icon:nth-child(2):hover {
  color: #4267B2; /* Facebook */
  box-shadow: 0 5px 15px rgba(66, 103, 178, 0.4);
}

.social-icon:nth-child(3):hover {
  color: #00f2ea; /* TikTok */
  box-shadow: 0 5px 15px rgba(0, 242, 234, 0.4);
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 40px;
  padding-bottom: 20px;
}

/* Artist Bio Section - Updated to be more minimalist */
.info-section {
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.info-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
}

/* Info header with Natural Precision font */
.info-header h2.natural-precision {
  font-family: 'Natural Precision', sans-serif !important;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: normal;
  text-transform: uppercase;
}

.info-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-header i.fa-chevron-down {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.info-header.active i.fa-chevron-down {
  transform: rotate(180deg);
}

.artist-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.artist-bio.active {
  max-height: 300px;
  padding: 10px 15px 20px;
  opacity: 1;
  transition: max-height 0.5s ease, padding 0.4s ease, opacity 0.4s ease 0.1s;
}

.artist-bio p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  text-align: center;
}

/* Location info in footer */
.location {
  font-size: 0.75rem;
  color: #666;
  margin-top: 5px;
}

/* Countdown Section Styles - Updated with Image Support */
.countdown-section {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin: 15px 0 30px 0;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fade-in 0.8s forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.countdown-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.countdown-image-container {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.countdown-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.countdown-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  min-width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.countdown-box span:first-child {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.countdown-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 5px;
}

.release-title {
  margin: 15px 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.presave-button {
  background-color: #1DB954;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 0.9rem;
}

.presave-button:hover {
  background-color: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 185, 84, 0.3);
}

.presave-button i {
  font-size: 1.1rem;
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }
  
  h1.natural-precision,
  .natural-precision {
    font-family: 'Natural Precision', sans-serif !important;
    font-size: 2.8rem;
  }
  
  .profile-image {
    width: 100px;
    height: 100px;
  }
  
  .social-icons {
    gap: 15px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .countdown-box {
    min-width: 50px;
    padding: 8px;
  }
  
  .countdown-box span:first-child {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.6rem;
  }
  
  .presave-button {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .countdown-image-container {
    max-width: 150px;
    margin-bottom: 10px;
  }
}
