@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #6c5ce7;
  --primary-light: #a29bfe;
  --accent: #00cec9;
  --accent-2: #fd79a8;
  --dark: #0c0c14;
  --dark-2: #111122;
  --dark-3: #1a1a30;
  --surface: #16162a;
  --text: #e8e8f0;
  --text-muted: #8585a8;
  --gold: #ffd700;
  --green: #00e676;
  --gradient: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
  --gradient-warm: linear-gradient(135deg, #fd79a8 0%, #6c5ce7 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12, 12, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.15);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--primary-light); }

.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  -webkit-text-fill-color: white !important;
}

.mobile-menu { display: none; cursor: pointer; font-size: 1.5rem; color: var(--text); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
  display: inline-block;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.hero-social a {
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s;
}

.hero-social a:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 25px rgba(108, 92, 231, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(108, 92, 231, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(108, 92, 231, 0.1);
  border-bottom: 1px solid rgba(108, 92, 231, 0.1);
  padding: 2.5rem 2rem;
}

.stats-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-header h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.12);
}

.product-image {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-body { padding: 1.5rem; }
.product-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 600; }
.product-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; line-height: 1.6; }

.product-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tag {
  background: rgba(108, 92, 231, 0.12);
  color: var(--primary-light);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.tag-gold {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}

.bundle-price { display: flex; align-items: center; gap: 0.5rem; }
.original-price {
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
  text-decoration: line-through;
}

.btn-buy {
  background: var(--gradient);
  color: white;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.btn-buy:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3); }

.btn-buy-gold {
  background: var(--gradient-gold);
}
.btn-buy-gold:hover { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3); }

.bundle-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), rgba(255, 107, 53, 0.04));
  border: 1.5px solid rgba(255, 215, 0, 0.2) !important;
}

.bundle-card .product-price span { color: var(--gold); }

/* ===== ABOUT ===== */
.about-section { background: var(--dark-2); }

.about-card {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2.5rem;
}

.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(108, 92, 231, 0.2);
}

.about-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.about-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.about-links .btn { font-size: 0.85rem; padding: 0.7rem 1.5rem; }

/* ===== STAR CITIZEN SECTION ===== */
.sc-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(108, 92, 231, 0.04));
  border: 1px solid rgba(0, 206, 201, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.price-compare {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.price-item { text-align: center; }

.price-old {
  font-size: 1.8rem;
  color: #ff4444;
  text-decoration: line-through;
  font-weight: 700;
}

.price-new {
  font-size: 2.5rem;
  color: var(--green);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.gift-box {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 15px;
  padding: 1.8rem;
  margin: 2rem 0;
}

.gift-box h3 {
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gift-box p { color: var(--text); font-size: 0.95rem; line-height: 1.7; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.step {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1.3rem;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
}

.step h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.step p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ===== CONTENT ===== */
.content-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.content-embed {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.content-embed h3 {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== SOCIAL LINKS ===== */
.social-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.social-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.3);
}

.social-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.social-card h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.social-card p { color: var(--text-muted); font-size: 0.8rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-2);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-content { max-width: 600px; margin: 0 auto; }

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(108, 92, 231, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

footer p { color: var(--text-muted); font-size: 0.85rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--primary-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 12, 20, 0.98);
    padding: 2rem;
    gap: 1.5rem;
  }
  .price-compare { gap: 1.5rem; }
  .about-card { flex-direction: column; align-items: center; text-align: center; }
  .about-links { justify-content: center; }
  .section-header h2 { font-size: 1.8rem; }
  .content-grid { grid-template-columns: 1fr; }
}

/* ===== PARTICLES ===== */
.particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
