* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: radial-gradient(circle at 50% 40%, #0b1220 0%, #05070c 60%, #03050a 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
}

/* CENTER CONTAINER */
.container {
  position: relative;
  text-align: center;
  z-index: 2;
}

/* GLOW EFFECT */
.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: #4da3ff;
  filter: blur(260px);
  opacity: 0.12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* HERO TEXT */
h1 {
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.05;

  background: linear-gradient(180deg, #ffffff 0%, #1c6aca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 30px rgba(77, 163, 255, 0.08);
}

p {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 16px;
  letter-spacing: 0.2px;
}

/* BUTTONS */
.buttons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: white;
  border: none;
  transition: 0.2s ease;
  cursor: pointer;
}

/* BUTTON COLORS */
.discord {
  background: #5865F2;
  border: none;
}

.download {
  background: #1f2937;
}

.purchase {
  background: #4da3ff;
  border: none;
}

/* HOVER */
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-warning {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #64748b;
  opacity: 0.8;
  text-align: center;
  letter-spacing: 0.2px;
  user-select: none;
}

.key-box {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.key-box input {
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #2b3b55;
  background: #0b1220;
  color: white;
  outline: none;
  width: 200px;
}

.key-box input:focus {
  border-color: #4da3ff;
}

#status {
  margin-top: 15px;
  font-size: 13px;
  color: #94a3b8;
}

.payment-boxes {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.payment-card {
  width: 200px;
  padding: 18px;
  border-radius: 8px;
  background: #0b1220;
  border: 1px solid #2b3b55;
  text-align: center;
  transition: 0.2s ease;
}

.payment-card h2 {
  color: white;
  font-size: 20px;
  margin-bottom: 6px;
}

.payment-card p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.payment-card:hover {
  transform: translateY(-3px);
  border-color: #4da3ff;
}

/* ROBUX BOX */
.robux {
  border-color: #00a2ff;
}

/* LTC BOX */
.ltc {
  border-color: #4da3ff;
}

.payment-card .btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  border: none;
  transition: 0.2s ease;
}

/* ROBUX */
.robux-btn {
  background: #3471b3;
}

/* LTC */
.ltc-btn {
  background: #3471b3;
}

/* hover */
.payment-card .btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 10, 0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* POPUP BOX */
.modal-content {
  width: 320px;
  padding: 20px;
  border-radius: 10px;

  background: #0b1220;
  border: 1px solid #2b3b55;

  text-align: center;

  box-shadow: 0 0 40px rgba(77, 163, 255, 0.15);
  animation: fadeIn 0.2s ease;
}

/* TITLE */
.modal-content h2 {
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}

/* TEXT */
.modal-content p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* INPUT */
.modal-content input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 5px;

  border: 1px solid #2b3b55;
  background: #05070c;
  color: white;

  outline: none;
  margin-bottom: 12px;
}

.modal-content input:focus {
  border-color: #4da3ff;
}

/* BUTTONS */
.modal-content button {
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 13px;
  margin: 5px;
  transition: 0.2s ease;
}

/* PRIMARY BUTTON */
.modal-content button:first-of-type {
  background: #4da3ff;
}

/* CANCEL BUTTON */
.modal-content .cancel {
  background: #1f2937;
}

/* HOVER */
.modal-content button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* FADE ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}