/* style.css */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.d {
  position: fixed;
  width: 100%;
  height: 100%;
}
.d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.download-btn {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 4rem;
  background: #fff;
  border-radius: 999px;
  font-weight: bold;
  color: #365a1e;
  white-space: nowrap;
  z-index: 999;
  cursor: pointer;
}
.floating-icon {
  position: fixed;
  right: 1rem;
  top: 75%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 72px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.floating-icon img {
  width: 100%;
  display: block;
}
