/* ---------------- GENERAL PAGE STYLE ---------------- */
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0e0f1b 0%, #3a1c2d 100%);
  margin: 0;
  text-align: center;
  min-height: 100vh;
}

/* ---------------- HEADER ---------------- */
header {
  padding: 60px 20px 20px;
}

header h1 {
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

header h1 span {
  color: #ff5c40;
}

header p {
  opacity: 0.8;
  font-size: 1.1em;
}

/* ---------------- TOP LINKS ---------------- */
.top-links {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.top-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.top-links a:hover {
  color: #ff5c40;
}

/* ---------------- PRICING LAYOUT ---------------- */
main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 60px;
  padding: 0 20px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

/* ---------------- PRICING BOXES ---------------- */
.package {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.package:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 92, 64, 0.4);
}

.package h2 {
  color: #ff5c40;
  margin-bottom: 10px;
  font-size: 1.8em;
}

.package p {
  color: #ccc;
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* ---------------- MOST POPULAR BADGE ---------------- */
.most-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff5c40;
  color: #fff;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 12px;
  font-size: 0.9em;
  box-shadow: 0 0 10px rgba(255,92,64,0.6);
  text-transform: uppercase;
}

/* ---------------- BUY NOW BUTTONS ---------------- */
.package button {
  width: 100%;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  background-color: #888;      /* grey by default */
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
}

.package button:hover {
  background-color: #ff5c40;   /* orange on hover */
}

.package button:active {
  background-color: #ff5c40;   /* stays orange when clicked */
  transform: scale(0.97);
}

/* ---------------- PROCESSING MESSAGE ---------------- */
#processing {
  display: none;
  margin-top: 30px;
  font-weight: bold;
  color: #ff5c40;
}

/* ---------------- FOOTER ---------------- */
footer {
  margin-top: 40px;
  padding-bottom: 20px;
  opacity: 0.6;
}

/* ---------------- SECURE PAYMENT NOTE ---------------- */
.secure-note {
  margin-top: 30px;
  font-size: 1.1em;
  color: #ccc;
  text-align: center;
  opacity: 0.9;
}

.secure-note span {
  color: #ff5c40;
  font-weight: bold;
}


/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 950px) {
  main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .package {
    width: 80%;
    margin-bottom: 20px;
  }

  .most-popular {
    top: -10px;
  }
}
