body {
  margin: 0;
  font-family: Arial;
  color: white;
  overflow: hidden;
}

/* Music Button */
#musicBtn {
  position: fixed;
  top: 15px;
  right: 15px;
  padding: 8px 15px;
  border-radius: 10px;
  border: 1px solid orange;
  background: black;
  color: orange;
  cursor: pointer;
  z-index: 1000;
}

/* Background */
.ff-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("https://i.ibb.co/Jw9yJ1sw/20260428-175532.jpg") center/cover;
  opacity: 0.25;
  z-index: -3;
}

.fire {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom, rgba(255,100,0,0.4), transparent);
  animation: fireMove 2s infinite alternate;
  z-index: -2;
}

@keyframes fireMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

/* Particles */
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Container */
.container {
  text-align: center;
  padding: 20px;
}

.title {
  font-size: 26px;
  color: orange;
  text-shadow: 0 0 20px orange;
}

/* Profile */
.profile {
  position: relative;
  margin: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid orange;
  box-shadow: 0 0 25px orange;
  cursor: pointer;
  background: rgba(0,0,0,0.6);
}

.avatar {
  width: 90px;
  border-radius: 50%;
}

/* Cards */
.card {
  position: relative;
  margin: 15px;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid orange;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
}

/* Copy message RIGHT SIDE */
.copy-msg {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 13px;
  color: lime;
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  border-radius: 8px;
  opacity: 0;
  transition: 0.3s;
}

.copy-msg.show {
  opacity: 1;
  transform: translateY(-5px);
}

/* Social BIG */
.socials {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.telegram, .instagram {
  font-size: 40px;
  color: white;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.telegram:hover {
  color: #0088cc;
  box-shadow: 0 0 20px #0088cc;
  transform: scale(1.2);
}

.instagram:hover {
  color: #ff00aa;
  box-shadow: 0 0 20px #ff00aa;
  transform: scale(1.2);
}