:root {
  --bg-main: #050608;
  --bg-card: #0b0d13;
  --bg-card-hover: #10131c;
  --bg-elevated: #151824;
  --border-subtle: #1c2230;
  --border-focus: #00ff9d;
  --primary: #00ff9d;
  --primary-hover: #26ffab;
  --primary-glow: rgba(0, 255, 157, 0.4);
  --success: #00ff9d;
  --success-glow: rgba(0, 255, 157, 0.35);
  --warning: #f59e0b;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 255, 157, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 100% 40%, rgba(0, 255, 157, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1c2230;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 10px var(--primary-glow);
}

.logo-badge {
  background: linear-gradient(135deg, #00ff9d, #059669);
  color: #050608;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #5865F2;
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
}

/* Hero Section - Compact & Punchy */
.hero {
  padding: 14px 20px 6px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: #00ff9d;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #00ff9d;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff9d;
  animation: pulse 1.8s infinite;
}

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

.hero h1 {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, #00ff9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-badges-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: #e5e7eb;
}

.trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Products Section */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2px 20px 60px;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.products-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  width: 100%;
}

.product-card:hover {
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-glow);
  transform: translateY(-4px);
}

/* Card em Destaque Centralizado & Maior (Blood Strike External) */
.featured-product-card {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #00ff9d !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px var(--primary-glow) !important;
  background: linear-gradient(180deg, #0d121c 0%, #06080d 100%);
  position: relative;
}

.featured-product-card:hover {
  border-color: #26ffab !important;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9), 0 0 45px var(--primary-glow) !important;
  transform: translateY(-4px);
}

.featured-product-card .card-title {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.featured-product-card .card-banner-wrapper {
  height: 200px;
}

.card-tag.best-seller {
  background: linear-gradient(135deg, #00ff9d 0%, #059669 100%);
  color: #050608;
  font-weight: 900;
  letter-spacing: 0.8px;
  border: none;
  box-shadow: 0 0 16px rgba(0, 255, 157, 0.5);
}

.featured-live-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 157, 0.35);
  color: #e5e7eb;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-popular {
  position: absolute;
  top: -9px;
  right: 8px;
  background: #00ff9d;
  color: #050608;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.6);
}

.badge-lifetime {
  position: absolute;
  top: -9px;
  right: 8px;
  background: #3b82f6;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-micro-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-dark);
  text-align: center;
  flex-wrap: wrap;
}

.card-banner-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  background: #080a0f;
  overflow: hidden;
}

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

.product-card:hover .card-banner {
  transform: scale(1.04);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.card-tag.hot {
  background: linear-gradient(135deg, #00ff9d, #059669);
  color: #050608;
  border-color: #00ff9d;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.card-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00ff9d;
  background: rgba(0, 255, 157, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.card-features {
  list-style: none;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.card-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Plan Selector inside Card */
.plans-wrapper {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.plans-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.plan-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.plan-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  color: var(--text-main);
  position: relative;
}

.plan-btn:hover {
  border-color: #2b3345;
  background: #1b202e;
}

.plan-btn.active {
  border-color: var(--primary);
  background: rgba(0, 255, 157, 0.08);
  box-shadow: 0 0 12px var(--primary-glow);
}

.plan-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  font-weight: 600;
}

.plan-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.btn-buy-now {
  width: 100%;
  background: linear-gradient(135deg, #00ff9d 0%, #059669 100%);
  color: #050608;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px var(--primary-glow);
  text-transform: uppercase;
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, #26ffab 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 157, 0.5);
}

.btn-buy-now:active {
  transform: translateY(0);
}

/* Checkout Modal / Dedicated Checkout */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

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

.checkout-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 94vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px var(--primary-glow);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .checkout-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.checkout-header {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-body {
  padding: 24px;
}

/* Order Summary Box */
.order-summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.summary-row.total {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.summary-row.total .price {
  color: #00ff9d;
}

/* Form Elements */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.coupon-box {
  display: flex;
  gap: 8px;
}

.btn-apply-coupon {
  background: #1c2230;
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-apply-coupon:hover {
  background: #252d40;
}

/* PIX Screen (QR Code & Copia e Cola) */
.pix-screen {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qrcode-box {
  background: #ffffff;
  padding: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  display: inline-block;
}

.qrcode-box img {
  width: 210px;
  height: 210px;
  display: block;
}

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

.copy-paste-container {
  width: 100%;
  margin-bottom: 20px;
}

.copy-paste-box {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-paste-input {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: monospace;
  font-size: 0.82rem;
  width: 100%;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-copy-pix {
  background: var(--primary);
  color: #050608;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-copy-pix:hover {
  background: var(--primary-hover);
}

.live-detection {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 255, 157, 0.25);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success Screen */
.success-screen {
  text-align: center;
  padding: 10px 0;
}

.success-icon-badge {
  width: 64px;
  height: 64px;
  background: rgba(0, 255, 157, 0.15);
  border: 2px solid #00ff9d;
  color: #00ff9d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 25px var(--success-glow);
}

.success-screen h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.success-screen p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.license-key-card {
  background: #090c12;
  border: 1px dashed #00ff9d;
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 22px;
  text-align: left;
}

.license-key-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #00ff9d;
  margin-bottom: 8px;
}

.license-key-value {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 14px;
  border-radius: 6px;
  word-break: break-all;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.btn-copy-key {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-copy-key:hover {
  background: #00ff9d;
  color: #050608;
}

.action-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.btn-download-loader {
  background: #00ff9d;
  color: #050608;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px var(--success-glow);
  transition: all 0.2s ease;
}

.btn-download-loader:hover {
  background: #26ffab;
  transform: translateY(-2px);
}

.tutorial-steps {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tutorial-steps h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tutorial-steps ol {
  padding-left: 18px;
}

.tutorial-steps li {
  margin-bottom: 6px;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

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

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  background: #040507;
  padding: 40px 24px 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dark);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/* Mobile Adjustments */
@media (max-width: 640px) {
  .hero {
    padding: 40px 16px 30px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .nav-container {
    padding: 14px 16px;
  }
  .plan-options {
    grid-template-columns: 1fr;
  }
}
