* {
  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;
}
header {
  padding: 20px 40px;
}
@font-face {
  font-family: 'Orbitron';
  src: local('Orbitron'), local('Orbitron-Regular');
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.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 h1,
.hero-title,
.hero-text h1 {
  font-size: clamp(4.8rem, 9vw, 7.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: 2px;
}

.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: 700px;
  max-width: 92vw;
  margin-top: 40px;
  animation: float 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 {
  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 img {
  width: 100%;
  display: block;
}
.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;

 /* 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);
}

  ) !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: 30% !important;     /* roughly half size */
    max-width: 160px;
    right: 10px;
    bottom: 80px;              /* keep above bottom UI */
    z-index: 900;
  }

  /* Ensure header stays visible */
  .header {
    height: 72px;
    padding: 0 12px;
  }

  /* Prevent hero content being hidden under header */
  .hero {
    padding-top: 90px;
  }
}

@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 64px;
    padding: 10px 12px;

    display: flex;
    flex-direction: column;   /* stack logo + button */
    align-items: flex-start;
    gap: 6px;
  }

  .header .btn-primary {
    font-size: 13px;
    padding: 6px 10px;
    white-space: nowrap;      /* prevent wrapping */
    align-self: flex-end;
  }
}



