/* Absolutely positioned hero image above hero-content */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background: none;
  position: relative;
}
.hero-img-absolute {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 3;
  margin-bottom: -40px;
}
.hero-img-absolute img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  position: relative;
  top: -30px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  top: -100px;
  max-width: 520px;
}
.hero-icon img {
  max-width: 2200px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-content {
  max-width: 520px;
  overflow: visible;
}
/* Best Seller Container: stacks badge above card */
.best-seller-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 10;
}
/* Make best seller card grow like its siblings */


/* Best Seller Badge - now outside the card */
/* Best Seller Badge - Modern, clean, single rule */
.best-seller-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  color: #6c63ff;
  font-size: 1rem;
  font-weight: 900;
  padding: 0.18rem 1.1rem;
  border-radius: 999px;
  border: 2px solid #6c63ff;
  box-shadow: 0 2px 10px 0 #6c63ff22, 0 1px 0 #ffcc70 inset;
  letter-spacing: 1.1px;
  z-index: 20;
  text-transform: uppercase;
  pointer-events: none;
  transition: box-shadow 0.2s;
  filter: drop-shadow(0 1px 6px #ffcc7033);
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.3px;
}

/* Outline for best seller card, visually linking to badge */
.best-seller-outline {
  border: 2.5px solid #6c63ff !important;
  box-shadow: 0 0 0 4px #fff, 0 8px 32px 0 rgba(31,38,135,0.18);
  position: relative;
  margin-top: 0;
}
/* Best Seller Badge - Modern Style */
/* (Removed duplicate and nested .best-seller-badge rules) */
/* Package Section Layout */
.package-section {
  margin-top: -12rem; /* moves the whole section closer to hero */
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 2;
}

.package-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.2rem; /* spacing between title and packages */
  letter-spacing: 0.5px;
  text-align: center;
  margin-left: 0;
  margin-top: 0; /* reset top margin */
}

.package-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem; /* adds space between title and packages */
  margin-bottom: 1.5rem;
}

#products > .package-section:nth-child(2) .package-title {
  margin-top: 12rem; /* adjust this value to taste */
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Gradient Background Animation */
body {
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
  color: #fff;
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #6c63ff);
  background-size: 400% 400%;
  animation: gradientBG 5s ease infinite;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Shapes */
.bg-shapes {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(8px);
  animation: floatShape 18s ease-in-out infinite alternate;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navbar */
header {
  background: rgba(20, 20, 40, 0.7);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
  backdrop-filter: blur(16px) saturate(180%);
  padding: 1.2rem 3vw;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #6c63ff44;
}
.logo-gradient {
  background: linear-gradient(90deg, #6c63ff 40%, #ffcc70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* spacing between icon and text */
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffcc70;
  background: rgba(255,255,255,0.07);
}

.nav-btn {
  text-decoration: none !important;
  margin-left: 2rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background: #fff;
  color: #6c63ff;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px #6c63ff22;
  transition: background 0.2s, color 0.2s;
}

.nav-btn:hover {
  background: #6c63ff;
  color: #fff;
}


/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: none;
}


.hero-content {
  background: rgba(255,255,255,0.13);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  padding: 3.5rem 2.2rem 2.7rem 2.2rem;
  max-width: 520px;
  margin: 0 auto;
  backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,0.18);
  position: relative;
  z-index: 2;
}
.hero-icon {
  margin-bottom: 1.2rem;
  animation: popIn 1.2s cubic-bezier(.4,2,.6,1);
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
.gradient-text {
  background: linear-gradient(90deg, #6c63ff 40%, #ffcc70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight {
  color: #ffcc70;
  font-weight: 600;
}

.hero h2 {
  font-size: 2.7rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px #6c63ff33;
}

.hero-sub {
  margin-bottom: 2.2rem;
  font-size: 1.25rem;
  color: #e0e0ff;
  font-weight: 400;
}

/* Buttons */
.btn {
  text-decoration: none !important;
  background: linear-gradient(90deg, #6c63ff 60%, #574bff 100%);
  color: #fff;
  padding: 0.9rem 1.7rem;
  border-radius: 12px;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  display: inline-block;
  box-shadow: 0 2px 12px #6c63ff33;
  letter-spacing: 0.5px;
}
.btn:hover, .btn:focus {
  transform: scale(1.06) translateY(-2px);
  background: linear-gradient(90deg, #574bff 60%, #6c63ff 100%);
  box-shadow: 0 0 24px #6c63ff66;
}
.glow:hover {
  box-shadow: 0 0 32px #6c63ffcc;
}
.buy-btn {
  margin-top: 1.2rem;
  width: 100%;
  font-size: 1.08rem;
}

/* Products */
.products {
  font-weight: bold;
  padding: 7rem 2vw 5rem 2vw;
  text-align: center;
  background: none;
}

.products h2 {
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.product-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Cards */
.product-card {
  background: rgba(255,255,255,0.16);
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  padding: 3.5rem 1.7rem 2.7rem 1.7rem;
  /* extra top padding for badge */
  backdrop-filter: blur(18px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  /* No min-height, let content determine height */
/* Stepped heights for small, big, biggest product cards */
.product-card--small {
  min-height: 420px;
}
.product-card--big {
  min-height: 520px;
}
.product-card--biggest {
  min-height: 650px;
}
  min-width: 290px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
}

.product-content {
  width: 100%;
}

.product-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.2rem;
  gap: 0.5rem;
}
.product-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 20px 48px 0 #6c63ff55;
  border-color: #6c63ff88;
}
.product-img {
  display: block;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0 2px 8px #6c63ff33);
  border-radius: 16px;
}
.product-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: linear-gradient(90deg, #6c63ff 60%, #ffcc70 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px #6c63ff33;
  letter-spacing: 0.5px;
  z-index: 2;
}
.badge-alt {
  background: linear-gradient(90deg, #ffcc70 60%, #6c63ff 100%);
  color: #302b63;

}
.product-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  color: #ffcc70;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.product-features li {
  margin-bottom: 0.5rem;
  color: #ffcc70;
  text-shadow: 0 1px 4px #302b6344;
  padding-left: 0.2rem;
}
.product-desc {
  color: #eaeaff;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.product-price {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.13rem;
  font-weight: 700;
  color: #ffcc70;
  background: rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 0.2rem 0.7rem;
  margin-left: 0.3rem;
  box-shadow: 0 1px 4px #ffcc7033;
}

.shop-info {
  font-size: 2rem;
  opacity: 0.85;
}

.gradient-text {
  background: linear-gradient(90deg, #6c63ff 40%, #ffcc70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-info p {
  transform: translateY(65px);
}

/* Contact */
.contact {
  padding: 6rem 2vw 4rem 2vw;
  text-align: center;
}
.contact-card {
  background: rgba(255,255,255,0.13);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  padding: 2.5rem 2rem 2.2rem 2rem;
  max-width: 400px;
  margin: 0 auto;
  backdrop-filter: blur(14px) saturate(160%);
  border: 1.5px solid rgba(255,255,255,0.18);
  position: relative;
  z-index: 2;
}
.contact-icon {
  margin-bottom: 1rem;
}
.contact-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}
.contact-card p {
  color: #e0e0ff;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}
.discord-icon {
  font-size: 1.2em;
  margin-right: 0.4em;
  vertical-align: middle;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1;
}

footer {
    text-align: center;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    padding: 1.5rem 3vw;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.2px;
    z-index: 2;
    position: relative;
    transform: translateY(80px);
}

/* Scroll Reveal Animation */
/* Enhanced scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.92) skewY(2deg);
  filter: blur(8px);
  transition:
    opacity 0.7s cubic-bezier(.4,2,.6,1),
    transform 0.7s cubic-bezier(.4,2,.6,1),
    filter 0.7s cubic-bezier(.4,2,.6,1);
  will-change: opacity, transform, filter;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1) skewY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .package-row {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  .product-card {
    min-width: 220px;
    max-width: 420px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero-content {
    padding: 2rem 0.7rem 2rem 0.7rem;
  }
  .products {
    padding: 6rem 0.5rem 3rem 0.5rem;
  }
  .product-card {
    padding: 1.3rem 0.7rem 1.7rem 0.7rem;
    min-height: 260px;
  }
  .contact {
    padding: 5rem 0.5rem 2rem 0.5rem;
  }
  .contact-card {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .package-title {
    margin-left: 0;
    font-size: 1.3rem;
    text-align: center;
  }
}
