* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Orbitron';
  background: linear-gradient(45deg, #000428, #004e92, #8a2be2);
  background-size: 400% 400%;
  animation: backgroundShift 10s ease infinite;
}

@keyframes backgroundShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

h2 {
  font-size: 2em;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0%, 100% {
    clip-path: inset(0 0 0 0);
  }
  25% {
    clip-path: inset(0 10% 0 0);
    transform: translateX(-10px);
  }
  50% {
    clip-path: inset(0 0 20% 0);
    transform: translateX(10px);
  }
}

.gif {
  width: 100%;
  max-width: 300px;
  border: 2px solid #00b3ff;
  box-shadow: 0 0 10px #00b3ff, 0 0 20px #00b3ff;
  transition: transform 0.3s ease;
}

.gif:hover {
  transform: scale(1.1);
}

.btn-group {
  margin-top: 50px;
  position: relative;
  height: 40px;
}

button {
  width: 150px;
  height: inherit;
  color: white;
  font-size: 1.2em;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border: 2px solid #ff00ff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  animation: flicker 1.5s infinite;
}

button.yes-btn {
  background: #00b3ff;
}

button.no-btn {
  background: #0d0d0d;
  color: #ff00ff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #ff00ff;
}

button:hover {
  background: #8a2be2;
  box-shadow: 0 0 20px #8a2be2, 0 0 30px #8a2be2;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.music-btn {
    position: fixed;
    top: 15px;
    right: 15px;  
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 20px;
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.2),
        rgba(78, 205, 196, 0.2)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.music-btn i {
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.music-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.3),
        rgba(78, 205, 196, 0.3)
    );
}

.music-btn.playing {
    animation: pulse 2s infinite;
}

.music-btn.playing i {
    animation: rotate 2s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 99, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
    }
}

@media (max-width: 768px) {
    .music-btn {
        width: 35px;
        height: 35px;
        margin: 0 15px;
    }

    .music-btn i {
        font-size: 1rem;
    }
}
