@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: url('https://share.google/c0eeTZzCiAywy7jMF') center/cover fixed no-repeat;
  backdrop-filter: blur(3px);
}

.container {
  background: rgba(0,0,0,0.55);
  border-radius: 20px;
  max-width: 480px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255,20,147,0.4);
}

.banner h1 { color: #00ffff; margin-bottom: 5px; }
.banner p { font-size: 0.9rem; opacity: 0.8; }

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff4ecb;
  margin-top: 10px;
  box-shadow: 0 0 20px #ff4ecb;
}

.whatsapp {
  display: inline-block;
  margin: 8px 0 15px;
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
}

.nav {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-top: 15px;
  padding: 10px;
}

.nav a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.nav a.active, .nav a:hover {
  color: #00ffff;
  font-weight: 600;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.stat {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px;
  width: 40%;
}

.stat h3 { color: #00ffff; }

.page-text { margin: 30px 15px; }

footer {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 20px;
}
/* 🎵 Music Button */
.music-btn, .theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff7dee, #7d7dff);
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 0 15px #ff7dee;
  transition: 0.3s;
  z-index: 999;
}
.theme-toggle {
  right: 120px;
}
.music-btn:hover, .theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff7dee;
}

/* ✨ Floating Text Animation */
.floating-text {
  position: fixed;
  color: #ffbdf2;
  font-size: 1rem;
  text-shadow: 0 0 10px #ff7dee;
  animation: float 3s ease-in-out infinite alternate;
  z-index: 50;
}
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

/* 👁️ Visitor Counter */
.visit-counter {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.05);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 0 10px #7d7dff;
  backdrop-filter: blur(10px);
}

/* 🌗 Light Theme */
body.light-theme {
  background: linear-gradient(180deg, #fff, #f2f2ff);
  color: #000;
}
body.light-theme header {
  background: rgba(0,0,0,0.05);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
body.light-theme .card {
  background: rgba(0,0,0,0.05);
  color: #000;
}
