/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(176, 16, 32, 0.35) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(245, 197, 24, 0.12) 0%, transparent 50%),
              linear-gradient(160deg, #0f0002 0%, #1a0308 40%, #0a0000 100%);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.2) saturate(0.7) hue-rotate(-10deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(230, 57, 70, 0.12) 0%, transparent 70%),
              linear-gradient(180deg, rgba(10, 0, 0, 0.3) 0%, rgba(10, 0, 0, 0.88) 100%);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.hero-content {
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  animation: pulse-gold 2.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  color: var(--color-gold);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--color-muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 520px;
}

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

.hero-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone img {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(245, 197, 24, 0.2));
}

.hero-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, rgba(245, 197, 24, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.hero-trust-item svg,
.hero-trust-item img {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.stats-grid {
  max-width: var(--container-max);
  margin: 0 auto;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ========== WHY IX7 ========== */
.why-ix7 {
  background: var(--color-bg);
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
  background: var(--color-card-hover);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(245, 197, 24, 0.2);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(245, 197, 24, 0.2);
  border-color: rgba(245, 197, 24, 0.5);
}

.feature-icon img,
.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ========== REFER & EARN STEPS ========== */
.refer-earn {
  background: var(--color-surface);
}

.step-item {
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  max-width: 260px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--color-gold);
  font-size: 1.5rem;
  padding: 0 0.5rem;
  margin-top: -2rem;
}

/* ========== FEATURED GAMES ========== */
.featured-games {
  background: var(--color-bg);
}

.game-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.game-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px) scale(1.02);
}

.game-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-thumb img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.play-btn-icon {
  width: 52px;
  height: 52px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  font-size: 1.4rem;
  transform: scale(0.8);
  transition: var(--transition);
}

.game-card:hover .play-btn-icon {
  transform: scale(1);
}

.game-card-info {
  padding: 1rem;
}

.game-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.game-card-cat {
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.game-card .btn {
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}

.view-all-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========== SCREENSHOTS ========== */
.screenshots-section {
  background: var(--color-surface);
}

.screenshot-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

.screenshot-item:hover {
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: var(--shadow-gold);
}

.screenshot-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ========== DOWNLOAD CTA BAND ========== */
.download-band {
  background: linear-gradient(135deg, #0a0000 0%, #180408 50%, #0a0000 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.15);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
  position: relative;
  overflow: hidden;
}

.download-band::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.08) 0%, rgba(245, 197, 24, 0.04) 50%, transparent 70%);
  pointer-events: none;
}

.download-band-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem var(--container-pad);
}

.download-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.download-band-sub {
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.install-steps-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.install-step-badge {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.install-step-badge span:first-child {
  color: var(--color-gold);
  font-weight: 700;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--color-bg);
}

.testimonial-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: var(--shadow-gold);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.testimonial-text {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #0a0a0f;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-location {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* ========== FAQ ========== */
.faq-section {
  background: var(--color-surface);
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(245, 197, 24, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-item.open .faq-question {
  color: var(--color-gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(245, 197, 24, 0.2);
}

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

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
