body {
  margin: 0;
  background: black;
  overflow: hidden;
  height: 100vh;
  position: relative;
}

/* LOGO */
#logo-wrap {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

#logo-wrap img {
  width: 28vw;
  max-width: 260px;
}

/* SOCIAL */
#social-top {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 12px;
  z-index: 10000;
}

#social-top a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#social-top img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

/* MAIN BUTTONS */
.main-buttons {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 50px;
  z-index: 10;
}

.btn {
  padding: 22px 48px;
  font-size: 1.45rem;
  letter-spacing: 4px;
  background: transparent;
  color: #1D86EF;
  border: 2px solid #1D86EF;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px #1D86EF;
  text-align: center;
  min-width: 340px;
}

.btn:hover {
  background: #1D86EF;
  color: black;
  box-shadow: 0 0 50px #1D86EF;
  transform: scale(1.05);
}

/* POPUP */
#preorder-popup {
  position: fixed;
  bottom: 55%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  padding: 12px 20px;
  background: rgba(0,0,0,0.85);
  border: 1px solid #00ccff;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
}

#preorder-popup.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* VIDEO */
#wheldon-video {
  position: fixed;
  bottom: 0;
  left: -40vw;
  width: 40vw;
  max-width: 400px;
  transform: translateY(100px);
  z-index: 9999;
}

/* MOBILE */
@media (max-width: 768px) {
  .main-buttons {
    flex-direction: column;
    gap: 25px;
  }
  .btn {
    min-width: 280px;
    padding: 18px 40px;
    font-size: 1.25rem;
  }
  #logo-wrap img { width: 200px; }
  #social-top { top: 15px; left: 15px; gap: 8px; }
}