/*=========================
  GLOBAL VARIABLES + RESET
=========================*/
@font-face {
  font-family: 'Audiowide';
  src: url('../fonts/Audiowide-Regular.woff2') format('woff2'),
       url('../fonts/Audiowide-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-bg-color: #0F1624;
  --text-color-primary: #f2f5f7;
  --accent-color: #32CD32;
  --font-family-main: 'Lucida Sans', sans-serif;
  --font-family-heading: 'Audiowide', sans-serif;
  --font-size-main: 18px;
  --heading-font-size: 3.5em;
  --content-padding: 10px;
}

* {
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 0;
}

/*=========================
  BACKGROUND + BODY
=========================*/
body {
  position: relative;
  min-height: 100vh;
  color: var(--text-color-primary);
  font-family: var(--font-family-main);
  font-size: var(--font-size-main);
  padding: var(--content-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('../br_stars.svg'), radial-gradient(circle, #0F1624 0%, #2C304D 100%);
  background-size: cover;
  z-index: -1;
  opacity: 1;
}

/* Twinkling Star Animations */
.star {
  opacity: 1;
  animation: twinkle 3s infinite ease-in-out, moveStar 10s infinite linear;
  animation-delay: calc(0.5s * var(--i));
  transform-origin: center center;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes moveStar {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(calc(10px * var(--i)), calc(2px * var(--i))); }
}

/*=========================
  HEADINGS & TEXT
=========================*/
h1, h2, p, ul {
  text-align: center;
}

h1, h2 {
  text-shadow: 0 0 5px rgba(50, 205, 50, 0.7),
               0 0 10px rgba(50, 205, 50, 0.6),
               0 0 15px rgba(50, 205, 50, 0.5);
  letter-spacing: 1px;
  word-spacing: 2px;
}

h1 {
  font-family: var(--font-family-heading);
  font-size: var(--heading-font-size);
  margin-top: 30px;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeIn 1.4s ease-in forwards;
}

.tagline {
  font-family: var(--font-family-heading);
  font-size: 2em;
  color: var(--text-color-primary);
  opacity: 0;
  animation: fadeInTagline 1.5s ease-in forwards;
  animation-delay: 1.5s;
  text-shadow: 0 0 5px rgba(50, 205, 50, 0.7),
               0 0 10px rgba(50, 205, 50, 0.6),
               0 0 15px rgba(50, 205, 50, 0.5);
  position: relative;
  top: 0;
  z-index: 2;
}

/* Fade animations */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInTagline {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.fade-delay-1 { animation-delay: 2.5s; }
.fade-delay-2 { animation-delay: 3.5s; }
.fade-delay-3 { animation-delay: 4.5s; }
.fade-delay-4 { animation-delay: 5.5s; }
.fade-delay-5 { animation-delay: 6.5s; }
.fade-delay-6 { animation-delay: 7.5s; }

/*=========================
  MAIN LAYOUT + IMAGES
=========================*/
main {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.2em 1em 1em; /* ⬅️ was 2em; we reduce top spacing */
  flex-grow: 1;
}

.super-image {
  max-width: 230px;
  border-radius: 23px;
  margin: 1rem auto;
  display: block;
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.3);
}

.buy-now-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.buy-now {
  background-color: var(--accent-color);
  color: var(--text-color-primary);
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 30px;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.5s ease, transform 0.3s ease, background-color 0.3s ease;
  margin-top: 25px;
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
}

.buy-now:hover {
  background-color: #28A428;
  transform: scale(1.05);
}

/*=========================
  FEATURE LIST
=========================*/
.feature-list {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}

.feature-list p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.feature-list ul {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 1rem;
  margin: 0.5rem 0;
}

/*=========================
  MODAL
=========================*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 30, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #11162c;
  border: 2px solid limegreen;
  border-radius: 16px;
  padding: 2em;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 25px limegreen;
  font-family: var(--font-family-main);
  color: white;
}

.modal-content h2 {
  font-family: var(--font-family-heading);
  color: #adff2f;
  margin-bottom: 0.5em;
  font-size: 1.8em;
}

.modal-sub {
  font-size: 0.95em;
  margin-bottom: 1em;
  color: #ddd;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 0.75em;
  margin: 0.5em 0;
  border: 1px solid #444;
  border-radius: 8px;
  background: #1c1f2e;
  color: #fff;
  font-size: 1em;
}

.form-container textarea {
  resize: vertical;
  min-height: 80px;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5em;
  color: #adff2f;
  cursor: pointer;
}

.hidden {
  display: none;
}

/*=========================
  FOOTER
=========================*/
footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 1em;
  text-align: center;
  background-color: var(--primary-bg-color);
  margin-top: 2em;
}

.disclaimer-text {
  font-size: 0.8em;
  line-height: 1.4em;
  margin: 0 auto;
  max-width: 80%;
}
.pricing-section {
  background-color: #0F1624;
  color: #f2f5f7;
  padding: 4em 2em;
  text-align: center;
}

.pricing-heading {
  font-family: 'Audiowide', sans-serif;
  font-size: 2.5em;
  margin-bottom: 2em;
  text-shadow: 0 0 10px #32CD32;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.pricing-card {
  background: #1a2238;
  border: 2px solid #32CD32;
  border-radius: 20px;
  padding: 2em;
  width: 300px;
  box-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.03);
}

.tier-title {
  font-family: 'Audiowide', sans-serif;
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: #ADFF2F;
}

.price {
  font-size: 2.5em;
  color: #32CD32;
  margin: 0.5em 0;
}
.pricing-card-wrapper {
  position: relative;
}

.ribbon {
  position: absolute;
  top: 20px;
  left: -60px;
  width: 200px;
  text-align: center;
  background-color: rgba(0, 255, 0, 0.2); /* lime green, lightly opaque */
  color: #00ff00;
  transform: rotate(-45deg);
  font-weight: bold;
  font-size: 0.9rem;
  padding: 4px 0;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  pointer-events: none;
}
.features {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
}

.features li {
  margin: 0.5em 0;
}

.recommended {
  border: 3px solid #ADFF2F;
  box-shadow: 0 0 20px lime;
}

.buy-now {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.75em 1.5em;
  background-color: #32CD32;
  color: #0F1624;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.buy-now:hover {
  background-color: #28A428;
}
@media (min-width: 700px) and (max-width: 1024px) {
  .pricing-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}