:root {
  --bg: #0f0f12;
  --card: #1a1a1f;
  --border: #2a2a31;
  --text: #f2f2f7;
  --sub: #8a8a95;
  --accent: #7b5cff;
  --accent-glow: rgba(123,92,255,0.6);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.app {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.screen {
  width: 100%;
  max-width: 420px;
  display: none;
}

.screen.active {
  display: block;
}

.content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.center {
  text-align: center;
}

h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

h2 {
  font-size: 18px;
  color: var(--sub);
  margin-bottom: 8px;
}

.question {
  font-size: 20px;
  margin-bottom: 24px;
}

.sub {
  color: var(--sub);
  font-size: 14px;
  margin-bottom: 24px;
}

.btn {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #222228;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

.btn.primary:hover {
  transform: scale(1.02);
}

.products {
  margin-top: 20px;
}

.product {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  background: #1d1d23;
  position: relative;
  text-align: center;
}

.product.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(123,92,255,0.5);
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.product-summary {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin: 10px 0 20px 0;
  line-height: 1.55;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

.product.recommended .product-summary {
  background: linear-gradient(90deg, #ffffff, #b9a8ff);

  background-clip: text;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  color: transparent;
}



.product-image {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 16px auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(123,92,255,0.3));
}

.product:hover .product-image {
  transform: scale(1.05);
}

.product-hero-image {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto 30px auto;
  filter: drop-shadow(0 0 30px rgba(123,92,255,0.4));
}


.badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--accent);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
  font-weight: 700;
}

.glow-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 24px auto;
  filter: blur(40px);
  opacity: 0.6;
}

#intro {
  position: fixed;
  inset: 0;
  background: #0f0f12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: introFade 1.3s ease forwards;
}

.brand-name {
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 40px;
  opacity: 0;
  animation: brandFade 0.8s ease forwards;
}

.intro-glow {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #7b5cff;
  filter: blur(70px);
  animation: glowPulse 1.2s ease-in-out;
}

@keyframes brandFade {
  to { opacity: 1; }
}

@keyframes glowPulse {
  0% { transform: scale(0.6); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0.6; }
}

@keyframes introFade {
  0% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.logo {
  width: 180px;
  max-width: 70%;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 0 20px rgba(123,92,255,0.35));
  animation: logoFade 0.8s ease forwards;
  opacity: 0;
}


@keyframes logoFade {
  to { opacity: 1; transform: translateY(0); }
}

.niche-highlight {
  position: relative;
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(123,92,255,0.35);
}

.niche-highlight:hover {
  box-shadow: 0 0 28px rgba(123,92,255,0.6);
}

.badge-inside {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 9px;
  color: var(--accent);
  opacity: 0.85;
  font-weight: 600;
}


.section h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 6px;
  border-radius: 4px;
}


.small {
  padding: 10px 10px 10px 0px;
}



.priceTag {
  font-size: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.priceTag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-15deg);
  animation: priceSweep 8s infinite;
  pointer-events: none;
}


@keyframes priceSweep {
  0% {
    left: -120%;
  }
  15% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}




.priceHint {
  font-size: 13px;
  opacity: 0.8;
}


.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}

.list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}


#buyBtn {
  margin-top: 28px;
  font-size: 17px;
  padding: 16px;
}
.site-footer {
  margin-top: 80px;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0f0f14;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #a855f7; /* Purple Accent */
}


.legal-page {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px 80px 20px;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.legal-page section {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
}

.legal-page h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #a855f7; /* Purple Accent */
}

.legal-page p {
  line-height: 1.7;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
