body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  overflow: hidden;
  position: relative;
}

/* Disk and Container */
.container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.disk {
  width: 80vmin; /* Larger disk on smaller screens */
  height: 80vmin;
  border-radius: 50%;
  background-image: url('https://upcdn.io/G22nhdY/raw/photo_2025-03-29_00-09-06.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
  animation: spin 8s linear infinite; /* Faster rotation for better effect */
  position: relative;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

audio {
  display: none;
}

/* Heart Falling Animation */
.heart {
  position: fixed;
  top: -5%;
  color: #ff4d4d;
  font-size: 20px;
  opacity: 0.8;
  z-index: 1;
  animation: fall linear forwards;
}

@keyframes fall {
  from {
      transform: translateY(-10vh);
      opacity: 1;
  }
  to {
      transform: translateY(100vh);
      opacity: 0;
  }
}
