/* === Base Reset === */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background-image: url('https://www.pubgmobile.com/images/event/royalepass/thum4_en.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* === Video Banner === */
.video-banner {
  position: relative;
  width: 100%;
  max-width: 835px;
  aspect-ratio: 950/320;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner .overlay-text {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #FFD700;
  font-family: Impact, sans-serif;
  font-size: 1.2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
  .video-banner {
    max-width: 100%;
    aspect-ratio: 16/7;
  }
  .video-banner .overlay-text {
    font-size: 1rem;
  }
}

/* === Container === */
.container {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  width: 95%;
  max-width: 420px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.6);
}

.container h1 {
  text-align: center;
  margin-bottom: 15px;
  color: #FFD700;
}

label {
  display: block;
  margin: 10px 0;
  font-size: 14px;
  color: #f0f0f0;
}

input, select {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: none;
  margin-top: 4px;
  box-sizing: border-box;
}

button {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  background-color: #FFD700;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #ffce00;
}

#msg {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

/*===Responsive===*/
@media (max-width: 480px) {
  .container {
    padding: 15px;
  }

  button {
    font-size: 14px;
  }
}

/* ================================================== === */

.uc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default desktop: 3 per row */
  gap: 15px;
}

.uc-box {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: 0.3s;
}

.uc-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
}

.uc-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 5px auto;
}

.uc-amount {
  font-weight: bold;
  color: #ffd580;
  margin: 10px 0 5px;
  font-size: 13px;
}

.uc-price {
  font-size: 12px;
  color: #fff;
}

/* UC grid -> 3 columns x 2 rows (for 6 boxes) */
.uc-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  }

  /* Submit button full width */
  #submitOrder {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

/* ================================================== === */
/*payment box*/

.payment-box {
      background: rgba(0, 0, 0, 0.6);
      border: 2px solid rgba(255, 165, 0, 0.4);
      border-radius: 15px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
      backdrop-filter: blur(8px);
      max-width: 450px;
      margin: 0 auto 20px auto; 
    }

    @keyframes glowBorder {
      from { box-shadow: 0 0 10px orange; }
      to { box-shadow: 0 0 25px #ffb84d; }
    }

    .payment-box h2 {
      color: orange;
      font-size: 1.7em;
      margin-bottom: 20px;
      text-shadow: 0 0 10px orange;
    }

    .method {
      margin: 15px 0;
      padding: 12px;
      background: rgba(255, 140, 0, 0.15);
      border-radius: 10px;
      box-shadow: inset 0 0 12px rgba(255,165,0,0.5);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .method span {
      font-weight: bold;
      color: #fff;
      text-shadow: 0 0 6px #ffa500;
    }

    .method small {
      color: #ffcc80;
      font-size: 0.95em;
      letter-spacing: 0.5px;
      margin-left: 5px;
    }

    .copy-btn {
      margin-left: 8px;
      background: rgba(255,165,0,0.15);
      color: orange;
      border: 1px solid orange;
      border-radius: 8px;
      padding: 5px 10px;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(255,140,0,0.4);
    }

    .copy-btn:hover {
      background: orange;
      color: black;
      box-shadow: 0 0 15px orange;
      transform: scale(1.05);
    }

    .copy-btn svg {
      width: 16px;
      height: 16px;
    }

    .warning {
      color: #ffae42;
      font-size: 0.9em;
      margin-top: 15px;
      text-shadow: 0 0 5px #ff9900;
    }

    /* ================================================== === */

    @media (max-width: 480px) {
      .payment-box {
        max-width: 90%;
        padding: 10px;
        font-size: 14px;
      }
    } 