* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: black;
  color: white;
  overflow-x: hidden;
}

/* Animated Background */
.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ff00cc, #3333ff, #00ffcc, #ff6600);
  background-size: 400% 400%;
  animation: move 15s ease infinite;
  z-index: -1;
}

@keyframes move {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.title {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 3rem;
  margin-top: 40px;
}

.subtitle {
  text-align: center;
  opacity: 0.8;
  margin-bottom: 40px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  width: 350px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

button {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: #ffffff22;
  color: white;
  transition: 0.3s;
}

button:hover {
  background: #ffffff44;
}

#chat-box {
  height: 150px;
  overflow-y: auto;
  background: rgba(0,0,0,0.3);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  text-align: left;
  font-size: 0.9rem;
}

.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  padding: 15px;
}