/* ================ RESET & BASE ================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050510;
  --surface: rgba(10, 10, 25, 0.65);
  --primary: #ff0080;
  --secondary: #7928ca;
  --accent: #00d4ff;
  --gold: #ffcc00;
  --green: #00ff88;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { background: var(--bg); }
body::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ================ BGMI BACKGROUND OVERLAY ================ */
.bgmi-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(120, 40, 200, 0.06) 0%, transparent 50%);
  opacity: 0.7;
}

/* ================ CUSTOM CURSOR ================ */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
}

.cursor-follower {
  width: 40px; height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-follower.hover {
  width: 60px; height: 60px;
  border-color: var(--primary);
  background: rgba(255, 0, 128, 0.1);
}

/* ================ CANVAS BACKGROUND ================ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ================ PRELOADER ================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content { text-align: center; position: relative; }

.preloader-ring {
  width: 120px; height: 120px;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: ringSpin 1.2s linear infinite;
  margin: 0 auto 20px;
}

.preloader-ring-inner {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 100px;
  border: 2px solid transparent;
  border-bottom-color: var(--secondary);
  border-left-color: var(--gold);
  border-radius: 50%;
  animation: ringSpinInner 0.8s linear infinite reverse;
}

@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes ringSpinInner { to { transform: translateX(-50%) rotate(-360deg); } }

.preloader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.preloader-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  width: 0%;
  animation: barFill 1.8s ease forwards;
}

@keyframes barFill {
  0% { width: 0; }
  60% { width: 75%; }
  100% { width: 100%; }
}

/* ================ NAVIGATION ================ */
#navbar {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 12px 30px;
  background: rgba(5, 5, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  top: 0;
  border-radius: 0 0 30px 30px;
  padding: 10px 35px;
  background: rgba(5, 5, 16, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text);
}

.nav-links { display: flex; gap: 25px; }

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 25px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(255, 0, 128, 0.4);
}

/* ================ HERO SECTION ================ */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}

.hero-content { text-align: center; max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--green); }
  50% { opacity: 0.4; box-shadow: 0 0 15px var(--green); }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 16px;
}

.hero-title-line {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.55em;
}

.hero-title-line.accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto; margin-right: auto;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 50px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
}

.cta-primary.large { padding: 18px 40px; font-size: 1.1rem; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.cta-secondary:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.scroll-line {
  width: 1px; height: 50px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 0; left: -1px;
  animation: scrollDown 2s ease infinite;
  box-shadow: 0 0 10px var(--accent);
}

@keyframes scrollDown {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ================ SECTION COMMON ================ */
section {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(255, 0, 128, 0.12);
  border: 1px solid rgba(255, 0, 128, 0.2);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ================ REVEAL ANIMATION ================ */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].hidden-init {
  opacity: 0;
  transform: translateY(40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================ SPIN SECTION ================ */
.spin-container { max-width: 520px; margin: 0 auto; }

.spin-glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 40px 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.spin-info {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.spin-count-badge, .spin-timer, .spin-users {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.spin-count-badge {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spin-timer {
  background: rgba(255, 204, 0, 0.15);
  color: var(--gold);
  border: 1px solid rgba(255, 204, 0, 0.2);
  animation: pulse 2s infinite;
}

.spin-users {
  background: rgba(0, 255, 136, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.wheel-wrapper {
  position: relative;
  width: 280px; height: 280px;
  margin: 0 auto 20px;
}

@media (min-width: 480px) {
  .wheel-wrapper { width: 400px; height: 400px; }
}

.spin-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), #ff6600);
  border: none;
  border-radius: 30px;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 5;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.spin-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px rgba(255, 204, 0, 0.5);
}

.spin-result {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  padding: 10px 20px;
  background: rgba(255, 0, 128, 0.1);
  border-radius: 12px;
}

.claim-form { margin-top: 20px; }

.claim-form-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.claim-form-inner input {
  flex: 1; min-width: 160px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.claim-form-inner input:focus { border-color: var(--primary); }

.claim-form-inner button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.claim-form-inner button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.reward-ribbon {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50000;
}

.reward-ribbon-inner {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), #ff6600, var(--primary));
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50px;
  animation: bounceRibbon 0.6s ease;
  box-shadow: 0 10px 40px rgba(255, 204, 0, 0.4);
}

@keyframes bounceRibbon {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.toast-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60000;
}

/* ================ FEATURES SECTION ================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-card:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px) !important;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.feature-glow {
  position: absolute;
  top: -50%; right: -50%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.12), transparent);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

.feature-card:hover .feature-glow { opacity: 1; }

/* ================ PRICING SECTION ================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.pricing-card:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(255, 0, 128, 0.15);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(1.03) translateY(-8px) !important;
}
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 2;
}

.pricing-card-inner {
  padding: 32px 24px 28px;
  text-align: center;
  background: rgba(5, 5, 16, 0.6);
  border-radius: 22px;
}

.pricing-duration {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--text);
}

.pricing-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 2px;
}

.pricing-card.popular .pricing-amount {
  background: linear-gradient(135deg, var(--gold), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--green);
  font-size: 0.7rem;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 0, 128, 0.35);
}

/* ================ GALLERY SECTION ================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/11;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-image-wrapper:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  font-size: 2rem;
  color: var(--text);
}

.gallery-image-wrapper:hover .gallery-overlay { opacity: 1; }

/* ================ VIDEO SECTION ================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.video-card { text-align: center; }

.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s;
}

.video-wrapper:hover { transform: scale(1.02); }

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-label {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ================ TESTIMONIALS ================ */
.testimonials-track-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
  padding: 20px 0;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  min-width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
}

.testimonial-card:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
  border-color: rgba(255, 0, 128, 0.3);
}

.testimonial-stars { margin-bottom: 14px; }
.testimonial-stars i { color: var(--gold); font-size: 0.8rem; margin-right: 2px; }

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}
.testimonial-author h4 { font-size: 0.9rem; font-weight: 600; }
.testimonial-author span { font-size: 0.75rem; color: var(--primary); }

/* ================ FAQ SECTION ================ */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(255, 255, 255, 0.15); }

.faq-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-toggle h3 { font-size: 1rem; font-weight: 600; flex: 1; }

.faq-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ================ CTA SECTION ================ */
.cta-section {
  text-align: center;
  padding: 120px 20px;
}

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

.cta-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #25D366;
  border: none;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

/* ================ FOOTER ================ */
.footer {
  background: rgba(5, 5, 16, 0.85);
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-brand h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.footer-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 14px; }

.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--text);
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color 0.3s;
}

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

.footer-contact h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-item i {
  width: 28px;
  color: var(--primary);
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom i { color: var(--primary); margin: 0 2px; }

/* ================ FLOATING BUTTON ================ */
.floating-buy {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
  animation: floatPulse 3s ease infinite;
  transition: transform 0.3s;
}

.floating-buy:hover {
  transform: translateY(-3px) scale(1.05);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(255, 0, 128, 0.3); }
  50% { box-shadow: 0 10px 60px rgba(255, 0, 128, 0.6); }
}

/* ================ RESPONSIVE ================ */
@media (max-width: 900px) {
  #navbar { gap: 18px; padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-cta span { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  section { padding: 60px 16px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-primary.large, .cta-whatsapp { width: 100%; justify-content: center; }
}
