/* ==========================================================================
   500 DRILLS DE MMA — DESIGN SYSTEM & STYLES (MOBILE-FIRST)
   Palette: Deep Black (#0a0a0c), Graphite (#121318, #1c1e26), White (#fff), 
            Ice Gray (#f4f5f8), Red Accent (#e50914, #dc2626)
   Typography: Poppins 400, 500, 600, 700, 800
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #050507;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: #090a0d;
}

body.modal-open {
  overflow: hidden;
}

/* OUTER WRAPPER & CENTERED CONTAINER (RULE[user_global]) */
.page-wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #070709 0%, #0d0e12 50%, #070709 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.mobile-container {
  width: 100%;
  max-width: 420px; /* Locked mobile container width for desktop & mobile */
  background: #ffffff;
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY UTILS */
h1, h2, h3, h4 {
  color: #0d0d11;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: #4a4e5a;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 400;
}

.strike {
  text-decoration: line-through;
  opacity: 0.7;
}

/* TOP ANNOUNCEMENT BAR */
.top-announcement {
  background: #e50914;
  color: #ffffff;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* SECTIONS COMMON */
.section {
  padding: 36px 20px;
  position: relative;
}

.section-title {
  font-size: 1.45rem;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #0d0e12;
}

.section-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: #646875;
  margin-bottom: 24px;
}

/* HERO SECTION */
.hero-section {
  background: #0d0e12;
  color: #ffffff;
  padding: 32px 20px 40px;
  text-align: center;
}

.target-tag {
  display: inline-block;
  background: rgba(229, 9, 20, 0.15);
  color: #ff3b47;
  border: 1px solid rgba(229, 9, 20, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: #b0b4c0;
  font-size: 0.93rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.categories-pill-cloud {
  font-size: 0.78rem;
  color: #e50914;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 20px;
}

.categories-pill-cloud span {
  color: #d1d5db;
  font-weight: 500;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #00e676;
}

.highlight-item svg {
  width: 14px;
  height: 14px;
  stroke: #00e676;
}

/* DEMO VIDEO PLACEHOLDER (9:16 VERTICAL ASPECT RATIO) */
.video-container-wrapper {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 28px;
}

.custom-video-player-9-16 {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #090a0d;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.custom-video-player-9-16 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAYS (SEMISTRANSPARENTE ESCURO COBRINDO O PLAYER INTEIRO) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 10;
}

.video-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 16px;
}

.overlay-icon {
  width: 64px;
  height: 64px;
  background: #e50914;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.7);
  transition: transform 0.2s ease;
}

.custom-video-player-9-16:hover .overlay-icon {
  transform: scale(1.08);
}

.overlay-icon svg {
  width: 28px;
  height: 28px;
}

.overlay-icon.sound-icon svg {
  margin-left: 0;
}

.overlay-icon.play-icon svg {
  margin-left: 3px;
}

.overlay-text {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* BARRA DE PROGRESSO CUSTOMIZADA (4px NA BASE) */
.custom-progress-bar-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 20;
}

.custom-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: #e50914;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.8);
}

/* BUTTONS */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.02em;
  text-align: center;
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

.primary-cta {
  background: linear-gradient(135deg, #e50914 0%, #b90710 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.4);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.55);
}

.secondary-cta {
  background: #1c1e26;
  color: #ffffff;
  border: 1px solid #2d313e;
}

.secondary-cta:hover {
  background: #252834;
}

.pulse-cta {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(229, 9, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

/* SEÇÃO 2: O QUE VOCÊ VAI RECEBER */
.receive-section {
  background: #f8f9fc;
  border-bottom: 1px solid #eef0f5;
}

.product-mockup-wrapper {
  margin-bottom: 18px;
}

.product-mockup-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.mockup-header-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #e50914;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mockup-content-visual {
  min-height: 220px;
  background: #111217;
  border-radius: 12px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.mockup-badge-float {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e50914;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
}

.mockup-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.mockup-icon-grid .m-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e4ea;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 8px;
  text-align: center;
}

.mockup-text-center {
  text-align: center;
  padding: 24px 10px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 14px;
  color: #9ea3b4;
  font-size: 0.74rem;
  font-weight: 700;
}

.receive-footer-line {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1c23;
}

/* SEÇÃO 3: BÔNUS */
.bonus-section {
  background: #ffffff;
}

.bonus-tag {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #e50914;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.bonus-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.bonus-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  padding: 18px;
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.b-badge {
  background: #0d0e12;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

.b-price-tag {
  font-size: 0.78rem;
  color: #646875;
  font-weight: 600;
}

/* BONUS IMAGE STYLING */
.bonus-image-container {
  width: 100%;
  max-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fc;
}

.bonus-card-img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 12px;
}

.asset-img-placeholder {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.shield-svg-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wa-fallback-box {
  text-align: center;
}


.bonus-card-desc {
  font-size: 0.85rem;
  color: #555965;
}

.bonus-anchor-box {
  background: #0d0e12;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}

.bonus-total-label {
  font-size: 0.88rem;
  color: #a0a5b5;
  margin-bottom: 6px;
}

.bonus-total-label strong {
  color: #ff4d58;
  font-size: 1.05rem;
}

.bonus-anchor-title {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 800;
}

/* SEÇÃO 4: PROVA SOCIAL */
.proof-section {
  background: #f4f5f8;
}

.whatsapp-prints-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-print-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  padding: 24px 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wa-print-card:hover {
  transform: scale(1.02);
}

.wa-placeholder-inner {
  text-align: center;
}

.wa-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.wa-text-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #25d366;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.wa-sub-label {
  font-size: 0.72rem;
  color: #888e9e;
}

/* SEÇÃO 5: OFERTA */
.offer-section {
  background: #0d0e12;
  color: #ffffff;
  padding: 40px 20px;
}

.offer-tag {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #e50914;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.offer-section .section-title {
  color: #ffffff;
}

.pricing-cards-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card {
  background: #14161d;
  border-radius: 18px;
  border: 1px solid #242834;
  padding: 24px 18px;
  position: relative;
}

.featured-plan {
  background: linear-gradient(160deg, #1c1e28 0%, #12131a 100%);
  border: 2px solid #e50914;
  box-shadow: 0 12px 35px rgba(229, 9, 20, 0.25);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e50914;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 18px;
}

.plan-name {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.plan-subtitle {
  color: #8c92a4;
  font-size: 0.78rem;
}

.price-box {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-box .old-price {
  font-size: 0.78rem;
  color: #8c92a4;
  margin-bottom: 4px;
}

.price-box .old-price span {
  text-decoration: line-through;
}

.price-box .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e50914;
  vertical-align: top;
}

.price-box .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.price-box .period {
  display: block;
  font-size: 0.72rem;
  color: #8c92a4;
  margin-top: 4px;
}

.plan-features {
  list-style: none;
  margin-bottom: 20px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #c7cbd6;
  margin-bottom: 10px;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  stroke: #00e676;
  flex-shrink: 0;
}

.included-bonuses-box {
  background: rgba(229, 9, 20, 0.08);
  border: 1px dashed rgba(229, 9, 20, 0.3);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 20px;
}

.bonus-box-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff4d58;
  margin-bottom: 8px;
}

.mini-bonus-list {
  list-style: none;
}

.mini-bonus-list li {
  font-size: 0.76rem;
  color: #e2e6f0;
  margin-bottom: 4px;
}

/* BONUS IMAGE STYLING */
.bonus-image-container {
  width: 100%;
  max-height: 240px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, #161822 0%, #0a0b0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bonus-card-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
}

.asset-img-placeholder {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.shield-svg-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wa-fallback-box {
  text-align: center;
}

.bonus-card-desc {
  font-size: 0.85rem;
  color: #555965;
}

/* ==========================================================================
   CSS-ONLY INFINITE SCROLLING CAROUSEL (Logto Pattern)
   ========================================================================== */
.carousel {
  margin: 0 auto 20px;
  padding: 10px 0;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.carousel > * {
  flex: 0 0 auto;
}

/* Group containing the cards */
.carousel .group {
  display: flex;
  gap: 16px;
  padding-right: 16px; /* Gap between the last and first card when repeating */
  will-change: transform;
  animation: scrolling 28s linear infinite;
}

/* Specific speed tuning per carousel */
.product-carousel .group {
  animation-duration: 40s; /* Smooth pace for 10 product slides */
}

.proof-carousel .group {
  animation-duration: 22s; /* Comfortable reading pace for 3 testimonials */
}

/* Cards styling */
.carousel .card {
  flex: 0 0 280px; /* Comfortable width on mobile container */
  max-width: 80vw;
  background: #121319;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  user-select: none;
}

.carousel .card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

/* Proof carousel specific card sizing & cursor */
.proof-carousel .card {
  flex: 0 0 270px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.proof-carousel .card:hover {
  border-color: rgba(229, 9, 20, 0.4);
}

/* Infinite Scrolling Animation */
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.carousel:hover .group {
  animation-play-state: paused;
}

/* Pause when touching/active on mobile */
.carousel:active .group {
  animation-play-state: paused;
}

.wa-slide {
  cursor: pointer;
}

/* SEÇÃO 6: GARANTIA (LARGE IMAGE) */
.guarantee-section {
  background: #ffffff;
}

.guarantee-card {
  text-align: center;
  padding: 10px 0;
}

.guarantee-img-wrapper {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-large-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.08));
}


.guarantee-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.guarantee-text {
  font-size: 0.85rem;
  color: #555965;
  margin-bottom: 16px;
}

.security-badges {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2e7d32;
}

/* SEÇÃO 7: FAQ (ACCORDION) */
.faq-section {
  background: #f8f9fc;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
  color: #121318;
  cursor: pointer;
  font-family: inherit;
}

.acc-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: #e50914;
  transition: transform 0.2s ease;
}

.accordion-item.active .acc-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
  background: #ffffff;
}

.accordion-item.active .accordion-content {
  padding: 0 16px 16px;
  max-height: 250px;
}

.accordion-content p {
  font-size: 0.84rem;
  color: #555965;
}

/* FOOTER */
.footer {
  background: #090a0d;
  color: #72778a;
  text-align: center;
  padding: 24px 16px;
  font-size: 0.75rem;
  border-top: 1px solid #1a1c24;
}

.copyright {
  margin-bottom: 8px;
  color: #72778a;
}

.legal-links a {
  color: #969bb0;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

/* MODAL / POP-UP DE UPGRADE */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 390px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 24px 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.close-modal-x {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.modal-header {
  text-align: center;
  margin-bottom: 14px;
}

.upgrade-badge {
  background: #e50914;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal-wait-title {
  font-size: 1.6rem;
  color: #e50914;
  margin: 6px 0 2px;
}

.modal-sub {
  font-size: 0.82rem;
  color: #555;
}

.modal-price-highlight {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  margin-bottom: 12px;
}

.modal-old-price {
  font-size: 0.78rem;
  color: #888;
}

.modal-old-price span {
  text-decoration: line-through;
}

.modal-current-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.modal-current-price .currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e50914;
}

.modal-current-price .val {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0d0e12;
}

.super-discount-tag {
  background: #00c853;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
}

.modal-offer-headline {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0d0e12;
  margin-bottom: 14px;
}

.modal-offer-headline span {
  color: #e50914;
}

.modal-unlock-list {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.unlock-item {
  font-size: 0.72rem;
  font-weight: 600;
  color: #166534;
}

.modal-warning-line {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-bottom: 16px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.secondary-modal-link {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: #777;
  text-decoration: underline;
  padding: 6px;
}

/* LIGHTBOX */
.lightbox-content {
  background: #111217;
  border-radius: 16px;
  padding: 40px 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  color: #fff;
  position: relative;
}

.lightbox-card-placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 12px;
}

.wa-icon-large {
  font-size: 3rem;
  margin-bottom: 10px;
}
