/* ================= LAYOUT ================= */
.main {
  padding-top: 120px;
}

/* ================= HERO ================= */
.premium-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 120px;
}

.premium-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(88, 101, 242, 0.15),
    transparent 70%
  );
  filter: blur(120px);
  z-index: 0;
}

.premium-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.15);
  color: #5865f2;
  font-weight: 700;
  margin-bottom: 20px;
}

.premium-hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 16px;
}

.premium-hero p {
  font-size: 18px;
  opacity: 0.7;
  line-height: 1.7;
}

/* ================= PRICING ================= */
.pricing {
  max-width: 1100px;
  margin: 0 auto 140px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.price-card {
  position: relative;
  padding: 34px 26px;
  border-radius: 24px;
  text-align: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);

  transition: 0.35s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price-main {
  font-size: 40px;
  font-weight: 900;
  color: #5865f2;
}

.price-sub {
  opacity: 0.7;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  opacity: 0.8;
}

.price-card li {
  margin: 8px 0;
}

/* FEATURED */
.price-card.featured {
  border: 1px solid rgba(88, 101, 242, 0.5);
  box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.25);
}

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5865f2, #4752c4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

/* ================= PAYMENTS ================= */
.payments {
  text-align: center;
  margin-bottom: 120px;
}

.payments h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.payment-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-item {
  padding: 14px 24px;
  border-radius: 16px;

  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.2);

  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

/* ================= HOW TO ================= */
.how-to {
  max-width: 900px;
  margin: 0 auto 140px;
  text-align: center;

  padding: 70px 40px;
  border-radius: 28px;

  background: radial-gradient(
    circle at top,
    rgba(88, 101, 242, 0.25),
    rgba(88, 101, 242, 0.05)
  );
}

.how-to h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.how-to p {
  opacity: 0.75;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* DISCORD BUTTON */
.discord-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 34px;
  border-radius: 16px;

  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.discord-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(88, 101, 242, 0.6);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: 0.3s ease;
}

.discord-cta:hover .cta-glow {
  opacity: 1;
}

/* ================= GAMES ================= */
.games {
  max-width: 1200px;
  margin: 0 auto 140px;
  text-align: center;
}

.games h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.games-desc {
  opacity: 0.7;
  margin-bottom: 50px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.game-card {
  position: relative;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.game-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.7);
  transform: scale(1.2);
}

.game-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: all 0.35s;
}

.game-card:hover img {
  transform: scale(1.06);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.game-info {
  position: absolute;
  z-index: 4;
  bottom: 16px;
  left: 20px;
  right: 20px;
  text-align: left;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.game-info h3 {
  font-size: 18px;
  font-weight: 800;
}

.game-info span {
  font-size: 13px;
  opacity: 0.75;
}

/* COMING SOON */
.game-card.coming {
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(
    circle at top,
    rgba(88, 101, 242, 0.2),
    rgba(88, 101, 242, 0.05)
  );
}

.coming-inner {
  text-align: center;
}

.coming-inner span {
  font-size: 22px;
  font-weight: 800;
  display: block;
}

.coming-inner small {
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .premium-hero h1 {
    font-size: 44px;
  }

  .pricing {
    gap: 20px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .game-card {
    height: 200px;
  }

  .how-to h2,
  .games h2 {
    font-size: 30px;
  }
}
