* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #000;
  color: #fff;
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&display=swap');

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

@font-face {
  font-family: 'Orbitron';
  src: local('Orbitron'), local('Orbitron-Regular');
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Only shrink USA inside logo */
.header .logo .logo-usa {
  font-size: 0.55em !important;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: baseline;
  text-shadow: none !important;
}



.logo img {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(0,180,255,0.9));
}


.header .btn-primary {
  background: linear-gradient(
    135deg,
    #f5c542,
    #ffb300
  ) !important;

  color: #000 !important;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;

  box-shadow:
    0 0 10px rgba(255, 193, 7, 0.5),
    0 0 20px rgba(255, 193, 7, 0.3);
}
.header .btn-primary:hover {
  background: linear-gradient(
    135deg,
    #ffd24d,
    #ffb300
  );
  text-decoration: none !important;
}


/* HERO */

.hero-title {
  text-shadow:
    0 0 10px rgba(0,170,255,0.4),
    0 0 25px rgba(0,120,255,0.25);
}

.hero-title {
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-transform: none;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.55)
    ),
    url("../assets/hero-background.jpg") center / cover no-repeat;
}
.hero-box {
  width: 490px;          /* 70% of original */
  max-width: 80vw;       /* prevent too big on small screens */
  margin-top: 40px;
  animation: float-hero 5s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(0,150,255,0.8));
}

.why-buy {
  background: url("../assets/buysection-background.jpg") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
}

.why-buy h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.why-buy-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why-buy-img {
  height: 3in; /* your request */
  max-width: 90vw;
}

.price {
  font-size: 2rem;
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through; /* ✔ cross line */
  opacity: 0.6;
  margin-right: 10px;
}

.new-price {
  color: #ffd700;
  font-weight: bold;
}

@keyframes float-hero {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}


.price {
  font-size: 3rem;
  color: #ffd700;
}

.price span {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #ccc;
}

.btn-gold {
  margin-top: 20px;
  display: inline-block;
  background: gold;
  color: #000;
  padding: 12px 28px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.features img {
  width: 50%;
  max-width: 1000px;
  height: auto;
}
@media (max-width: 768px) {
  .features img {
    width: 90%;
  }
}
.buy-section {
  background: url("assets/buysection-background.jpg") center / cover no-repeat;
  padding: 80px 20px;
}

.buy-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.buy-product {
  height: 300px; /* ~3 inches */
  flex-shrink: 0;
}

.buy-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.buy-content ul {
  list-style: none;
  padding: 0;
}

.buy-content li {
  font-size: 18px;
  margin-bottom: 8px;
}

.buy-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff0000, #ff6a00);
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .buy-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .buy-product {
    height: 220px;
  }
}

/* TRUST */
.trust {
  padding: 80px 20px;
  background: #050505;
}

.trust-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.trust-grid div {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

/* FOOTER */
.footer {
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}
.cny-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 260px;
  animation: float 3s ease-in-out infinite;
}

.cny-floating img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.7);
}

.cny-floating span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(135deg, #d40000, #ff3b3b);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  padding: 10px;
  border-radius: 10px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.why-buy-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 700;
}
.buy-section {
  background: url("assets/buysection-background.jpg") center/cover no-repeat;
  padding: 80px 20px;
}

/* LOGO TEXT – FINAL LOCK */


/* ===== Header Logo Text – Neon Gradient ===== */

  line-height: 1;
}
a,
a:hover,
a:visited,
a:active {
  text-decoration: none !important;
}
.buy-btn,
.floating-buy-btn {
  text-decoration: none !important;
}
/* ===== Kill underline on all buttons ===== */
a.btn-primary,
a.floating-buy,
.header a,
.floating-buy a,
a {
  text-decoration: none !important;
}

a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}
/* FORCE gradient logo text */
.header .logo span {
  font-family: 'Orbitron', system-ui, sans-serif !important;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.6px;

  background: linear-gradient(
    90deg,
    #00eaff 0%,
    #2aa8ff 50%,
    #00eaff 100%

  ) !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  text-shadow:
    0 0 6px rgba(0, 234, 255, 0.6),
    0 0 14px rgba(0, 234, 255, 0.35);
}
/* ===== HEADER LOGO TEXT (FINAL, CLEAN) ===== */
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 44px;          /* taller than logo */
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1;
  white-space: nowrap;

  background: linear-gradient(
    90deg,
    #e6fbff 0%,
    #6edbff 35%,
    #1ea7ff 65%,
    #0077ff 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  text-shadow:
    0 0 6px rgba(110,219,255,0.8),
    0 0 14px rgba(30,167,255,0.6),
    0 0 28px rgba(0,120,255,0.4);
}
.included {
  margin-top: 18px;
  font-size: 15px;
  color: #ddd;
  opacity: 0.9;
  line-height: 1.6;
}
/* ===============================
   MOBILE FIXES (Floating CNY)
================================ */
@media (max-width: 768px) {

  /* Shrink floating CNY promo */
  .cny-floating,
  .floating-buy,
  .floating-promo {
    width: 55% !important;     /* roughly half size */
    max-width: 160px;
    right: 10px;
    bottom: 80px;              /* keep above bottom UI */
    z-index: 900;
  }
}
 
/* ===============================
   HERO BULLET LIST
================================ */
.hero-content {
  max-width: 520px;
  text-align: left;
  position: relative;
  z-index: 3;
}
.hero-bullets {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 18px;
  line-height: 1.7;
  color: #eafcff;
  font-weight: 500;

  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* Checkmark */
.hero-bullets li::before {
  content: "✓";
  color: #2ff0ff;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding-top: 160px; /* push content below header */
  }

  .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-bullets {
    margin-bottom: 140px; /* avoids floating promo overlap */
  }

  .hero-bullets li {
    font-size: 16px;
  }
}

.lang-switch {
  font-size: 14px;
  color: #aaa;
  margin-right: 16px;
}

.lang-switch a {
  color: #aaa;
  text-decoration: none;
  margin: 0 4px;
}

.lang-switch a.active {
  color: #00eaff;
  font-weight: 600;
}

.lang-switch a:hover {
  color: #00eaff;
}
.contact-links {
  font-size: 13px;
  color: #aaa;
}

.contact-links a {
  color: #00eaff;
  text-decoration: none;
  margin: 0 6px;
}

.contact-links a:hover {
  text-decoration: underline;
}
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  left: 20px;

  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;

  padding: 10px 14px;
  border-radius: 50px;

  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 120px;
    left: 14px;
    font-size: 13px;
    padding: 9px 12px;
  }
}
.wechat-section {
  margin-top: 40px;
  text-align: center;
}

.wechat-section img {
  width: 140px;
  margin-top: 10px;
}
.floating-contact {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.float-btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.wechat {
  background: #1AAD19;
}
/* ===============================
   Floating Promo Close Button
================================ */

.cny-floating-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.cny-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

.cny-close:hover {
  background: rgba(0,0,0,0.9);
}
/* === WeChat QR Section Readability Fix === */
.wechat-section h3 {
  color: #ffffff;
}

.wechat-section p {
  color: #eaeaea;
  opacity: 1;
}
/* ===============================
   FAQ DARK MODE HARD FIX
================================ */

/* FAQ Dark Fix – Clean Version */
.faq {
  background: #000;
  color: #eafcff;
}

.faq h2,
.faq h3,
.faq p,
.faq li {
  color: #eafcff;
  -webkit-text-fill-color: #eafcff;
}



@media (max-width: 768px) {

  .header {
    position: fixed;
    height: auto !important;
    min-height: 64px;
    max-height: none;
    padding: 10px 12px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .header .btn-primary {
    display: block;
    width: 100%;
    margin-top: 6px;
    text-align: center;
  }
}
/* HARD FORCE FAQ DARK BACKGROUND */
.faq,
.faq .container,
.faq .faq-container,
.faq .content-wrapper {
  background: #000 !important;
}
.faq-item {
  background: rgba(255,255,255,0.03) !important;
}
