* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #d4af37;
}

/* Background */
.hero {
  width: 100vw;
  height: 100vh;
  background: url('battlefield4-locker-4k.png') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 140px;
}

/* Title */
.vip-title {
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(212,175,55,0.7);
}

/* Logo */
.logo {
  width: 300px;
  max-width: 80vw;
}

/* VIP cards container */
.vip-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 650px;
  max-width: 95vw;
}

/* VIP card */
.vip-tier {
  background: rgba(0,0,0,0.82);
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 0 14px rgba(212,175,55,0.35);
  width: 700px;
  max-width: 95%;
  min-height: 140px;
}

.vip-tier.donate {
  border-color: #ffaa00;
}

/* Card text spacing */
.vip-tier h2 {
  margin: 6px 0 4px 0;
  font-size: 1.4rem;
}

.vip-tier p {
  margin: 4px 0 10px 0;
  font-size: 0.95rem;
}

/* Inputs */
.vip-tier input {
  width: 100%;
  padding: 6px;
  border-radius: 4px;
  border: none;
  margin-bottom: 8px;
  text-align: center;
}

/* BUY VIP button */
.vip-btn {
  display: inline-block;
  background: #d4af37;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.vip-btn:hover {
  background: #e6c15a;
  box-shadow: 0 0 10px rgba(212,175,55,0.8);
}

/* 📱 Phones (portrait) */
@media (max-width: 480px) {

  .hero-content {
    margin-bottom: 60px;
    gap: 14px;
  }

  .vip-stack {
    width: 100%;
    gap: 12px;
  }

  .vip-tier {
    width: 100%;
    padding: 10px 12px;
    min-height: 110px;
  }

  .vip-tier h2 {
    font-size: 1.2rem;
    margin: 4px 0;
  }

  .vip-tier p {
    font-size: 0.85rem;
    margin: 2px 0 8px 0;
  }

  .vip-tier input {
    padding: 6px;
    font-size: 0.9rem;
  }

  .vip-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/* 📱 Phones (landscape) & small tablets */
@media (max-width: 768px) {

  .vip-stack {
    width: 90vw;
  }

  .vip-tier {
    width: 100%;
    padding: 12px 16px;
  }

  .vip-btn {
    padding: 9px 18px;
  }
}

/* 💻 Tablets (portrait) */
@media (min-width: 769px) and (max-width: 1024px) {

  .vip-stack {
    width: 80vw;
  }

  .vip-tier {
    width: 100%;
    padding: 14px 20px;
  }
}
