/* ==========================================================================
   BOLETIM POLITICABR - MODERN OPEN DIGITAL DESIGN SYSTEM
   Theme: Midnight Navy, Clean Slate, High-Contrast Gold & Editorial Neutrality
   Directly matching the clean, non-partisan UI palette requested by the user
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Clean Midnight Navy Palette (From Reference Screenshot) */
  --bg-darkest: #040d17;
  --bg-page: #061320;
  --bg-surface: #0a1e32;
  --bg-card: #0d253d;
  --bg-card-hover: #12304d;
  --bg-input: #091d30;
  --bg-subtle: rgba(255, 255, 255, 0.05);
  
  /* Vibrant Golden Amber (Directly from User's Button) */
  --gold-primary: #ffbf00;
  --gold-hover: #ffd000;
  --gold-glow: rgba(255, 191, 0, 0.35);
  --gold-soft: rgba(255, 191, 0, 0.12);
  
  /* Clean Tech & Neutral Accents */
  --accent-cyan: #38bdf8;
  --accent-blue: #2563eb;
  --accent-blue-soft: rgba(56, 189, 248, 0.15);
  
  /* Spectrum Indicators (Balanced Left vs Right) */
  --left-blue: #38bdf8;
  --left-blue-soft: rgba(56, 189, 248, 0.18);
  --right-red: #f87171;
  --right-red-soft: rgba(248, 113, 113, 0.18);
  --center-neutral: #94a3b8;
  
  /* Typography Colors */
  --text-pure: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #8da4be;
  --text-dim: #64748b;
  --text-dark: #061320;
  
  /* Borders & Shadows */
  --border-subtle: #143554;
  --border-medium: #1c4770;
  --border-highlight: #255d94;
  --border-gold: rgba(255, 191, 0, 0.4);
  --shadow-card: 0 16px 36px -4px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(255, 191, 0, 0.25);
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  /* Layout */
  --max-width: 1140px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-page);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(255, 191, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ==========================================================================
   FIXED CLEAN MODERN HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 19, 32, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0a1e32;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
}

.emblem-svg {
  width: 24px;
  height: 24px;
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-pure);
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-name .highlight-gold {
  color: var(--gold-primary);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: none;
}

@media (min-width: 768px) {
  .brand-tagline { display: inline-block; }
}

.header-edition-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.edition-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

/* ==========================================================================
   PROGRESS BAR SUB-HEADER
   ========================================================================== */
.quiz-progress-bar-container {
  background: rgba(4, 13, 23, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 24px;
  display: none;
}

.quiz-progress-bar-container.active {
  display: block;
}

.progress-info {
  max-width: var(--max-width);
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-track {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--gold-primary));
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
  transition: width 0.35s ease;
}

/* ==========================================================================
   MAIN APP CONTAINER
   ========================================================================== */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.view-section {
  display: none;
  animation: fadeIn 0.35s ease;
}

.view-section.active {
  display: block;
}

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

/* ==========================================================================
   1. LANDING SCREEN / INTRO CARD
   ========================================================================== */
.intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 820px;
  margin: 20px auto 0;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

@media (max-width: 640px) {
  .intro-card { padding: 36px 20px; }
}

.intro-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-pure);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.intro-title .highlight-gold {
  color: var(--gold-primary);
}

@media (max-width: 640px) {
  .intro-title { font-size: 1.9rem; }
}

.intro-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Hero Image Banner */
.intro-hero-media {
  position: relative;
  width: 100%;
  max-height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  margin: 0 auto 34px;
}

.intro-hero-img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.intro-hero-media:hover .intro-hero-img {
  transform: scale(1.02);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 32, 0.05) 0%, rgba(6, 19, 32, 0.75) 100%);
  pointer-events: none;
}

.hero-media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(6, 19, 32, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.hero-spectrum-figure {
  position: absolute;
  top: 0;
  bottom: 54px;
  width: clamp(70px, 22%, 130px);
  overflow: hidden;
  z-index: 2;
}

.hero-spectrum-left {
  left: 0;
}

.hero-spectrum-right {
  right: 0;
}

.hero-spectrum-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-spectrum-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 32, 0) 0%, rgba(6, 19, 32, 0.1) 55%, rgba(6, 19, 32, 0.95) 100%);
}

.hero-spectrum-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(6, 19, 32, 0) 0%, rgba(6, 19, 32, 0.1) 55%, rgba(6, 19, 32, 0.95) 100%);
}

.hero-spectrum-tag {
  position: absolute;
  bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  z-index: 2;
  color: #ffffff;
}

.tag-left {
  left: 6px;
  background: rgba(220, 38, 38, 0.92);
}

.tag-right {
  right: 6px;
  background: rgba(29, 78, 216, 0.92);
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}

@media (min-width: 640px) {
  .intro-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.intro-feat-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
}

.intro-feat-item:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.intro-feat-item h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.intro-feat-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Primary CTA Button (Matching Screenshot Yellow Button) */
.btn-primary {
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 191, 0, 0.4);
}

/* Urgency CTA Banner (Strong, high-contrast, before the quiz starts) */
.urgency-cta-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.16) 0%, rgba(255, 191, 0, 0.1) 100%);
  border: 1.5px solid rgba(248, 113, 113, 0.45);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.08), 0 10px 24px -6px rgba(220, 38, 38, 0.25);
}

.urgency-pulse-dot {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--right-red);
  box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
  animation: urgencyPulse 1.6s infinite;
}

@keyframes urgencyPulse {
  0% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(248, 113, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}

.urgency-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--right-red);
  margin-bottom: 6px;
}

.urgency-content .urgency-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}

.urgency-content .urgency-text strong {
  color: var(--text-pure);
}

@media (max-width: 640px) {
  .urgency-cta-banner { padding: 14px 14px; }
}

.intro-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 18px;
}

/* ==========================================================================
   2. QUIZ SCREEN (QUESTIONS & TRANSITIONS)
   ========================================================================== */
.quiz-container {
  max-width: 780px;
  margin: 0 auto;
}

.question-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 640px) {
  .question-card { padding: 28px 20px; }
}

.question-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.question-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.question-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: var(--accent-blue-soft);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.question-text {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.35;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

@media (max-width: 640px) {
  .question-text { font-size: 1.3rem; margin-bottom: 22px; }
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-btn {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  transition: var(--transition);
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.5;
  font-weight: 500;
}

.option-letter {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}

.option-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  color: #ffffff;
}

.option-btn:hover .option-letter {
  background: var(--accent-cyan);
  color: var(--text-dark);
  border-color: var(--accent-cyan);
}

.option-btn.selected {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  color: #ffffff;
}

.option-btn.selected .option-letter {
  background: var(--gold-primary);
  color: var(--text-dark);
  border-color: var(--gold-primary);
}

/* Transition Screens (Curiosities) */
.transition-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .transition-card { padding: 36px 20px; }
}

.transition-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.transition-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.transition-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-continue {
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-continue:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   3. RESULT SCREEN (POLITICAL SPECTRUM & QUALIFICATION)
   ========================================================================== */
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  max-width: 820px;
  margin: 0 auto 50px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

@media (max-width: 640px) {
  .result-card { padding: 32px 20px; }
}

.result-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.result-profile-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-pure);
  line-height: 1.2;
  margin-bottom: 12px;
}

.result-profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  border: 1px solid currentColor;
}

/* Spectrum Chart Widget */
.spectrum-chart-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
}

.spectrum-labels-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.spectrum-label-left {
  color: var(--left-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.spectrum-label-right {
  color: var(--right-red);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spectrum-track {
  position: relative;
  height: 14px;
  background: linear-gradient(90deg, #38bdf8 0%, #64748b 50%, #f87171 100%);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.spectrum-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--gold-primary);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.7);
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.spectrum-values-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.result-explanation {
  font-size: 1.08rem;
  color: var(--text-main);
  line-height: 1.65;
  max-width: 660px;
  margin: 0 auto 32px;
}

.result-explanation strong {
  color: var(--text-pure);
}

/* Personalized visual block (shown for right-leaning results) */
.result-personalized-block {
  max-width: 560px;
  margin: 0 auto 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}

.personalized-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.tag-right-solid {
  color: #fff;
  background: rgba(29, 78, 216, 0.85);
}

.tag-left-solid {
  color: #fff;
  background: rgba(220, 38, 38, 0.85);
}

.tag-center-solid {
  color: var(--text-dark);
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.85) 0%, var(--gold-primary) 50%, rgba(29, 78, 216, 0.85) 100%);
}

.figures-quad {
  position: relative;
}

.figures-quad::before {
  content: '';
  position: absolute;
  top: -4px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: var(--border-medium);
}

.figures-quad .personalized-figure:first-child img {
  border-color: rgba(220, 38, 38, 0.5);
}

.figures-quad .personalized-figure:last-child img {
  border-color: rgba(29, 78, 216, 0.5);
}

.personalized-figures {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.personalized-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.personalized-figure img {
  width: 84px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-medium);
}

.personalized-figure figcaption {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.personalized-note {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
}

.personalized-credit {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.btn-preview-app {
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-preview-app:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   4. SMARTPHONE MOCKUP (COMMERCIAL APP PREVIEW)
   ========================================================================== */
.mockup-showcase-section {
  margin-top: 50px;
}

.mockup-header-text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.mockup-header-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.mockup-header-text h2 span {
  color: var(--gold-primary);
}

.mockup-header-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Phone Device Frame */
.smartphone-device {
  width: 100%;
  max-width: 414px;
  margin: 0 auto;
  background: #040d17;
  border: 12px solid #0d253d;
  border-radius: 46px;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--border-subtle);
  overflow: hidden;
  position: relative;
}

/* Dynamic Island / Notch */
.device-notch-area {
  background: #040d17;
  padding: 12px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.dynamic-island {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 96px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
}

.notch-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

/* Scrollable Screen Inside Phone */
.device-screen {
  background: var(--bg-page);
  height: 680px;
  overflow-y: auto;
  padding: 0 16px 30px;
  position: relative;
  scrollbar-width: thin;
}

.device-screen::-webkit-scrollbar {
  width: 4px;
}
.device-screen::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 4px;
}

/* Mobile App Header */
.app-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(6, 19, 32, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-brand {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-pure);
}

.app-brand span {
  color: var(--gold-primary);
}

.app-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Toggle "Modo Sem Viés" */
.btn-toggle-unbiased {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.btn-toggle-unbiased.active {
  background: var(--gold-primary);
  color: var(--text-dark);
  font-weight: 800;
  border-color: var(--gold-primary);
}

.notification-bell-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-pure);
}

.bell-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--right-red);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 10px;
  line-height: 1;
}

/* Personalized Headline Card inside phone */
.app-headline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.app-tag-personalized {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--gold-primary);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.mockup-news-thumb {
  width: 100%;
  height: 135px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--border-subtle);
}

.mockup-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-headline-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.35;
  margin-bottom: 8px;
}

.app-headline-lead {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* 60-Second Audio Player Widget inside phone */
.app-audio-player {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 900;
  transition: var(--transition);
}

.audio-play-btn:hover {
  background: var(--gold-hover);
}

.audio-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.audio-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
}

.audio-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.audio-fill {
  height: 100%;
  width: 38%;
  background: var(--gold-primary);
  transition: width 0.2s linear;
}

/* Section "DOIS LADOS" inside phone */
.app-section-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.section-box-title {
  font-size: 0.74rem;
  font-family: var(--font-mono);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.dois-lados-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.tab-side-btn {
  flex: 1;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 7px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-muted);
  transition: var(--transition);
}

.tab-side-btn.active.tab-right {
  background: var(--right-red-soft);
  color: #fca5a5;
  border-color: var(--right-red);
}

.tab-side-btn.active.tab-left {
  background: var(--left-blue-soft);
  color: #93c5fd;
  border-color: var(--left-blue);
}

.side-content-box {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-main);
  border-left: 3px solid var(--border-medium);
  padding-left: 10px;
}

.side-content-box.right-border {
  border-left-color: var(--right-red);
}

.side-content-box.left-border {
  border-left-color: var(--left-blue);
}

/* Congress & STF Live Votes Feed */
.app-vote-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-main);
}

.app-vote-item:last-child {
  border-bottom: none;
}

.vote-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.vote-badge.stf { background: rgba(56, 189, 248, 0.15); color: #7dd3fc; border: 1px solid #38bdf8; }
.vote-badge.congresso { background: var(--gold-soft); color: #fde047; border: 1px solid var(--gold-primary); }

/* Interactive "Onde Votou Meu Parlamentar" */
.app-search-widget {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.app-search-input {
  flex: 1;
  font-size: 0.78rem;
  padding: 8px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--bg-input);
  color: #fff;
  font-family: var(--font-sans);
}

.app-search-input:focus {
  border-color: var(--accent-cyan);
}

.app-search-btn {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  background: var(--gold-primary);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.app-search-btn:hover {
  background: var(--gold-hover);
}

.app-search-result {
  margin-top: 10px;
  font-size: 0.76rem;
  background: var(--bg-input);
  padding: 10px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  border: 1px dashed var(--border-medium);
  display: none;
}

/* ==========================================================================
   5. URGENCY TRIGGER BANNER (SERIOUS & HONEST TONE)
   ========================================================================== */
.urgency-section {
  max-width: 820px;
  margin: 50px auto 0;
}

.urgency-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.urgency-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 12px;
  line-height: 1.3;
}

.urgency-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 26px;
}

.urgency-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

@media (min-width: 600px) {
  .urgency-cta-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.btn-convert {
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-convert:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.urgency-counter-note {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 700;
}

/* ==========================================================================
   6. LEAD CAPTURE FORM / CONVERSION SECTION (MATCHING SCREENSHOT)
   ========================================================================== */
.capture-section {
  max-width: 520px;
  margin: 50px auto 0;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 640px) {
  .capture-section { padding: 32px 20px; }
}

.capture-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-align: left;
}

.capture-lead {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  font-size: 1.05rem;
  padding: 16px 18px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-sans);
  color: #ffffff;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.form-submit-btn {
  width: 100%;
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  margin-top: 14px;
  box-shadow: var(--shadow-gold);
}

.form-submit-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 191, 0, 0.4);
}

/* Success Confirmation Screen */
.success-card {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold-primary);
}

.success-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 14px;
}

.success-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-darkest);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--gold-primary);
}

.footer-copy {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   URNA ELETRÔNICA SIMULATOR (ELEIÇÕES 2026)
   Authentic TSE-inspired hardware with modern midnight navy styling
   ========================================================================== */
.urna-showcase-section {
  margin: 60px auto 0;
  max-width: 860px;
}

.urna-header-text {
  text-align: center;
  margin-bottom: 24px;
}

.urna-header-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.urna-header-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.urna-header-text h2 span {
  color: var(--gold-primary);
}

.urna-header-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* The Physical Urna Hardware Chassis */
.urna-chassis {
  background: linear-gradient(145deg, #d1d5db 0%, #9ca3af 100%);
  border: 6px solid #4b5563;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .urna-chassis {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }
}

/* Left: The Monitor Screen */
.urna-screen-wrapper {
  background: #111827;
  border: 8px solid #374151;
  border-radius: 12px;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.8);
  padding: 18px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.urna-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-mono);
  color: #f8fafc;
}

.urna-screen-header {
  border-bottom: 1.5px solid #374151;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.urna-screen-header span {
  font-size: 0.72rem;
  color: #9ca3af;
  letter-spacing: 1px;
  display: block;
}

.urna-screen-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.5px;
}

.urna-num-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.urna-field-label {
  font-size: 0.85rem;
  color: #d1d5db;
  font-weight: 700;
}

.urna-digit-boxes {
  display: flex;
  gap: 6px;
}

.urna-digit-box {
  width: 38px;
  height: 48px;
  border: 2px solid #9ca3af;
  background: #030712;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #facc15;
}

.urna-digit-box.active-cursor {
  animation: blink-border 0.8s infinite;
}

@keyframes blink-border {
  0%, 100% { border-color: #facc15; background: #0b1523; }
  50% { border-color: #374151; background: #030712; }
}

/* Candidate details inside screen */
.urna-candidate-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #1f2937;
  margin-bottom: 12px;
}

.urna-candidate-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
}

.urna-cand-field span {
  color: #9ca3af;
}

.urna-cand-field strong {
  color: #ffffff;
  font-size: 0.88rem;
}

.urna-candidate-photo-box {
  width: 72px;
  height: 86px;
  background: #1f2937;
  border: 1.5px solid #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.photo-placeholder {
  font-size: 2.2rem;
}

.urna-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.urna-screen-footer {
  border-top: 1.5px solid #374151;
  padding-top: 10px;
  font-size: 0.68rem;
  color: #9ca3af;
  line-height: 1.4;
}

.urna-screen-footer strong {
  color: #ffffff;
}

/* "FIM" Screen */
.urna-fim-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.urna-fim-text {
  font-size: 4.2rem;
  font-weight: 900;
  color: #22c55e;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
  margin-bottom: 8px;
}

.urna-votou-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.urna-eleicoes-text {
  font-size: 0.75rem;
  color: #9ca3af;
  letter-spacing: 1.5px;
}

/* Right: The Keypad */
.urna-keypad-wrapper {
  background: #1f2937;
  border: 4px solid #111827;
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.urna-keypad-header {
  text-align: center;
  border-bottom: 1px solid #374151;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.tse-logo-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 1px;
}

.urna-numeric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.urna-key {
  background: #111827;
  color: #f8fafc;
  border: 1px solid #374151;
  border-radius: 6px;
  height: 48px;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 #030712;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  user-select: none;
}

.urna-key:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #030712;
}

.urna-key:hover {
  background: #273549;
}

.urna-key-empty {
  visibility: hidden;
}

/* Action Buttons Row */
.urna-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 6px;
  align-items: flex-end;
}

.urna-btn-action {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.urna-btn-action:active {
  transform: translateY(2px);
}

.btn-branco {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
  box-shadow: 0 3px 0 #9ca3af;
}

.btn-corrige {
  background: #f97316;
  color: #111827;
  border: 1px solid #ea580c;
  box-shadow: 0 3px 0 #c2410c;
}

.btn-confirma {
  background: #22c55e;
  color: #052e16;
  border: 1px solid #16a34a;
  box-shadow: 0 4px 0 #15803d;
  height: 52px;
  font-size: 0.85rem;
}

.btn-confirma:hover {
  background: #4ade80;
}

/* Results of the Reader Poll */
.urna-live-results {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-top: 30px;
  box-shadow: var(--shadow-card);
  animation: fadeIn 0.4s ease;
}

.results-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.results-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.results-bars-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.result-bar-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

.result-bar-track {
  height: 10px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.result-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vote-again {
  background: var(--bg-surface);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-vote-again:hover {
  background: var(--gold-soft);
}

