
        :root {
            --bg-primary: #0A1628;
            --bg-secondary: #1a2744;
            --bg-tertiary: #0f1d32;
            --accent: #3b82f6;
            --accent-light: #60a5fa;
            --danger: #FF6B35;
            --danger-light: #FF8F5E;
            --orange-start: #FF8A00;
            --orange-end: #E75D00;
            --warning: #FF6B35;
            --success: #10b981;
            --text-primary: #e2e8f0;
            --text-muted: #94a3b8;
            --border: #334155;
        }

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

        body {
            font-family: 'Sora', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* COVER */
        .cover {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #0e1b30 0%, #121f37 25%, #141f35 50%, #10192c 75%, #0c1422 100%);
        }

        .cover::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='1' fill='%23ffffff' fill-opacity='0.025'/%3E%3C/svg%3E"),
                radial-gradient(ellipse at 50% 45%, rgba(25,40,70,0.4) 0%, transparent 65%);
            pointer-events: none;
        }

        .cover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.08) 80%, transparent 100%);
        }

        .cover-logo {
            width: 120px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cover-badge {
            display: inline-block;
            padding: 8px 24px;
            border: 1px solid var(--danger);
            border-radius: 30px;
            color: var(--danger);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 32px;
        }

        .cover-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.15;
            max-width: 800px;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff, var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cover-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            font-weight: 400;
            margin-bottom: 12px;
        }

        .cover-url {
            display: inline-block;
            margin-top: 12px;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: var(--danger);
            text-decoration: none;
        }

        .cover-meta {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .cover-meta-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .cover-meta-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .cover-meta-value {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
        }

        /* ICON BOX */
        .icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #FF8A00, #E75D00);
            border-radius: 12px;
            margin-right: 14px;
            flex-shrink: 0;
            vertical-align: middle;
        }

        .icon-box i {
            font-size: 22px;
            color: #fff;
        }

        /* LAYOUT */
        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 60px 0;
        }

        /* SECTION HEADERS */
        .section-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-title {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 32px;
            color: #fff;
        }

        /* CARDS */
        .card {
            background: linear-gradient(135deg, var(--bg-secondary), rgba(59,130,246,0.08));
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 14px;
        }

        .card strong {
            color: var(--danger);
        }

        .highlight-card {
            background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,138,0,0.04));
            border: 1px solid rgba(255,107,53,0.3);
            border-radius: 20px;
            padding: 28px 32px;
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.8;
        }

        .highlight-card strong {
            color: var(--danger);
        }

        /* ALERT BOX */
        .alert-box {
            background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,138,0,0.06));
            border: 1px solid rgba(255,107,53,0.4);
            border-left: 4px solid var(--danger);
            border-radius: 0 16px 16px 0;
            padding: 24px 28px;
            margin-bottom: 24px;
            font-size: 14px;
            line-height: 1.8;
        }

        .alert-box strong {
            color: var(--danger);
        }

        /* TABLES */
        .table-wrapper {
            overflow-x: auto;
            margin-bottom: 24px;
            border-radius: 16px;
            border: 1px solid var(--border);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        thead th {
            background: var(--bg-secondary);
            color: var(--danger);
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(51,65,85,0.5);
            color: var(--text-primary);
        }

        tbody tr:last-child td {
            border-bottom: none;
        }

        tbody tr:hover {
            background: rgba(59,130,246,0.04);
        }

        /* CODE BLOCKS / SCENARIOS */
        .scenario-block {
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 20px;
            font-family: 'Sora', monospace;
            font-size: 13px;
            line-height: 1.9;
            white-space: pre-wrap;
            overflow-x: auto;
        }

        .scenario-block strong {
            color: var(--danger);
        }

        /* SCORING BARS */
        .scoring-item {
            margin-bottom: 16px;
        }

        .scoring-label {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            display: flex;
            justify-content: space-between;
        }

        .scoring-bar {
            height: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
            overflow: hidden;
        }

        .scoring-fill {
            height: 100%;
            border-radius: 5px;
            background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
        }

        .scoring-fill.blue {
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
        }

        .scoring-fill.green {
            background: linear-gradient(90deg, var(--success), #34d399);
        }

        .scoring-fill.muted {
            background: linear-gradient(90deg, #475569, #64748b);
        }

        /* STRATEGY STEPS */
        .strategy-step {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 16px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            color: var(--danger);
            border: 2px solid var(--danger);
            background: var(--bg-primary);
            flex-shrink: 0;
        }

        .step-content h4 {
            color: var(--danger);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-content p {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.8;
        }

        /* TIMELINE CRONOGRAMA */
        .cronograma-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-left: 4px solid var(--accent);
            border-radius: 0 16px 16px 0;
            padding: 20px 24px;
            margin-bottom: 12px;
        }

        .cronograma-item.critical {
            border-left-color: var(--danger);
        }

        .cronograma-item .date-label {
            color: var(--danger);
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .cronograma-item ul {
            list-style: none;
            padding: 0;
        }

        .cronograma-item li {
            font-size: 14px;
            padding: 4px 0;
            padding-left: 16px;
            position: relative;
        }

        .cronograma-item li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--danger);
            font-size: 14px;
        }

        .cronograma-item li:last-child::before {
            content: '•';
        }

        /* CONTINGENCY TABLE */
        .risk-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 12px;
        }

        .risk-card .risk-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .risk-card .risk-name {
            font-weight: 700;
            color: #fff;
            font-size: 14px;
        }

        .risk-card .risk-prob {
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            text-transform: uppercase;
        }

        .risk-prob.low { background: rgba(16,185,129,0.15); color: var(--success); }
        .risk-prob.medium { background: rgba(255,107,53,0.15); color: var(--danger); }

        .risk-card .risk-response {
            font-size: 13px;
            color: var(--text-muted);
        }



        /* COMPARISON TABLE */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .comparison-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
        }

        .comparison-card.positive {
            border-color: rgba(16,185,129,0.3);
        }

        .comparison-card.negative {
            border-color: rgba(239,68,68,0.3);
        }

        .comparison-card h4 {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .comparison-card.positive h4 { color: var(--success); }
        .comparison-card.negative h4 { color: #ef4444; }

        /* FOOTER */
        .footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 12px;
        }

        /* DIVIDER */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
            margin: 0;
        }

        /* NOTE */
        .note {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 12px;
        }

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

        /* RESPONSIVE — TABLET */
        @media (max-width: 1024px) {
            .container { max-width: 100%; padding: 0 24px; }
            .cover-title { font-size: 36px; }
            .section-title { font-size: 24px; }
            .card, .highlight-card, .alert-box { padding: 24px; }
        }

        /* RESPONSIVE — MOBILE */
        @media (max-width: 768px) {
            body { line-height: 1.6; }

            .cover { padding: 48px 16px; min-height: 90vh; }
            .cover-logo { width: 80px; margin-bottom: 28px; }
            .cover-badge { font-size: 10px; padding: 6px 16px; letter-spacing: 1.5px; margin-bottom: 20px; }
            .cover-title { font-size: 26px; max-width: 100%; }
            .cover-subtitle { font-size: 15px; }
            .cover-url { font-size: 12px; }
            .cover-meta { flex-direction: column; gap: 16px; margin-top: 32px; padding-top: 24px; }
            .cover-meta-item { flex-direction: row; justify-content: space-between; width: 100%; }
            .cover-meta-label { font-size: 10px; }
            .cover-meta-value { font-size: 13px; }

            .container { padding: 0 16px; }
            section { padding: 40px 0; }

            .section-title { font-size: 20px; flex-wrap: wrap; gap: 8px; }
            .icon-box { width: 36px; height: 36px; border-radius: 10px; margin-right: 10px; }
            .icon-box i { font-size: 18px; }

            .card, .highlight-card { padding: 18px; font-size: 13px; border-radius: 16px; }
            .alert-box { padding: 18px 20px; font-size: 13px; border-radius: 0 12px 12px 0; }

            /* Tabelas: scroll horizontal com indicador visual */
            .table-wrapper { 
                border-radius: 12px;
                -webkit-overflow-scrolling: touch;
                position: relative;
            }
            .table-wrapper::after {
                content: '→';
                position: absolute;
                right: 8px;
                top: 50%;
                transform: translateY(-50%);
                color: var(--danger);
                font-size: 16px;
                opacity: 0.4;
                pointer-events: none;
                animation: fadeInOut 2s ease-in-out infinite;
            }
            @keyframes fadeInOut {
                0%, 100% { opacity: 0.2; }
                50% { opacity: 0.6; }
            }
            table { font-size: 11px; min-width: 500px; }
            thead th { font-size: 10px; padding: 10px 12px; letter-spacing: 0.5px; }
            tbody td { padding: 10px 12px; }
            td[style*="white-space: nowrap"] { white-space: normal !important; }

            .comparison-grid { grid-template-columns: 1fr; gap: 12px; }
            .comparison-card { padding: 18px; border-radius: 12px; }

            .strategy-step { flex-direction: column; padding: 20px; gap: 12px; border-radius: 12px; }
            .step-number { width: 32px; height: 32px; font-size: 14px; }
            .step-content h4 { font-size: 14px; }
            .step-content p { font-size: 13px; }

            .scoring-label { font-size: 12px; }
            .scoring-bar { height: 8px; }

            .cronograma-item { padding: 16px 18px; border-radius: 0 12px 12px 0; }
            .cronograma-item .date-label { font-size: 12px; }
            .cronograma-item li { font-size: 13px; padding: 3px 0 3px 14px; }

            .risk-card { padding: 16px 18px; border-radius: 12px; }
            .risk-card .risk-name { font-size: 13px; }
            .risk-card .risk-prob { font-size: 10px; }
            .risk-card .risk-response { font-size: 12px; }

            .note { font-size: 11px; }

            /* Grid da calibragem Cube em 1 coluna */
            div[style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }

            .footer { padding: 28px 16px; }
            .footer p { font-size: 11px; }

            h3 { font-size: 16px !important; }
            h4 { font-size: 13px !important; }
        }

        /* RESPONSIVE — SMALL MOBILE */
        @media (max-width: 480px) {
            .cover { padding: 36px 12px; min-height: 85vh; }
            .cover-title { font-size: 22px; }
            .cover-badge { font-size: 9px; padding: 5px 12px; }
            
            .container { padding: 0 12px; }
            section { padding: 32px 0; }

            .section-title { font-size: 18px; }
            .icon-box { width: 32px; height: 32px; border-radius: 8px; margin-right: 8px; }
            .icon-box i { font-size: 16px; }

            .card, .highlight-card { padding: 14px; font-size: 12px; border-radius: 12px; }
            .alert-box { padding: 14px 16px; font-size: 12px; }

            table { min-width: 420px; font-size: 10px; }
            thead th { padding: 8px 8px; font-size: 9px; }
            tbody td { padding: 8px 8px; }

            .strategy-step { padding: 16px; }
            .cronograma-item { padding: 14px 16px; }
            .risk-card { padding: 14px 16px; }

            .scoring-label { font-size: 11px; }

            .cover-meta-item { gap: 4px; }
        }

        /* ═══════════════════════════════════════════ */
        /* VISUAL ENHANCEMENTS — PREMIUM              */
        /* ═══════════════════════════════════════════ */

        /* READING PROGRESS BAR */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange-start), var(--danger), var(--accent));
            z-index: 9999;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(255,107,53,0.5);
        }

        /* SCROLL REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* GLASSMORPHISM HOVER ON CARDS */
        .card, .highlight-card, .alert-box {
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .card:hover, .highlight-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,107,53,0.15);
        }

        /* HERO STAT CARDS */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--bg-secondary), rgba(255,107,53,0.06));
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange-start), var(--danger));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(255,107,53,0.15);
        }
        .stat-card:hover::before { opacity: 1; }
        .stat-card .stat-number {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--danger), var(--orange-start));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: 8px;
        }
        .stat-card .stat-detail {
            font-size: 11px;
            color: var(--accent-light);
            margin-top: 4px;
        }

        /* PROBABILITY GAUGE */
        .gauge-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            margin: 32px 0;
        }
        .gauge {
            position: relative;
            width: 160px;
            height: 80px;
            overflow: hidden;
        }
        .gauge-bg, .gauge-fill {
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 14px solid transparent;
        }
        .gauge-bg {
            border-color: rgba(255,255,255,0.06);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
        }
        .gauge-fill {
            border-color: transparent;
            border-top-color: var(--danger);
            border-right-color: var(--danger);
            transform: rotate(var(--gauge-angle, -90deg));
            transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
            filter: drop-shadow(0 0 8px rgba(255,107,53,0.4));
        }
        .gauge-fill.green {
            border-top-color: var(--success);
            border-right-color: var(--success);
            filter: drop-shadow(0 0 8px rgba(16,185,129,0.4));
        }
        .gauge-value {
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            font-weight: 800;
            color: #fff;
        }
        .gauge-label {
            text-align: center;
            margin-top: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        /* GLOW EFFECT ON KEY NUMBERS */
        .glow-text {
            text-shadow: 0 0 20px rgba(255,107,53,0.3);
        }

        /* FLOATING NAV */
        .floating-nav {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .floating-nav a {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.1);
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .floating-nav a:hover, .floating-nav a.active {
            background: var(--danger);
            box-shadow: 0 0 12px rgba(255,107,53,0.5);
            transform: scale(1.3);
        }

        /* PULSE INDICATOR */
        .pulse-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--danger);
            margin-right: 8px;
            animation: pulse 2s ease-in-out infinite;
            vertical-align: middle;
        }
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
            50% { box-shadow: 0 0 0 8px rgba(255,107,53,0); }
        }

        /* SECTION COUNTER */
        .section-counter {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(255,107,53,0.12);
            color: var(--danger);
            font-size: 12px;
            font-weight: 700;
            margin-right: 12px;
            flex-shrink: 0;
        }

        /* HERO STATS RESPONSIVE */
        @media (max-width: 768px) {
            .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .stat-card { padding: 16px 12px; }
            .stat-card .stat-number { font-size: 28px; }
            .stat-card .stat-label { font-size: 10px; }
            .gauge-container { flex-direction: column; gap: 24px; }
            .floating-nav { display: none; }
        }
        @media (max-width: 480px) {
            .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .stat-card { padding: 14px 10px; border-radius: 12px; }
            .stat-card .stat-number { font-size: 24px; }
        }

        /* CANDIDATE CARDS */
        .candidates-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            margin: 24px 0;
        }
        .candidate-card {
            background: linear-gradient(135deg, var(--bg-secondary), rgba(255,255,255,0.03));
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 14px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .candidate-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--card-accent, var(--border));
        }
        .candidate-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
            border-color: var(--card-accent, var(--danger));
        }
        .candidate-photo {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--card-accent, var(--border));
            margin: 0 auto 12px;
            display: block;
            transition: border-color 0.3s ease;
        }
        .candidate-card:hover .candidate-photo {
            border-color: var(--card-accent, var(--danger));
            box-shadow: 0 0 16px rgba(255,107,53,0.2);
        }
        .candidate-name {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .candidate-party {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 8px;
        }
        .candidate-role {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .candidate-poll {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.2;
        }
        .candidate-poll-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .candidate-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Party colors */
        .party-pl { background: rgba(0,100,200,0.15); color: #4da6ff; }
        .party-psd { background: rgba(255,107,53,0.15); color: var(--danger); }
        .party-mdb { background: rgba(16,185,129,0.15); color: var(--success); }
        .party-pdt { background: rgba(200,50,50,0.15); color: #ff6b6b; }

        /* Responsive candidates */
        @media (max-width: 1024px) {
            .candidates-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .candidates-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .candidate-card { padding: 16px 10px; }
            .candidate-photo { width: 56px; height: 56px; }
            .candidate-name { font-size: 12px; }
            .candidate-poll { font-size: 18px; }
        }
        @media (max-width: 480px) {
            .candidates-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .candidate-card { padding: 14px 8px; border-radius: 12px; }
            .candidate-photo { width: 48px; height: 48px; border-width: 2px; }
            .candidate-name { font-size: 11px; }
            .candidate-poll { font-size: 16px; }
        }
    