/* ==========================================================================
   NOVO DFL 2026 MOBILE - LANDING PAGE STYLESHEET
   Design System: Esports Dark Gaming Theme with Neon Green & Gold Accents
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-dark: #070a12;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --bg-card-hover: rgba(23, 35, 62, 0.85);

  --neon-green: #00ff88;
  --neon-green-glow: rgba(0, 255, 136, 0.4);
  --neon-green-dark: #00cc6a;

  --accent-gold: #ffd700;
  --accent-gold-glow: rgba(255, 215, 0, 0.35);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;

  --font-title: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 50% 0%, #0d1a2f 0%, var(--bg-dark) 70%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.highlight-green {
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-green-glow);
}

.highlight-gold {
  color: var(--accent-gold);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-green) 0%, #00b359 100%);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 30px var(--neon-green-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 45px rgba(0, 255, 136, 0.7), 0 10px 25px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #33ff9e 0%, var(--neon-green) 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d4a300 100%);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 25px var(--accent-gold-glow);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

/* --- Section Typography --- */
.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Top Urgency Bar --- */
.top-bar {
  background: linear-gradient(90deg, #162419 0%, #0a3821 50%, #162419 100%);
  border-bottom: 1px solid var(--neon-green);
  padding: 10px 0;
  text-align: center;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.timer-badge {
  background: #000;
  color: var(--neon-green);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: bold;
}

/* --- Header --- */
.main-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
}

.logo-text span {
  color: var(--neon-green);
}

.btn-header-cta {
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-header-cta:hover {
  background: var(--neon-green);
  color: var(--text-dark);
  box-shadow: 0 0 20px var(--neon-green-glow);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-video-wrapper {
  width: 100%;
  max-width: 560px;
  margin: 20px 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 30px var(--neon-green-glow);
  background: #000;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.micro-copy {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 8px;
}

.micro-copy i {
  color: var(--neon-green);
  margin-right: 4px;
}

.hero-visual {
  position: relative;
}

.phone-card-glow {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 136, 0.15);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.phone-card-glow:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-img {
  border-radius: 16px;
  width: 100%;
}

.phone-badge {
  position: absolute;
  top: 25px;
  right: -15px;
  background: var(--neon-green);
  color: var(--text-dark);
  font-weight: 800;
  font-family: var(--font-title);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  font-size: 0.95rem;
}

/* --- Features Section --- */
.features-section {
  padding: 90px 0;
  background: rgba(0, 0, 0, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--neon-green);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.trophy-icon { color: var(--accent-gold); border-color: rgba(255, 215, 0, 0.3); background: rgba(255, 215, 0, 0.1); }
.kit-icon { color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); background: rgba(56, 189, 248, 0.1); }
.mic-icon { color: #a855f7; border-color: rgba(168, 85, 247, 0.3); background: rgba(168, 85, 247, 0.1); }

.card-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.gameplay-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gameplay-img-wrapper {
  position: relative;
}

.gameplay-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.gameplay-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.play-badge {
  display: inline-block;
  background: rgba(10, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neon-green);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  max-width: 100%;
}

/* --- Pain / Objections Section --- */
.pain-section {
  padding: 90px 0;
}

.pain-box {
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.9) 0%, rgba(36, 11, 25, 0.9) 100%);
  border: 2px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.25);
  position: relative;
}

.warning-tag {
  display: inline-block;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.pain-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
}

.pain-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
}

.pain-quote {
  background: rgba(0, 0, 0, 0.4);
  border-left: 4px solid #ef4444;
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
  font-style: italic;
  color: #fca5a5;
}

.quote-icon {
  margin-right: 8px;
  opacity: 0.6;
}

.pain-solution {
  margin-bottom: 20px;
  color: var(--text-main);
}

.pain-highlight {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 36px;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 90px 0;
}

.single-offer-wrapper {
  max-width: 500px;
  margin: 0 auto 40px;
}

.single-card {
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.95) 0%, rgba(12, 18, 32, 0.98) 100%);
  backdrop-filter: blur(12px);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 40px var(--accent-gold-glow);
  border-radius: var(--radius-lg);
  padding: 45px 32px 36px;
  position: relative;
  text-align: center;
  transition: all var(--transition-normal);
}

.single-card:hover {
  transform: translateY(-4px);
}

.card-badge-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  padding: 6px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.plan-subtitle {
  font-size: 0.85rem;
  font-family: var(--font-title);
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
}

.plan-name {
  font-family: var(--font-title);
  font-size: 2.3rem;
  font-weight: 800;
  margin: 4px 0 16px;
  letter-spacing: 1px;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 4px;
}

.price-box .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 4px;
}

.price-box .amount {
  font-family: var(--font-title);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.price-box .cents {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 28px;
}

.benefits-list {
  margin-bottom: 32px;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--neon-green);
  font-size: 1.1rem;
}

.btn-single-buy {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d4a300 100%);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px var(--accent-gold-glow);
  transition: all var(--transition-normal);
}

.btn-single-buy:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.security-seal {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pix-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-top: 10px;
  font-size: 0.9rem;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 90px 0;
  background: rgba(0, 0, 0, 0.25);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.avatar-green { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.avatar-blue { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.user-status {
  font-size: 0.8rem;
  color: var(--neon-green);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.6;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 90px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item.active {
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  color: var(--neon-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Final CTA Section --- */
.final-cta-section {
  padding: 90px 0 110px;
}

.final-box {
  background: radial-gradient(circle at 50% 50%, #0d291e 0%, #09131e 100%);
  border: 2px solid var(--neon-green);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  box-shadow: 0 0 50px var(--neon-green-glow);
}

.limited-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.final-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.final-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.btn-final {
  padding: 14px 32px;
  font-size: 1.15rem;
  max-width: 380px;
  width: 100%;
}

/* --- Footer --- */
.main-footer {
  background: #04060c;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Pix Modal --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0f172a;
  border: 2px solid var(--neon-green);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 440px;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.show .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

.pix-logo-tag {
  background: rgba(0, 255, 136, 0.1);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
}

.modal-header h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin: 10px 0 4px;
}

.modal-price {
  color: var(--text-muted);
  font-size: 1.1rem;

}

.modal-price strong {
  color: var(--neon-green);
}

.qr-code-box {
  margin: 20px auto;
  padding: 10px;
  background: #ffffff;
  display: inline-block;
  border-radius: var(--radius-sm);
}

.pix-instruction {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pix-code-box {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.pix-code-box input {
  flex: 1;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: monospace;
}

.btn-copy-pix {
  background: var(--neon-green);
  color: var(--text-dark);
  font-weight: 800;
  font-family: var(--font-title);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
}

.btn-copy-pix:hover {
  background: #33ff9e;
}

.copy-success {
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hide {
  display: none !important;
}

.pix-timer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pix-timer strong {
  color: var(--accent-gold);
}

/* --- Social Proof Toast --- */
.social-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--neon-green);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 136, 0.2);
  z-index: 9000;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.toast-icon {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.toast-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.toast-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.toast-time {
  font-size: 0.75rem;
  color: var(--neon-green);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-cta-wrapper {
    align-items: center;
    width: 100%;
  }

  .hero-title {
    font-size: 2.8rem;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .phone-card-glow {
    transform: none;
  }
}

/* 100% Mobile Optimized Layout - Above The Fold Compact */
@media (max-width: 768px) {
  .top-bar {
    padding: 5px 0;
  }

  .top-bar-content {
    font-size: 0.78rem;
    padding: 0 8px;
    gap: 6px;
  }

  .main-header {
    padding: 8px 0;
  }

  .logo {
    font-size: 1.3rem;
  }

  .btn-header-cta {
    padding: 5px 12px;
    font-size: 0.8rem;
  }

  .hero-section {
    padding: 16px 0 28px;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-visual {
    display: none; /* Esconde mockup secundário no mobile para não esticar a página */
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .badge-pill {
    margin: 0 auto 12px;
    padding: 6px 16px;
    font-size: 0.85rem;
    justify-content: center;
  }

  .hero-title {
    text-align: center;
    font-size: 2.35rem;
    line-height: 1.05;
    margin-bottom: 14px;
    font-weight: 800;
  }

  .hero-video-wrapper {
    margin: 10px auto 16px;
    width: 100%;
    max-width: 360px;
    border-width: 2px;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 380px;
  }

  .hero-cta-wrapper {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .main-cta-btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1.18rem;
  }

  .micro-copy {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    text-align: center;
    flex-direction: row;
    gap: 16px;
    font-size: 0.88rem;
    margin-top: 6px;
  }

  .section-header {
    text-align: center;
  }

  .section-title {
    font-size: 2.1rem;
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gameplay-overlay {
    bottom: 12px;
    left: 10px;
    right: 10px;
    justify-content: center;
  }

  .play-badge {
    font-size: 0.82rem;
    padding: 8px 12px;
    text-align: center;
  }

  .pain-box {
    text-align: center;
    padding: 30px 18px;
  }

  .warning-tag {
    margin: 0 auto 14px;
  }

  .pain-header, .pain-content, .pain-solution, .pain-highlight {
    text-align: center;
  }

  .pain-title {
    font-size: 1.9rem;
    text-align: center;
  }

  .pain-quote {
    text-align: center;
    border-left: none;
    border-top: 3px solid #ef4444;
    border-radius: var(--radius-sm);
  }

  .pain-cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .single-offer-wrapper {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .single-card {
    padding: 38px 20px 28px;
    text-align: center;
  }

  .benefits-list {
    margin-bottom: 24px;
  }

  .benefits-list li {
    font-size: 0.92rem;
    padding: 10px 0;
    justify-content: flex-start;
    text-align: left;
  }

  .btn-single-buy {
    font-size: 1.05rem;
    padding: 14px 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .user-meta {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .user-info {
    align-items: center;
    text-align: center;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }

  .final-box {
    text-align: center;
    padding: 36px 18px;
  }

  .final-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .final-text {
    text-align: center;
  }

  .btn-final {
    width: 100%;
    max-width: 320px;
    padding: 12px 18px;
    font-size: 1.02rem;
    white-space: nowrap;
    justify-content: center;
  }

  .social-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
