/* Issues Guide Specific Styles */

/* Issue-specific colors */
:root {
    --issue-pokies: #dc2626;
    --issue-health: #2563eb;
    --issue-housing: #7c3aed;
    --issue-energy: #f59e0b;
    --issue-donations: #6b7280;
    --issue-water: #0d9488;
    --culprit-color: #dc2626;
    --helper-color: #10b981;
}

/* Hero customization */
.issues-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Issues Selector Container */
.issues-selector-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Issues Grid */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

/* Issue Card */
.issue-card {
    display: flex;
    flex-direction: column;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.issue-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(106, 76, 147, 0.15);
    transform: translateY(-2px);
}

.issue-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.issue-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    box-shadow: 0 4px 15px rgba(106, 76, 147, 0.2);
}

.issue-card.selected::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.issue-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.issue-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.issue-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.issue-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.issue-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.issue-status.ready {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.issue-status.coming {
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
}

/* Issue card colors by type */
.issue-card[data-issue="pokies-reform"] .issue-icon { background: var(--issue-pokies); }
.issue-card[data-issue="health-ramping"] .issue-icon { background: var(--issue-health); }
.issue-card[data-issue="housing-affordability"] .issue-icon { background: var(--issue-housing); }
.issue-card[data-issue="energy-prices"] .issue-icon { background: var(--issue-energy); }
.issue-card[data-issue="political-donations-rig"] .issue-icon { background: var(--issue-donations); }
.issue-card[data-issue="water-agriculture"] .issue-icon { background: var(--issue-water); }

/* Postcode Section */
.postcode-section {
    max-width: 400px;
    margin: 2rem auto;
}

.postcode-section .form-group {
    text-align: center;
}

.postcode-section input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: center;
    transition: border-color 0.3s;
}

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

/* Selection Summary */
.selection-summary {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

#selected-count {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Generate Button */
.generate-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.generate-button:hover:not(:disabled) {
    background: #5a3d80;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 76, 147, 0.3);
}

.generate-button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

/* Results Section */
.results-section {
    background: var(--light-bg);
}

.district-info {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.district-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.district-info .current-mp {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

/* Results Content */
.results-content {
    display: grid;
    gap: 2rem;
}

/* Culprits and Helpers Cards */
.results-group {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.results-group h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.results-group.culprits h3 {
    color: var(--culprit-color);
    border-bottom-color: rgba(220, 38, 38, 0.2);
}

.results-group.helpers h3 {
    color: var(--helper-color);
    border-bottom-color: rgba(16, 185, 129, 0.2);
}

.results-group h3 .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.results-group.culprits h3 .icon {
    background: rgba(220, 38, 38, 0.1);
}

.results-group.helpers h3 .icon {
    background: rgba(16, 185, 129, 0.1);
}

/* Politician Card */
.politician-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.politician-card:hover {
    transform: translateX(5px);
}

.politician-card:last-child {
    margin-bottom: 0;
}

.politician-score {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.politician-score.low { background: var(--culprit-color); }
.politician-score.medium { background: #f59e0b; }
.politician-score.high { background: var(--helper-color); }

.politician-info {
    flex: 1;
}

.politician-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.politician-info .role {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.politician-info .party-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.politician-actions {
    list-style: none;
    font-size: 0.9rem;
}

.politician-actions li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.politician-actions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.culprits .politician-actions li::before {
    background: var(--culprit-color);
}

.helpers .politician-actions li::before {
    background: var(--helper-color);
}

/* Donations Badge */
.donations-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    color: var(--culprit-color);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* View Details Link */
.view-details {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    cursor: pointer;
}

.view-details:hover {
    text-decoration: underline;
}

/* Issue Detail Section */
.issue-detail-section {
    background: white;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.back-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Issue Detail Content */
#issue-detail-content {
    max-width: 900px;
}

.issue-header {
    margin-bottom: 2rem;
}

.issue-header h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.issue-header .summary {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569;
}

.issue-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--light-bg);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}

.stat-card .value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-card .label {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Timeline */
.timeline {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    border-left: 3px solid var(--border-color);
}

.timeline-item {
    position: relative;
    padding: 1rem 0 1.5rem 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 1.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
}

.timeline-item .year {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.timeline-item .event {
    font-weight: 600;
    margin: 0.25rem 0;
}

.timeline-item .outcome {
    color: #64748b;
    font-size: 0.9rem;
}

/* Party Stances */
.party-stances {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.party-stance-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr 80px;
    gap: 1rem;
    align-items: center;
}

.party-stance-card .party-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.party-stance-card .stance-details .rhetoric {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.party-stance-card .stance-details .reality {
    font-size: 0.9rem;
}

.party-stance-card .score {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

/* Key Votes */
.key-votes-list {
    margin: 2rem 0;
}

.vote-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.vote-card .bill-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.vote-card .vote-date {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.vote-card .description {
    margin-bottom: 1rem;
}

.vote-result {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vote-result.passed {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.vote-result.failed {
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
}

.vote-breakdown {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a3d80 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-box p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Party Alternatives Section */
.party-alternatives-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #1e1b2e;
    border-radius: 12px;
    border: 1px solid rgba(106, 76, 147, 0.4);
}

.party-alternatives-section h4 {
    color: #f9c74f;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.alt-major-response {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border-left: 4px solid #ef4444;
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alt-major-label {
    display: block;
    font-weight: 700;
    color: #b0b0b0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.alt-parties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.alt-party-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.alt-party-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.alt-party-position {
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.4;
}

/* Sources Section */
.sources-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.sources-section h4 {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sources-list {
    list-style: none;
    font-size: 0.9rem;
}

.sources-list li {
    margin-bottom: 0.5rem;
}

.sources-list a {
    color: var(--primary-color);
}

/* Voting Recommendation Box */
.recommendation-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.recommendation-box h3 {
    color: #166534;
    margin-bottom: 1rem;
}

.recommendation-list {
    list-style: none;
}

.recommendation-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(134, 239, 172, 0.5);
}

.recommendation-list li:last-child {
    border-bottom: none;
}

.recommendation-list .rank {
    width: 32px;
    height: 32px;
    background: #166534;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.recommendation-list .candidate {
    flex: 1;
}

.recommendation-list .reason {
    font-size: 0.85rem;
    color: #166534;
}

/* Issue Section (grouped by issue) */
.issue-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.issue-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.issue-section-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.issue-summary {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Issue Quick Stats */
.issue-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.quick-stat {
    text-align: center;
    padding: 0.5rem;
}

.quick-stat .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.quick-stat .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Issue Subsections (helpers/culprits within an issue) */
.issue-subsection {
    margin-bottom: 1.5rem;
}

.issue-subsection h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.issue-subsection.helpers h4 {
    color: var(--helper-color);
}

.issue-subsection.culprits h4 {
    color: var(--culprit-color);
}

.issue-subsection h4 .icon {
    font-size: 1.25rem;
}

/* Issue Party Comparison */
.issue-party-comparison {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.issue-party-comparison h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.issue-party-comparison .party-stance-cards {
    display: grid;
    gap: 1rem;
}

.issue-party-comparison .party-stance-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1rem;
}

.party-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

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

.party-header .score {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1rem;
}

.party-metric {
    margin-top: 0.5rem;
}

.party-metric .donations-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--culprit-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.party-metric .no-donations {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--helper-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.party-record {
    margin-top: 0.5rem;
}

.party-record .record-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.party-record .record-text {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Issue Details Link */
.issue-details-link {
    margin-top: 1.5rem;
    text-align: center;
}

.issue-details-link a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.2s;
}

.issue-details-link a:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: 1fr;
    }

    .politician-card {
        flex-direction: column;
        text-align: center;
    }

    .politician-score {
        margin: 0 auto;
    }

    .politician-actions li {
        padding-left: 0;
        text-align: left;
    }

    .party-stance-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .party-stance-card .score {
        margin: 0 auto;
    }

    .vote-breakdown {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* GOTCHA Mobile Styles */
    .gotcha-container {
        padding: 0.75rem;
    }

    .gotcha-results {
        padding: 1rem;
        margin-top: 1rem;
    }

    .gotcha-culprit-section,
    .gotcha-also-guilty-section,
    .gotcha-result-section,
    .gotcha-postcode-section {
        margin-bottom: 1.25rem;
    }

    .gotcha-party-box {
        padding: 1rem;
    }

    .party-alternatives-section {
        padding: 0.75rem;
        margin-top: 0.75rem;
    }

    .gotcha-selector {
        flex-direction: column;
    }

    .gotcha-selector select,
    .gotcha-selector button {
        width: 100%;
    }

    .gotcha-postcode-input {
        flex-direction: column;
    }

    .gotcha-postcode-input input,
    .gotcha-postcode-input button {
        width: 100%;
    }

    .gotcha-option-buttons {
        flex-direction: column;
    }

    .alt-parties-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .alt-party-card {
        min-width: 0;
        overflow: hidden;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .alt-party-position,
    .alt-major-response {
        word-break: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }

    .issue-stats,
    .issue-quick-stats {
        grid-template-columns: 1fr;
    }

    .slush-funds-grid,
    .billionaires-grid,
    .politicians-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   GOTCHA: Who's to Blame Styles
   ======================================== */

.gotcha-container {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
    overflow-x: hidden;
}

.gotcha-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.gotcha-icon {
    font-size: 2rem;
    line-height: 1;
}

.gotcha-header h2 {
    margin: 0;
    font-size: 1.75rem;
    color: #92400e;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.gotcha-subtitle {
    color: #92400e;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.gotcha-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}

.gotcha-selector label {
    display: block;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.gotcha-selector select {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gotcha-selector select:focus {
    outline: none;
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.gotcha-button {
    padding: 0.75rem 1.5rem;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.gotcha-button:hover:not(:disabled) {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.gotcha-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gotcha-button.secondary {
    background: white;
    color: #ea580c;
    border: 2px solid #ea580c;
}

.gotcha-button.secondary:hover:not(:disabled) {
    background: #fff7ed;
}

/* GOTCHA Results */
.gotcha-results {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.gotcha-issue-title {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #f59e0b;
}

.gotcha-issue-title h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #92400e;
    letter-spacing: 1px;
}

.gotcha-culprit-section,
.gotcha-also-guilty-section,
.gotcha-result-section,
.gotcha-postcode-section {
    margin-bottom: 2rem;
}

.gotcha-culprit-section h4,
.gotcha-also-guilty-section h4,
.gotcha-result-section h4,
.gotcha-postcode-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.gotcha-party-box {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.gotcha-party-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.gotcha-what-they-did {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 1rem;
}

.gotcha-key-figure {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f3f4f6;
    border-radius: 4px;
}

.gotcha-consequence {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.gotcha-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gotcha-results-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    font-size: 1rem;
    color: #1f2937;
}

.gotcha-postcode-section {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 1.5rem;
}

.gotcha-postcode-section p {
    margin-bottom: 1rem;
    color: #1f2937;
}

.gotcha-postcode-input {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.gotcha-postcode-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #10b981;
    border-radius: 8px;
    font-size: 1rem;
}

.gotcha-postcode-input input:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.gotcha-district-box {
    background: white;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 1.5rem;
}

.gotcha-district-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1rem;
}

.gotcha-mp-info {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.gotcha-mp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.gotcha-party-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.gotcha-verdict {
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 0.75rem;
}

.gotcha-verdict-culprit {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.gotcha-verdict-helper {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.gotcha-verdict-neutral {
    background: #f3f4f6;
    color: #4b5563;
    border-left: 4px solid #9ca3af;
}

.gotcha-options h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gotcha-options p {
    margin-bottom: 1rem;
    color: #374151;
}

.gotcha-option-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gotcha-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.gotcha-full-details-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gotcha-full-details-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 76, 147, 0.3);
}

/* ========================================
   Cash for Access Connection Box (Pokies)
   ======================================== */

.cash-for-access-connection-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid #d97706;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.15);
}

.cash-for-access-connection-box h4 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #78350f;
}

.cash-for-access-connection-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #78350f;
}

.cash-for-access-connection-box .the-loop {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin: 1rem 0;
    font-size: 1.05rem;
    color: #78350f;
}

.cash-for-access-connection-box .see-also {
    margin: 0;
    padding-top: 0.75rem;
    border-top: 2px solid #fbbf24;
    font-style: italic;
}

/* ========================================
   Cash for Access Explainer
   ======================================== */

.cash-for-access-explainer {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
    border: 3px solid #dc2626;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.cash-for-access-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dc2626;
}

.cash-icon {
    font-size: 2rem;
    line-height: 1;
}

.cash-for-access-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #7f1d1d;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.cash-for-access-intro {
    font-size: 1.1rem;
    color: #7f1d1d;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.6;
}

.cash-for-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cash-entity {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.labor-entity {
    border-left: 6px solid #E31837;
}

.liberal-entity {
    border-left: 6px solid #0047AB;
}

.cash-entity h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.labor-entity h4 {
    color: #E31837;
}

.liberal-entity h4 {
    color: #0047AB;
}

.entity-tagline {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.entity-tagline a {
    color: #6b7280;
    text-decoration: underline;
}

.what-they-offer,
.entity-notable,
.entity-pricing,
.entity-donations {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 6px;
}

.what-they-offer ul,
.donations-list {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.what-they-offer li,
.donations-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.entity-notable {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.entity-pricing {
    font-size: 0.95rem;
}

.entity-donations {
    background: #ede9fe;
    border-left: 4px solid #8b5cf6;
}

.cash-for-access-mechanism,
.cash-for-access-icac {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 6px solid #dc2626;
}

.cash-for-access-mechanism h4,
.cash-for-access-icac h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #7f1d1d;
}

.cash-for-access-mechanism p,
.cash-for-access-icac p {
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
    color: #1f2937;
}

.cash-for-access-icac {
    background: #fef2f2;
    border-left: 6px solid #b91c1c;
}

.icac-recommendations {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #fecaca;
    font-weight: 600;
}

.aha-connection-callout {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid #d97706;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(217, 119, 6, 0.2);
}

.aha-connection-callout h4 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #78350f;
}

.aha-connection-callout p {
    margin: 0 0 0.75rem 0;
    line-height: 1.7;
    color: #78350f;
    font-size: 1.05rem;
}

.aha-connection-callout p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cash-for-access-explainer {
        padding: 1.5rem;
    }

    .cash-for-access-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cash-for-access-header h3 {
        font-size: 1.25rem;
    }

    .cash-icon {
        font-size: 1.5rem;
    }

    /* Slush Funds and Billionaires Mobile */
    .slush-funds-explainer,
    .billionaire-donors-explainer {
        padding: 1.5rem;
    }

    .slush-funds-grid,
    .billionaires-grid {
        grid-template-columns: 1fr;
    }

    .billionaire-card {
        min-width: unset;
    }
}

/* ========================================
   Slush Funds Explainer
   ======================================== */

.slush-funds-explainer {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border: 4px solid #7c3aed;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    color: white;
}

.slush-funds-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #7c3aed;
}

.slush-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.slush-funds-header h3 {
    margin: 0;
    font-size: 1.75rem;
    color: #fbbf24;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.slush-funds-intro,
.slush-funds-why-matters {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e0e7ff;
}

.slush-funds-why-matters {
    background: rgba(124, 58, 237, 0.2);
    padding: 1rem;
    border-left: 4px solid #fbbf24;
    border-radius: 6px;
}

.slush-funds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.slush-entity {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.slush-entity h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.liberal-slush h4 {
    color: #60a5fa;
}

.labor-slush h4 {
    color: #f87171;
}

.slush-fund-detail {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #a78bfa;
}

.slush-fund-detail h5 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
}

.slush-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 6px;
}

.slush-numbers span {
    font-size: 1rem;
}

.slush-numbers strong {
    color: #fbbf24;
    font-size: 1.2rem;
}

.slush-how-it-works,
.slush-holdings {
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    line-height: 1.6;
}

.slush-scandals {
    background: rgba(239, 68, 68, 0.2);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    border-left: 4px solid #ef4444;
}

.slush-scandals ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.slush-scandals li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.free-enterprise {
    border-left-color: #ef4444;
}

.icac-exposure {
    background: rgba(239, 68, 68, 0.1);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.icac-exposure p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.who-knew {
    background: rgba(251, 191, 36, 0.2);
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.mafia-warning {
    background: rgba(239, 68, 68, 0.3);
    padding: 0.75rem;
    border-radius: 4px;
    border: 2px solid #ef4444;
    font-weight: 600;
}

.other-entities {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.other-entities ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.other-entities li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.disclosure-loophole {
    background: rgba(239, 68, 68, 0.2);
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 4px solid #ef4444;
    font-weight: 600;
}

.slush-funds-bottom {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
    border-radius: 12px;
}

.slush-how-it-works-summary {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

/* ========================================
   Billionaire Donors Explainer
   ======================================== */

.billionaire-donors-explainer {
    background: linear-gradient(135deg, #7c2d12 0%, #991b1b 100%);
    border: 4px solid #fbbf24;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.3);
    color: white;
}

.billionaire-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #fbbf24;
}

.billionaire-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.billionaire-header h3 {
    margin: 0;
    font-size: 1.75rem;
    color: #fbbf24;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.billionaire-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #fef3c7;
}

.billionaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.billionaire-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.billionaire-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}

.billionaire-name-wealth {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.billionaire-card h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 0.5px;
}

.net-worth,
.owner {
    font-size: 0.9rem;
    font-weight: 600;
    color: #86efac;
    white-space: nowrap;
}

.company {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.donations-box {
    background: rgba(251, 191, 36, 0.15);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #fbbf24;
}

.donations-box p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.donations-box p:last-child {
    margin-bottom: 0;
}

.sa-donation {
    color: #fbbf24;
    font-weight: 600;
}

.hidden-donations-warning,
.conflict-warning,
.problem-warning,
.scam-warning,
.scandal-warning {
    background: rgba(239, 68, 68, 0.2);
    padding: 0.75rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 4px solid #ef4444;
    line-height: 1.5;
}

.what-they-want,
.what-they-got {
    margin: 1rem 0;
}

.what-they-want ul,
.what-they-got ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.what-they-want li,
.what-they-got li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.actu-quote {
    background: rgba(124, 58, 237, 0.2);
    border-left: 4px solid #a78bfa;
    padding: 1rem;
    margin: 1rem 0 0 0;
    font-style: italic;
    border-radius: 6px;
    color: #e0e7ff;
}

/* ========================================
   Dark Money Callout
   ======================================== */

.dark-money-callout {
    background: linear-gradient(135deg, #0c0a09 0%, #1c1917 100%);
    border: 4px solid #dc2626;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
    color: white;
}

.dark-money-callout h4 {
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dark-money-callout p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #fef3c7;
}

.dark-money-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 6px solid #dc2626;
}

.how-they-hide {
    background: rgba(220, 38, 38, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.how-they-hide ul {
    margin: 0.75rem 0 0 0;
    padding-left: 1.5rem;
}

.how-they-hide li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.dark-money-problem {
    background: rgba(251, 191, 36, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    font-weight: 600;
}

/* Power Players CTA */
.power-players-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #e94560;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.power-players-cta h4 {
    color: #e94560;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.power-players-cta p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.power-players-cta .cta-button {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.power-players-cta .cta-button:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

/* ================================
   ISSUE CATEGORIES & OPTGROUP STYLES
   ================================ */

/* Category Sections */
.issue-category {
    margin-bottom: 2.5rem;
}

.category-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e94560;
    display: inline-block;
}

.issue-category .category-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 0 1rem 0;
    font-style: italic;
}

/* Issues grid within category */
.issue-category .issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* Optgroup Styling for GOTCHA Dropdown */
#gotcha-issue-select {
    font-size: 1rem;
}

#gotcha-issue-select optgroup {
    font-weight: 700;
    font-style: normal;
    color: #1a1a2e;
    background: #f0f0f5;
    padding: 0.5rem 0;
}

#gotcha-issue-select option {
    font-weight: 400;
    color: #333;
    padding: 0.5rem 1rem;
    background: white;
}

#gotcha-issue-select option:hover {
    background: #e94560;
    color: white;
}

/* Category color accents */
.issue-category:nth-of-type(1) .category-header {
    border-color: #27ae60; /* Cost of Living - green (money) */
}

.issue-category:nth-of-type(2) .category-header {
    border-color: #e74c3c; /* Health - red (emergency) */
}

.issue-category:nth-of-type(3) .category-header {
    border-color: #9b59b6; /* Rigged System - purple (corruption) */
}

.issue-category:nth-of-type(4) .category-header {
    border-color: #3498db; /* Environment - blue (water/nature) */
}

.issue-category:nth-of-type(5) .category-header {
    border-color: #f39c12; /* Social Issues - orange (debate) */
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        font-size: 1.25rem;
    }

    .issue-category .category-subtitle {
        font-size: 0.9rem;
    }

    .issue-category .issues-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   KEY POLITICIANS SECTION
   ================================ */

.key-politicians-section {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
}

.key-politicians-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.politicians-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.politicians-column {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
}

.culprits-column {
    border-left: 4px solid var(--culprit-color);
}

.helpers-column {
    border-left: 4px solid var(--helper-color);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.culprits-header {
    color: var(--culprit-color);
    border-bottom-color: rgba(220, 38, 38, 0.2);
}

.helpers-header {
    color: var(--helper-color);
    border-bottom-color: rgba(16, 185, 129, 0.2);
}

.header-icon {
    font-size: 1.25rem;
}

.politicians-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.politician-detail-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.culprit-card {
    border-left: 3px solid var(--culprit-color);
}

.helper-card {
    border-left: 3px solid var(--helper-color);
}

.politician-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.politician-name-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.politician-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-color);
}

.politician-party {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    width: fit-content;
}

.politician-party.party-labor {
    background: rgba(227, 24, 55, 0.1);
    color: #E31837;
}

.politician-party.party-liberal {
    background: rgba(0, 71, 171, 0.1);
    color: #0047AB;
}

.politician-party.party-greens {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.politician-party.party-independent {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
}

.politician-party.party-other {
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
}

.politician-score-badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.politician-score-badge.low {
    background: var(--culprit-color);
}

.politician-score-badge.medium {
    background: #f59e0b;
}

.politician-score-badge.high {
    background: var(--helper-color);
}

.politician-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
}

.politician-district {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.politician-role {
    font-style: italic;
}

.politician-actions-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    font-size: 0.9rem;
}

.politician-actions-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.politician-actions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #94a3b8;
}

.culprit-card .politician-actions-list li::before {
    background: var(--culprit-color);
}

.helper-card .politician-actions-list li::before {
    background: var(--helper-color);
}

.politician-quote {
    font-style: italic;
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.75rem 0 0 0;
    padding: 0.5rem;
    background: var(--light-bg);
    border-radius: 4px;
    border-left: 2px solid #94a3b8;
}

.politician-notes {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.5rem 0 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .politicians-grid {
        grid-template-columns: 1fr;
    }

    .politician-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .politician-score-badge {
        align-self: flex-start;
    }
}
