/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0e12; /* Fallback color */
  background-attachment: fixed;
  transition: background 15s ease !important;
}

/* Optional: Add subtle vignette */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Content Container (to keep your content visible) */
.content-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  backdrop-filter: blur(2px);
}


/* Main Container */
.profile-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Profile Header */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
  padding-left: 20px;
}

.profile-image {
  width: 140px;
  height: 140px;
  border-radius: 10%;
  object-fit: cover;

}

.profile-name {
  font-size: 50px;
  font-weight: 600;
  margin-top: 18px;
  margin-left: 8px;
  color: white;
}




.profile-stats {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.profile-stats svg {
  margin-right: 5px;
  opacity: 0.7;
}

.profile-stats .dot {
  margin: 0 8px;
  font-size: 24px;
  vertical-align: middle;
  opacity: 0.7;
}







/* Social Media Container */

/* Spotify Widget */
.spotify-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.spotify-container iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Share Notification */
.share-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  z-index: 1000;
  animation: fadeIn 0.3s, fadeOut 0.3s 2.7s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, -20px); }
}

/* Media Queries */
@media (max-width: 480px) {
  .profile-name {
    font-size: 28px;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

}
/* Bio Section Styles */
.profile-bio {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  font-weight: 200;
  margin: 10px 0 0 8px;
  text-align: left;
  line-height: 1.4;
  max-width: 80%;
  padding-bottom: 8px;
  position: relative;
}

/* Optional: Add a subtle decorative element */
.profile-bio::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}
.no-activity {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  padding-bottom: 20px; /* Optional: Add some space from the bottom */
}

/* Adjust the stats container to account for the bio */
.profile-stats {
  margin-top: 5px; /* Reduced from 8px to account for bio spacing */
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .profile-bio {
    font-size: 14px;
    max-width: 90%;
  }
}

/* Single Social Icon Animation - Bigger Version */
.social-container {
  position: absolute;
  top: 60px;
  right: 40px;
  z-index: 10;
  width: 80px;  /* Increased from 50px */
  height: 80px; /* Increased from 50px */
}

.social-icons {
  position: relative;
  height: 100%;
}

.social-icons a {
  position: absolute;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 20px;  /* Increased from 40px */
  height: 20px; /* Increased from 40px */
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px; /* Increased from 8px */
  transition: all 0.5s ease;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(20px);
  text-decoration: none; /* Added to remove underline */
}

.social-icons a.active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .social-container {
    right: 30px;
    width: 70px; 
    right: 70px; 
    bottom: 70px; /* Increased from 40px */
    height: 70px; /* Increased from 40px */
  }

  .social-icons a {
    width: 50px;  /* Increased from 35px */
    height: 50px; /* Increased from 35px */
    font-size: 20px; /* Increased from 46px (fixed typo) */
  }
}




/* Simplified Cool Like Button Styles */
.interaction-container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px 0;
  z-index: 1000;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.buttons-row {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom);
}

.like-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.like-button {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  backdrop-filter: blur(5px);
}

/* Glow effect */
.like-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,51,102,0.4) 0%, rgba(255,255,255,0) 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.like-button:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.like-button:hover::before {
  opacity: 0.8;
  transform: scale(1.5);
}

.like-button:active {
  transform: scale(0.95);
}

.like-button i {
  font-size: 26px;
  color: #ffffff;
  transition: all 0.25s ease;
  z-index: 2;
}

.liked .like-button {
  background: rgba(255, 51, 102, 0.3);
  border-color: rgba(255, 51, 102, 0.6);
}

.liked .like-button i {
  color: #ff3366;
  filter: drop-shadow(0 0 6px rgba(255, 51, 102, 0.7));
}

.like-count {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.liked .like-count {
  transform: scale(1.1);
  color: #ffccd5;
}

.like-message {
  margin-top: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(5px);
}

.show-message {
  opacity: 1;
  transform: translateY(0);
}

/* Simple Heartbeat Animation */
@keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.liked .like-button i {
  animation: heartbeat 0.8s ease-in-out;
}

/* Pulse ring animation when liked */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 51, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
  }
}

.liked .like-button {
  animation: pulse-ring 1.2s ease-out;
}

/* Simple floating hearts */
@keyframes float-up {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-80px) scale(1.2);
    opacity: 0;
  }
}

.floating-heart {
  position: absolute;
  color: #ff3366;
  font-size: 16px;
  pointer-events: none;
  z-index: 10;
  animation: float-up 1.5s ease-out forwards;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .like-button {
    width: 52px;
    height: 52px;
  }
  .like-button i {
    font-size: 24px;
  }
}

/* Simplified CSS for Introduction Page Elements */

.intro-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  background: #ffffff;
  position: relative;
}

.intro-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.intro-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.intro-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  width: 100%;
}

.feature {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2rem;
  color: #4a6cf7;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #333;
}

.feature p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #4a6cf7;
  color: white;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(74, 108, 247, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #3a5ce5;
  box-shadow: 0 6px 8px rgba(74, 108, 247, 0.4);
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(74, 108, 247, 0.3);
}

.main-footer {
  margin-top: 3rem;
  padding: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  width: 100%;
  border-top: 1px solid #eee;
}

.main-footer a {
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 600;
}

.main-footer a:hover {
  text-decoration: underline;
}

.footer-note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #888;
}

/* Responsive design */
@media (max-width: 768px) {
  .intro-content h1 {
    font-size: 2rem;
  }

  .intro-content p {
    font-size: 1rem;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .intro-content h1 {
    font-size: 1.8rem;
  }

  .feature {
    padding: 1.25rem;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}


