body {
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #151515;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  color: #FFD700;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 0 8px #ffaa00;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
  transition: filter 0.2s, text-shadow 0.2s;
}
.nav-links a:hover {
  filter: brightness(1.3);
  text-shadow: 0 0 10px #FFD700;
}
.join-btn {
  background: linear-gradient(90deg, #FFD700, #FFB300);
  color: #111;
  padding: 0.6rem 1.4rem;
  border-radius: 24px;
  font-weight: bold;
  box-shadow: 0 0 20px #FFD70099, 0 2px 4px #000a;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  margin-left: 2rem;
}
.join-btn:hover {
  box-shadow: 0 0 40px #FFD700cc;
  transform: translateY(-3px) scale(1.04);
}

.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}
.hero h1 {
  color: #FFD700;
  text-shadow: 0 0 18px #FFBA00;
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}
.hero p {
  color: #ccc;
  font-size: 1.3rem;
}

.pricing {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 0;
}
.pricing-box {
  background: #222;
  border-radius: 12px;
  box-shadow: 0 0 24px #FFD70022;
  padding: 2rem 1.5rem;
  width: 200px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.pricing-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #FFD70077;
  border: 2px solid #FFD700;
}
.pricing-box .price {
  font-size: 2.4rem;
  color: #FFD700;
  margin: 1em 0 0.6em 0;
  text-shadow: 0 0 8px #FFD70099;
}
.pricing-box ul {
  list-style: none;
  padding: 0;
  margin-top: 1em;
  text-align: left;
}
.pricing-box ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}
.bundle {
  background: linear-gradient(120deg, #29220e 80%, #FFD700 120%);
  border: 2px solid #FFD700;
  box-shadow: 0 0 30px #FFD70055;
  transform: scale(1.07);
}

footer {
  color: #FFD700cc;
  background: #111;
  text-align: center;
  padding: 1.2em;
  font-size: 0.9rem;
  margin-top: 3rem;
  letter-spacing: 0.5px;
}

.typewriter {
  color: #FFD700;
  font-size: 2rem;
  margin: 0.7em 0 0.2em 0;
  min-height: 2.5em;
}
.cursor {
  color: #FFD700;
  animation: blink 1s infinite steps(1);
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.mission, .benefits {
  background: #181511;
  margin: 3rem auto 0;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  border-radius: 14px;
  max-width: 900px;
  box-shadow: 0 0 30px #FFD70022;
  text-align: center;
}
.mission h2, .benefits h2 { color: #FFD700; }
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2em 0;
}
.benefit-box {
  background: #22200f;
  color: #fff;
  border: 1.5px solid #FFD70055;
  border-radius: 10px;
  flex: 1 1 160px;
  min-width: 150px;
  max-width: 220px;
  padding: 1.2em 1em 1.2em 1em;
  box-shadow: 0 0 18px #FFD70033;
  transition: transform 0.18s, box-shadow 0.18s;
}
.benefit-box:hover { transform: scale(1.04); box-shadow: 0 0 32px #FFD70077; }
.cta-btn {
  margin-top: 2.2em;
  background: linear-gradient(90deg, #FFD700 30%, #FFB300 100%);
  color: #111;
  font-weight: 700;
  padding: 0.7em 2.2em;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 0 21px #FFD70099, 0 3px 7px #000a;
  text-decoration: none;
  transition: box-shadow 0.22s, transform 0.15s, filter 0.18s;
}
.cta-btn:hover {
  box-shadow: 0 0 44px #FFD700bb;
  filter: brightness(1.12);
  transform: translateY(-2px) scale(1.06);
}

.site-footer {
  background: #111010;
  color: #FFD700cc;
  padding: 2em 1em 1em 1em;
  border-top: 2px solid #FFD70055;
  box-shadow: 0 -2px 18px #FFD70011;
  font-size: 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 0.6em auto;
  gap: 1.2rem;
}

.footer-logo {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFD700;
  letter-spacing: 1.3px;
  text-shadow: 0 0 9px #FFD70099;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: #FFD700bb;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s, text-shadow 0.18s;
}
.footer-links a:hover {
  color: #fff5c6;
  text-shadow: 0 0 10px #FFD700;
  filter: brightness(1.25);
}

.footer-bottom {
  text-align: center;
  color: #FFD70099;
  font-size: 0.95em;
  padding-top: 1em;
  border-top: 1.5px solid #FFD70022;
  letter-spacing: 0.5px;
}

.benefit-emoji {
  font-size: 2.3rem;
  margin-bottom: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 12px #ffd70077;
  /* Optionally, add a slight gold glow for extra effect */
}

.order-btn {
  display: block;
  margin: 1.6em auto 0 auto;
  background: linear-gradient(90deg, #FFD700 50%, #FFB300 100%);
  color: #111;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 22px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 0 15px #FFD70055, 0 2px 4px #000a;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.13s, filter 0.13s;
}
.order-btn:hover {
  box-shadow: 0 0 34px #FFD700bb;
  filter: brightness(1.15);
  transform: scale(1.06) translateY(-2px);
}

/* 1. Make All Sections Responsive */
body, .mission, .benefits, .pricing, .site-footer {
  max-width: 100vw;
  overflow-x: hidden;
}
section, .hero, .mission, .benefits, .pricing {
  padding-left: 1em;
  padding-right: 1em;
}

/* 2. Grid/Flex Adjustments for Small Screens */
@media (max-width: 750px) {
  .benefits-grid, .pricing {
    flex-direction: column;
    gap: 1.3em;
    align-items: stretch;
  }
  .benefit-box, .pricing-box {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
  .navbar {
    flex-direction: row;
    padding: 0.7em 1em;
  }
}

/* 3. Text Scaling, Spacing */
@media (max-width: 500px) {
  .hero h1 { font-size: 1.8rem; }
  .hero h2, .typewriter { font-size: 1.1rem; }
  .pricing-box .price { font-size: 1.5rem; }
  .footer-logo { font-size: 1rem; }
  .site-footer { padding: 1em 0.3em; font-size: 0.95em; }
}

/* Hide hamburger by default */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #FFD700;
  position: relative;
  border-radius: 2px;
}
.nav-toggle-bar::before, .nav-toggle-bar::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: #FFD700;
  position: absolute;
  left: 0;
  border-radius: 2px;
}
.nav-toggle-bar::before { top: -9px; }
.nav-toggle-bar::after { top: 9px; }

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.6em;
    background: #181511;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
    padding: 1em 0;
    box-shadow: 0 8px 32px #FFD70033;
  }
  .navbar {
    position: relative;
  }
  .nav-toggle {
    display: block;
    margin-left: 16px;
    z-index: 100;
  }
  .nav-links.active {
    display: flex;
  }
  .join-btn {
    display: none; /* Optionally hide on mobile, or move inside menu */
  }
}

