/* ==========================================================================
   Bolão Landing Page - High-End Design System & Stylesheet
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-dark: #070D19;
  --bg-card: rgba(15, 25, 48, 0.7);
  --bg-card-hover: rgba(22, 36, 68, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --primary-neon: #00E676;
  --primary-glow: rgba(0, 230, 118, 0.35);
  --accent-blue: #3B82F6;
  --accent-cyan: #06B6D4;
  --accent-purple: #8B5CF6;
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 230, 118, 0.3);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-family);

  /* Container */
  --max-width: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
}

.text-gradient {
  background: linear-gradient(135deg, #00E676 0%, #3B82F6 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-header {
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00E676 0%, #00B0FF 100%);
  color: #050B14;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--primary-neon);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Navbar */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

.navbar-header.scrolled {
  background: rgba(7, 13, 25, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.logo-highlight {
  color: var(--primary-neon);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  background-color: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #EF4444;
  animation: pulse 1.5s infinite;
}

.palpites-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.palpite-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-fast);
}

.palpite-game-card:hover {
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateY(-2px);
}

.palpite-game-card.live-card {
  border-color: rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(15, 25, 48, 0.8) 100%);
}

.pgc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

.pgc-meta {
  color: var(--text-subtle);
  font-weight: 600;
}

.pgc-champ {
  color: var(--text-muted);
}

.pgc-status-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
}

.live-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-live-dot {
  width: 6px;
  height: 6px;
  background-color: #EF4444;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

.scheduled-badge {
  background: rgba(59, 130, 246, 0.12);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.ended-badge {
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.pgc-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding: 0.5rem 0;
}

.pgc-team {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.pgc-team:last-child {
  justify-content: flex-end;
}

.pgc-crest {
  font-size: 1.8rem;
}

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

.pgc-score-display {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.3rem;
  border: 1px solid var(--border-color);
}

.pgc-score-sep {
  color: var(--text-subtle);
}

.pgc-score-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--border-glow);
}

.pgc-input {
  width: 40px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--primary-neon);
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
}

.pgc-input:focus {
  outline: none;
  border-color: var(--primary-neon);
}

.pgc-vs {
  font-weight: 800;
  color: var(--text-subtle);
}

.pgc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pgc-user-palpite {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.pgc-label {
  color: var(--text-subtle);
}

.pgc-value {
  font-weight: 800;
  color: var(--text-main);
}

.pgc-badge-pts-earned {
  background: rgba(0, 230, 118, 0.15);
  color: var(--primary-neon);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 0.25rem 0.8rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.8rem;
}

.pgc-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pgc-action-btn:hover {
  background: rgba(0, 230, 118, 0.2);
  border-color: var(--primary-neon);
  color: var(--primary-neon);
}

.btn-save {
  background: var(--primary-neon);
  color: #000;
  border: none;
}

.btn-save:hover {
  background: #00c853;
  color: #000;
}

/* Hero Section */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, rgba(59, 130, 246, 0.1) 40%, rgba(7, 13, 25, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-neon);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-color);
}

/* Phone Frame Mockup */
.hero-preview {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #0B1424;
  border-radius: 44px;
  border: 8px solid #1E293B;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 230, 118, 0.15);
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #1E293B;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background: #0B1730;
  height: 100%;
  border-radius: 32px;
  padding: 2.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 0.85rem;
  overflow: hidden;
  position: relative;
}

/* Mobile Palpites Screen UI Replica */
.palpites-mobile-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.pms-header {
  padding: 0 0.8rem 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pms-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.pms-title {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.pms-group-chip {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
}

.pms-group-name {
  color: var(--primary-neon);
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pms-rodada-bar {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
}

.pms-chip {
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.pms-chip.active {
  background: rgba(0, 230, 118, 0.2);
  color: var(--primary-neon);
  border: 1px solid rgba(0, 230, 118, 0.4);
}

.pms-cards-list {
  padding: 0.6rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  overflow-y: auto;
}

.pms-card {
  background: rgba(15, 25, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pms-card.live-border {
  border-color: rgba(239, 68, 68, 0.4);
}

.pms-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-subtle);
}

.pms-match-when {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
}

.pms-pill {
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.6rem;
}

.pms-pill-live {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.pms-live-dot {
  width: 4px;
  height: 4px;
  background-color: #EF4444;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.pms-pill-time {
  background: rgba(0, 230, 118, 0.1);
  color: var(--primary-neon);
}

.pms-match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
}

.pms-team {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
}

.pms-team:last-child {
  justify-content: flex-end;
}

.pms-crest {
  font-size: 1rem;
}

.pms-team-txt {
  font-size: 0.7rem;
  font-weight: 700;
}

.pms-score-bold {
  font-weight: 900;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.pms-vs-lbl {
  font-size: 0.65rem;
  color: var(--text-subtle);
  font-weight: 700;
}

.pms-user-palpite-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  font-size: 0.62rem;
}

.pms-user-palpite-txt {
  font-weight: 700;
  color: var(--text-main);
  flex: 1;
  margin-left: 0.3rem;
}

.pms-pts-pill {
  background: var(--primary-neon);
  color: #000;
  font-weight: 900;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.58rem;
}

.pms-btn-criar {
  background: rgba(0, 230, 118, 0.15);
  border: 1px dashed var(--primary-neon);
  color: var(--primary-neon);
  text-align: center;
  padding: 0.35rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.68rem;
}

.pms-tab-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(5, 11, 20, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0;
}

.pms-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: var(--text-subtle);
  font-size: 0.58rem;
  font-weight: 600;
}

.pms-tab-item.active {
  color: var(--primary-neon);
}

.pms-tab-ic {
  font-size: 0.9rem;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
}

.glow-green { background: rgba(0, 230, 118, 0.1); border-color: rgba(0, 230, 118, 0.3); }
.glow-blue { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); }
.glow-purple { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.3); }
.glow-orange { background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.3); }
.glow-cyan { background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.3); }
.glow-pink { background: rgba(236, 72, 153, 0.1); border-color: rgba(236, 72, 153, 0.3); }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

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

/* Simulator Section */
.simulator-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #050B14 100%);
}

.simulator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.points-rule-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.points-rule-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.rule-pts {
  font-weight: 800;
  color: var(--primary-neon);
  font-family: var(--font-heading);
  min-width: 70px;
}

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

.simulator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.sim-card-header {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.sim-teams {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 2rem;
}

.sim-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sim-flag {
  font-size: 2.5rem;
}

.sim-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.sim-vs {
  font-weight: 900;
  color: var(--text-subtle);
}

.sim-inputs-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.sim-input-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.sim-input-col label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.counter-input {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
}

.cnt-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cnt-btn:hover {
  background: var(--primary-neon);
  color: #000;
}

.counter-input span {
  font-weight: 900;
  font-size: 1.2rem;
  min-width: 20px;
  text-align: center;
}

.counter-sep {
  font-weight: 700;
  color: var(--text-subtle);
}

.sim-result-box {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1px solid var(--primary-neon);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.sim-result-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.sim-result-points {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-neon);
  font-family: var(--font-heading);
}

.sim-result-badge {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 0.3rem;
}

/* Ranking Demo Card */
.ranking-demo-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ranking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.ranking-group-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.live-indicator {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ranking-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem;
  border-radius: 12px;
}

.tab-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ranking-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.ranking-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 230, 118, 0.3);
}

.rank-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.gold-rank .rank-badge { background: #FFD700; color: #000; }
.silver-rank .rank-badge { background: #C0C0C0; color: #000; }
.bronze-rank .rank-badge { background: #CD7F32; color: #fff; }
.default-rank { background: rgba(255, 255, 255, 0.1); color: var(--text-muted); }

.player-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.player-info {
  flex: 1;
}

.player-name {
  font-weight: 700;
  font-size: 1rem;
}

.player-stats {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.player-score {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary-neon);
  font-family: var(--font-heading);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: rgba(0, 230, 118, 0.2);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

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

/* Download CTA Section */
.cta-box {
  background: linear-gradient(135deg, rgba(15, 25, 48, 0.9) 0%, rgba(5, 11, 20, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 3rem auto;
}

.cta-store-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #0B1424;
  border: 1px solid var(--border-color);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #fff;
  transition: var(--transition-smooth);
}

.store-btn:hover {
  border-color: var(--primary-neon);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 230, 118, 0.2);
}

.store-icon {
  font-size: 1.8rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-small {
  font-size: 0.7rem;
  color: var(--text-subtle);
  text-transform: uppercase;
}

.store-title {
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #040810;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-subtle);
  margin-top: 1rem;
  max-width: 320px;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container,
  .simulator-wrapper,
  .footer-container {
    grid-template-columns: 1fr;
  }

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

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

  .phone-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .features-grid,
  .steps-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-cta-group,
  .cta-store-buttons {
    flex-direction: column;
  }

  .sim-input-col {
    flex-direction: column;
    gap: 0.8rem;
  }

  .support-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .faq-item summary {
    padding: 1.2rem 1.4rem;
    font-size: 0.95rem;
  }
}

/* Support Page */
.support-hero-section {
  padding-top: 9rem;
  position: relative;
}

.support-contact-card {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 2.4rem;
  backdrop-filter: blur(12px);
}

.support-contact-icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid var(--border-glow);
}

.support-contact-body {
  flex: 1;
}

.support-contact-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.support-contact-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-section {
  padding-top: 3rem;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item:hover {
  border-color: rgba(0, 230, 118, 0.25);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: var(--primary-neon);
  flex-shrink: 0;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.6rem 1.4rem 1.6rem;
}

.faq-item p a {
  color: var(--primary-neon);
  text-decoration: none;
}

.faq-item p a:hover {
  text-decoration: underline;
}

/* Legal Pages (Termos / Privacidade) */
.legal-hero-section {
  padding-top: 9rem;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 3.2rem;
  backdrop-filter: blur(12px);
}

.legal-content > p:first-child {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
  scroll-margin-top: 6rem;
}

.legal-content h2:first-of-type {
  margin-top: 0.5rem;
}

.legal-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0 0 1.2rem 0;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-content li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-content li::marker {
  color: var(--primary-neon);
}

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

.legal-content a {
  color: var(--primary-neon);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1.6rem;
  }
}
