/* ==========================================================================
   NEXO POKER — OFFICIAL LANDING PAGE STYLESHEET
   Design System: Black Poker 3D Pro
   Criado por: JPStudio
   ========================================================================== */

:root {
  --bg-main: #07090e;
  --bg-secondary: #0c1018;
  --bg-card: #111722;
  --bg-card-hover: #161e2c;
  
  --gold-primary: #ffc700;
  --gold-dark: #d4a000;
  --gold-gradient: linear-gradient(135deg, #ffe066 0%, #ffc700 50%, #b8860b 100%);
  --gold-border: rgba(255, 199, 0, 0.22);
  --gold-glow: rgba(255, 199, 0, 0.25);
  
  --emerald-primary: #10b981;
  --emerald-dark: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  
  --crimson-primary: #ef4444;
  --crimson-dark: #dc2626;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.gold-text {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #07090e;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 199, 0, 0.4);
}

.glow-gold {
  box-shadow: 0 0 20px rgba(255, 199, 0, 0.3);
}

.btn-outline-gold {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(255, 199, 0, 0.05);
}

.btn-outline-gold:hover {
  background: rgba(255, 199, 0, 0.15);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text-main);
}

/* TOP BANNER */
.top-banner {
  background: linear-gradient(90deg, #121006 0%, #1e1906 50%, #121006 100%);
  border-bottom: 1px solid var(--gold-border);
  padding: 8px 0;
  font-size: 13px;
  color: #e2e8f0;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.badge-live {
  background: var(--crimson-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  animation: pulse 1.8s infinite;
}

.banner-link {
  color: var(--gold-primary);
  font-weight: 700;
  margin-left: 8px;
}

.banner-link:hover {
  text-decoration: underline;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spade-icon {
  color: var(--gold-primary);
  font-size: 24px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pro-tag {
  background: rgba(255, 199, 0, 0.12);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-mobile-cta {
  display: none;
}

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

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 70px 0 80px 0;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.12) 0%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 199, 0, 0.08);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-description strong {
  color: #ffffff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 540px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-md);
}

.trust-icon {
  font-size: 22px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 13px;
  color: #ffffff;
}

.trust-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* HERO 3D MOCKUP */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.device-frame {
  width: 320px;
  height: 600px;
  background: #000000;
  border: 4px solid #2d3748;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 199, 0, 0.15);
  position: relative;
}

.screen-notch {
  width: 120px;
  height: 18px;
  background: #111;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.mockup-table-preview {
  width: 100%;
  height: 100%;
  background: #090e17;
  border: 8px solid #161b24; /* Rail em couro */
  border-radius: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 12px 14px 12px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.table-brand-mark {
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255, 199, 0, 0.35);
  margin-top: 8px;
}

/* Board Cards */
.mockup-board-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.mockup-pot-pill {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: flex;
  gap: 6px;
  font-size: 11px;
}

.pot-label {
  color: var(--text-muted);
}

.pot-amount {
  color: var(--gold-primary);
  font-weight: 800;
}

.mockup-community-cards {
  display: flex;
  gap: 4px;
}

.poker-card {
  width: 32px;
  height: 46px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}

.poker-card.red-suit {
  color: #dc2626;
}

.poker-card.black-suit {
  color: #111827;
}

.poker-card .suit {
  font-size: 14px;
}

/* Opponent Seats */
.mockup-seat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border-subtle);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.seat-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

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

.seat-name {
  font-size: 10px;
  color: #94a3b8;
}

.seat-stack {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

.seat-top {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.seat-left {
  top: 96px;
  left: 6px;
}

.seat-right {
  top: 96px;
  right: 6px;
}

.seat-active {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(255, 199, 0, 0.4);
}

.active-turn-ring {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-pill);
  animation: pulse 1.5s infinite;
}

/* Hero Hand Area */
.mockup-hero-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.advisor-hint-bubble {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-hand-cards {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.card-hero {
  width: 48px;
  height: 68px;
  font-size: 17px;
}

.tilt-left {
  transform: rotate(-6deg);
}

.tilt-right {
  transform: rotate(6deg);
}

/* Action Bar in Mockup */
.mockup-action-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 4px;
}

.mockup-btn {
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
}

.mockup-btn.btn-red {
  background: #991b1b;
}

.mockup-btn.btn-green {
  background: #059669;
}

.mockup-btn.btn-gold {
  background: var(--gold-gradient);
  color: #000000;
}

/* Backdrop Cards floating */
.mockup-backdrop-card {
  position: absolute;
  background: rgba(17, 23, 34, 0.95);
  border: 1px solid var(--gold-border);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.mockup-backdrop-card p {
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
}

.badge-mini {
  font-size: 10px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 2px;
}

.badge-mini.gold {
  color: var(--gold-primary);
}

.float-anim-1 {
  top: 15%;
  right: -25px;
  animation: float 4s ease-in-out infinite;
}

.float-anim-2 {
  bottom: 20%;
  left: -35px;
  animation: float 5s ease-in-out infinite reverse;
}

/* STATS BAR */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}

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

.stat-card {
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* SECTION HEADERS */
.section {
  padding: 100px 0;
}

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

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

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

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.feature-card.highlight-card {
  border-color: rgba(255, 199, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 199, 0, 0.05);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(255, 199, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 26px;
  color: var(--gold-primary);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* TIMELINE STEPS */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: rgba(255, 199, 0, 0.25);
  margin-bottom: 8px;
}

.step-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HANDS TABLE */
.hands-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

.hands-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14.5px;
}

.hands-table th, .hands-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.hands-table th {
  background: var(--bg-secondary);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hands-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.hands-table tr.rank-top td {
  background: rgba(255, 199, 0, 0.03);
}

.rank-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.rank-badge.gold {
  background: var(--gold-gradient);
  color: #07090e;
}

.mini-cards {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 2px;
  color: #38bdf8;
}

/* JACKPOT SECTION */
.jackpot-banner {
  background: linear-gradient(135deg, #161005 0%, #241a06 50%, #161005 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 199, 0, 0.15);
}

.jackpot-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.jackpot-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.jackpot-pill.gold {
  background: rgba(255, 199, 0, 0.2);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
}

.jackpot-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.jackpot-lead {
  font-size: 17px;
  color: #e2e8f0;
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.jackpot-rules-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 36px;
}

.jackpot-rules-box h4 {
  font-size: 14px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.jackpot-rules-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

/* CALCULATOR */
.jackpot-calculator {
  background: var(--bg-main);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.calc-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.calc-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.stake-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stake-btn {
  padding: 10px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13.5px;
  transition: var(--transition);
}

.stake-btn:hover {
  border-color: var(--gold-primary);
  color: #ffffff;
}

.stake-btn.active {
  background: var(--gold-gradient);
  color: #000000;
  border-color: var(--gold-primary);
  font-weight: 800;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.result-card.primary {
  border-color: var(--gold-primary);
  background: rgba(255, 199, 0, 0.05);
}

.result-role {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.result-pct {
  font-size: 11px;
  color: var(--emerald-primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.result-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.result-desc {
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.4;
}

/* STOP LOSS SECTION */
.stoploss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stoploss-content p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.stoploss-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.sl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-md);
}

.sl-bullet {
  font-size: 20px;
}

.sl-item strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 2px;
}

.sl-item span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* CODE TERMINAL */
.code-terminal {
  background: #05080f;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0d121c;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.terminal-code {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: #e2e8f0;
}

.c-comment { color: #64748b; }
.c-kw { color: #f43f5e; }
.c-fn { color: #38bdf8; }
.c-str { color: #34d399; }
.c-num { color: #f59e0b; }

.terminal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #0d121c;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.status-indicator {
  color: var(--emerald-primary);
  font-weight: 700;
}

/* SECURITY CARDS */
.security-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: var(--transition);
}

.sec-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.sec-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.sec-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.sec-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ ACCORDION */
.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.active {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition);
}

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

.faq-arrow {
  font-size: 20px;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.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 24px;
  max-height: 250px;
}

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

/* FINAL CTA */
.final-cta-section {
  padding: 80px 0 120px 0;
}

.cta-box {
  background: linear-gradient(135deg, #111724 0%, #1f1807 50%, #111724 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 199, 0, 0.15);
}

.spade-large {
  display: block;
  font-size: 48px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-subtext {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.brand-col .brand-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin: 16px 0;
  line-height: 1.6;
  max-width: 320px;
}

.creator-tag {
  color: var(--gold-primary);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  text-align: center;
}

.legal-text p {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 6px;
}

.legal-text strong {
  color: var(--text-muted);
}

/* ANIMATIONS */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE FIRST CALIBRATION)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 36px auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-badges {
    margin: 0 auto;
  }

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

  .timeline-steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .section-title {
    font-size: 30px;
  }

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

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }

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

  .jackpot-banner {
    padding: 32px 20px;
  }

  .jackpot-rules-box ul {
    grid-template-columns: 1fr;
  }

  .calc-results-grid {
    grid-template-columns: 1fr;
  }

  .security-cards-grid {
    grid-template-columns: 1fr;
  }

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

  /* Hamburger & Mobile Nav */
  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #090e17;
    border-bottom: 1px solid var(--gold-border);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  }

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
  }

  .nav-actions .btn {
    display: none;
  }
}
