/* CSS Custom Properties */
:root {
    --primary-color: #1A2340;
    --accent-color: #B3985D;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-section: #f8f9fa;
    --border-color: #e1e5e9;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 4px 6px rgba(0, 0, 0, 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    --max-width: 1200px;
    --border-radius: 6px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

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

/* Header and Navigation */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.brand-link {
    color: white;
    text-decoration: none;
}

.brand-link:hover {
    color: var(--accent-color);
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--accent-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-secondary {
    background-color: var(--accent-color);
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-danger {
    background-color: #DC143C;
    color: white;
    border-color: #8B0000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-danger:hover {
    background-color: #8B0000;
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.hero-subhead {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.hero-subhead p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: white;
}

.countdown-cta h3 {
    font-size: 2rem;
    color: #DC143C;
    margin: 1rem 0;
    font-weight: 900;
}

.countdown-cta p {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.urgent-warning {
    background-color: #FFCCCC;
    border: 3px solid #DC143C;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0 2rem 0;
    text-align: center;
}

.urgent-warning p {
    margin: 0;
    font-size: 1.2rem;
    color: #8B0000;
    font-weight: 700;
}

/* Urgent Action Section */
.urgent-action-section {
    background: linear-gradient(to bottom, #ff0000, #cc0000);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgent-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.1) 10px,
        rgba(0,0,0,0.1) 20px
    );
    pointer-events: none;
}

.urgent-action-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.urgent-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.destruction-warning {
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 3px solid #ffff00;
}

.lead-danger {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffff00;
}

.lead-impact {
    font-size: 1.4rem;
    line-height: 1.6;
}

.stop-him-now {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid white;
}

.stop-him-now h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffff00;
}

.stop-him-now p {
    font-size: 1.3rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .urgent-headline {
        font-size: 2.2rem;
    }
    
    .lead-danger {
        font-size: 1.4rem;
    }
    
    .lead-impact {
        font-size: 1.2rem;
    }
    
    .stop-him-now h3 {
        font-size: 1.8rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B0000 0%, #FF0000 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 5px solid #FF0000;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-alert {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #FFD700;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

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

/* Danger Cards */
.reason-card.danger {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    border: 2px solid #FF0000;
}

.reason-card.danger h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Urgent Call to Action */
.call-to-action.urgent {
    background: linear-gradient(135deg, #8B0000 0%, #FF0000 100%);
    color: white;
    text-align: center;
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FFD700;
}

.call-to-action.urgent h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.call-to-action.urgent p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-image {
    margin-top: 2rem;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
}

/* Page Headers */
.page-header {
    background-color: var(--bg-section);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Content Sections */
.why-matters,
.call-to-action,
.timeline-section,
.controversies-section,
.evidence-section,
.sources-section,
.about-section {
    padding: 3rem 0;
}

.why-matters {
    background-color: var(--bg-section);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reason-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-2px);
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Call to Action */
.call-to-action {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.call-to-action h2 {
    color: white;
    margin-bottom: 1rem;
}

.call-to-action p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Timeline */
.timeline-warning {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 3px solid #FFD700;
    text-align: center;
}

.timeline-warning h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
    position: relative;
    list-style: none;
    counter-reset: timeline-counter;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #FF0000 0%, #8B0000 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
    counter-increment: timeline-counter;
}

.timeline-item.danger {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #FF0000;
    border-radius: 10px;
    padding: 1.5rem;
    padding-left: 5rem;
}

.timeline-item::before {
    content: counter(timeline-counter);
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #FF0000;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    border: 2px solid #FFD700;
}

.timeline-item.danger::before {
    content: counter(timeline-counter);
    background-color: #8B0000;
    animation: pulse 2s infinite;
    color: #FFD700;
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content h3 a {
    color: var(--primary-color);
}

.timeline-content h3 a:hover {
    color: var(--accent-color);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Controversies */
.controversy-warning {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 3px solid #FFD700;
    text-align: center;
}

.controversy-warning h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.controversy-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.controversy-card.danger {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 3px solid #FF0000;
    border-radius: 10px;
}

.controversy-card.danger h2 {
    color: #8B0000;
    font-size: 1.5rem;
}

.evidence-links {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.evidence-links p {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #8B0000;
}

.evidence-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evidence-links li {
    margin-bottom: 0.3rem;
}

.evidence-links a {
    color: #0066CC;
    text-decoration: none;
    font-size: 0.9rem;
}

.evidence-links a:hover {
    text-decoration: underline;
}

/* Vote Page Styles */
.vote-header {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
}

.countdown-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
}

.countdown-box label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link.vote-now {
    background: #DC143C;
    color: white !important;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-weight: bold;
}

.nav-link.vote-now:hover {
    background: #8B0000;
}

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

.candidate-card {
    background: white;
    border: 3px solid #FFD700;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.candidate-card.recommended {
    border-color: #228B22;
    background: #F0FFF0;
}

.candidate-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #228B22;
    margin-bottom: 1rem;
}

.candidate-party {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.candidate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.voting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.voting-card {
    background: white;
    border: 2px solid #0066CC;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.voting-card h3 {
    color: #0066CC;
    margin-bottom: 1rem;
}

.urgency-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.urgency-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    background: #8B0000;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    margin: 0;
    color: #FFD700;
}

.stat p {
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-social {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
}

.btn-social.twitter {
    background: #1DA1F2;
}

.btn-social.facebook {
    background: #1877F2;
}

.btn-social.email {
    background: #666;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Multimedia Page Styles */
.video-evidence, .audio-evidence, .photo-evidence {
    margin: 3rem 0;
}

.video-card, .audio-card {
    background: white;
    border: 2px solid #DC143C;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-card.featured {
    border-color: #FFD700;
    background: #FFFACD;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.play-button {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-transcript {
    background: #f8f9fa;
    border-left: 4px solid #DC143C;
    padding: 1rem;
    margin: 1rem 0;
}

.video-transcript blockquote {
    margin: 0;
    font-style: italic;
    color: #333;
    font-weight: bold;
}

.audio-player {
    margin-bottom: 1.5rem;
}

.audio-player audio {
    width: 100%;
    margin-bottom: 1rem;
}

.audio-transcript {
    background: #f8f9fa;
    border-left: 4px solid #DC143C;
    padding: 1rem;
    margin: 1rem 0;
}

.audio-transcript blockquote {
    margin: 0;
    font-style: italic;
    color: #333;
}

.audio-placeholder {
    background: linear-gradient(135deg, #DC143C, #FF6B6B);
    padding: 2rem;
    border-radius: 8px;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.audio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audio-note, .video-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.multimedia-warning {
    background: #FFD700;
    color: #000;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: center;
    border: 3px solid #DC143C;
}

.multimedia-warning h2 {
    margin-top: 0;
    color: #DC143C;
}

.video-links, .audio-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.photo-card {
    background: white;
    border: 2px solid #DC143C;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-content {
    padding: 1.5rem;
}

.download-section {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.source-card {
    background: white;
    border: 2px solid #DC143C;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
}

.source-card h3 {
    margin-top: 0;
    color: #DC143C;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .candidates-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .candidate-actions {
        flex-direction: column;
    }
    
    .video-links, .audio-links {
        flex-direction: column;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

.controversy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.controversy-header h2 {
    margin-bottom: 0;
    flex: 1;
}

.controversy-date {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.controversy-content {
    margin-bottom: 1.5rem;
}

.controversy-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Evidence */
.filter-bar {
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.evidence-tile {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.evidence-tile:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-2px);
}

.evidence-tile.hidden {
    display: none;
}

.evidence-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.evidence-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.doc-preview,
.video-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.evidence-tile figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Sources */
.press-kit-download {
    background-color: var(--bg-section);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 3rem;
}

.sources-table-container {
    margin-bottom: 3rem;
}

.sources-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sources-table th,
.sources-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.sources-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.sources-table tr:hover {
    background-color: var(--bg-section);
}

.sources-table td:first-child {
    font-weight: 600;
    color: var(--accent-color);
}

.methodology {
    background-color: var(--bg-section);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.methodology ul {
    margin-left: 2rem;
}

.methodology li {
    margin-bottom: 0.5rem;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.about-content li {
    margin-bottom: 0.5rem;
}

.about-content strong {
    color: var(--primary-color);
}

.danger-list {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #FF0000;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.danger-list li {
    color: #8B0000;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.urgent-action {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
    border: 3px solid #FFD700;
}

.urgent-action h2 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.load-more-section {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
    text-align: center;
    border: 4px solid #FFD700;
}

.load-more-section h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.share-warning {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.share-warning p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Error Page */
.error-section {
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .controversy-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .controversy-actions {
        justify-content: flex-start;
    }

    .sources-table {
        font-size: 0.9rem;
    }

    .sources-table th,
    .sources-table td {
        padding: 0.5rem;
    }

    .timeline-list {
        padding-left: 1rem;
    }

    .timeline-list::before {
        left: 1rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }

    .timeline-item.danger {
        padding: 1rem;
        padding-left: 3rem;
    }

    .timeline-item::before {
        left: 0.5rem;
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.7rem;
    }

    .timeline-date {
        font-size: 0.8rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .filter-buttons {
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

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

    .hero-tagline {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .error-content h1 {
        font-size: 2rem;
    }

    .error-content p {
        font-size: 1rem;
    }

    .sources-table {
        font-size: 0.8rem;
    }

    .sources-table th,
    .sources-table td {
        padding: 0.3rem;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .hero-buttons,
    .cta-buttons,
    .controversy-actions,
    .filter-bar,
    .error-actions {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .hero {
        background: none;
        color: black;
    }

    .hero-title,
    .hero-tagline {
        color: black;
    }

    .page-header {
        background: none;
    }

    .controversy-card,
    .evidence-tile,
    .reason-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Single Candidate Styling for Vote Page */
.candidates-grid.single-candidate {
    max-width: 800px;
    margin: 0 auto;
}

.candidate-card.hero-candidate {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
}

.candidate-card.hero-candidate .candidate-info h3 {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0.5rem;
}

.candidate-card.hero-candidate .candidate-party {
    font-size: 1.2rem;
    color: #ff0000;
    font-weight: bold;
}

.candidate-card.hero-candidate .urgent-endorsement {
    background: #ffd700;
    color: #000;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
    font-weight: bold;
}

.candidate-card.hero-candidate .candidate-actions {
    gap: 1.5rem;
}

.candidate-card.hero-candidate .btn-lg {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --accent-color: #0066cc;
        --text-color: #000000;
        --border-color: #000000;
    }
}

/* 42 Facts Page Styles */
.facts-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.facts-warning {
    background: linear-gradient(135deg, #dc3545, #b71c1c);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.facts-warning h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.fact-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 6px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.fact-card.shock-level-5 {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.fact-card.shock-level-4 {
    border-left-color: #fd7e14;
    background: linear-gradient(135deg, #fff 0%, #fff8f1 100%);
}

.fact-card.shock-level-3 {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}

.fact-card.shock-level-2 {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #f8fff9 100%);
}

.fact-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #dc3545, #b71c1c);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.fact-content h3 {
    color: #dc3545;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.fact-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.source-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.source-links a {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.source-links a:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.facts-footer {
    background: linear-gradient(135deg, #dc3545, #b71c1c);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.facts-footer h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.facts-footer p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fact-card {
        padding: 20px;
    }
    
    .facts-warning h2,
    .facts-footer h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Timeline Page Styles */
.timeline-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.timeline-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.timeline-events {
    padding-left: 80px;
}

.timeline-event {
    position: relative;
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -54px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.timeline-date {
    position: absolute;
    left: -150px;
    top: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-source {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.timeline-source a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.timeline-source a:hover {
    color: var(--accent-color);
}

/* Evidence Archive Styles */
.archive-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.archive-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.evidence-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e9ecef;
}

.evidence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.evidence-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.evidence-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.evidence-date {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.evidence-body {
    padding: 1.5rem;
}

.evidence-body p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.evidence-source {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.source-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.source-link:hover {
    color: var(--accent-color);
}

/* Mobile Responsive for Timeline and Evidence */
@media (max-width: 768px) {
    .timeline-events {
        padding-left: 40px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-event::before {
        left: -26px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-date {
        position: relative;
        left: 0;
        top: 0;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .timeline-event {
        padding: 1.5rem;
    }
    
    .evidence-archive {
        grid-template-columns: 1fr;
    }
    
    .evidence-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .evidence-date {
        align-self: flex-start;
    }
}

/* Search Functionality */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-container.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.search-content {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-header {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.search-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-input-container {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 10px;
}

#search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-button {
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: var(--secondary-color);
}

.search-filters {
    padding: 0 20px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.filter-btn,
.search-filter-btn {
    padding: 10px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover,
.search-filter-btn.active,
.search-filter-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.search-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.search-suggestions {
    margin-top: 20px;
}

.search-suggestions h4 {
    margin-bottom: 10px;
    color: #333;
}

.search-tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 16px;
    margin: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: var(--primary-color);
    color: white;
}

.search-results-header {
    margin-bottom: 20px;
}

.search-results-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.search-result-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.search-result-header h3 {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.search-result-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.search-result-link:hover {
    text-decoration: underline;
}

.search-result-category {
    background: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.search-result-date {
    color: #666;
    font-size: 0.9rem;
}

.search-result-content {
    margin: 10px 0;
    line-height: 1.5;
    color: #444;
}

.search-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.result-tag {
    background: #e0e0e0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
}

.no-results h3 {
    color: #333;
    margin-bottom: 10px;
}

.no-results p {
    color: #666;
    margin-bottom: 20px;
}

mark {
    background: #ffeb3b;
    padding: 2px 4px;
    border-radius: 2px;
    font-weight: bold;
}

/* Mobile search button */
.mobile-search-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    z-index: 100;
}

.mobile-search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-search-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* REMOVED - Conflicting mobile navigation rules */

/* Clean mobile navigation - single rule set */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        visibility: visible;
        opacity: 1;
        background: transparent;
        border: none;
        border-radius: 4px;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu-toggle span {
        background-color: white;
        display: block;
        width: 25px;
        height: 3px;
        margin: 2px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    /* Hide search completely */
    .search-trigger,
    .mobile-search-btn {
        display: none;
    }
    
    /* Mobile menu behavior */
    .nav-menu {
        display: none;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Election Countdown Timer */
.election-countdown {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 2rem 0;
    border-bottom: 5px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.election-countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.countdown-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.countdown-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(0,0,0,0.3);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    min-width: 100px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-family: 'Courier New', monospace;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    color: white;
}

.countdown-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.countdown-cta {
    font-size: 1.1rem;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Candidate Introduction */
.candidate-intro {
    background: #f8f9fa;
    padding: 4rem 0;
    border-bottom: 3px solid var(--primary-color);
}

.candidate-intro h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.danger-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF4444, #CC0000);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #333;
}

.key-facts h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.danger-list {
    list-style: none;
    padding: 0;
}

.danger-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.fact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-impact {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* National Threat Section */
.national-threat {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.national-threat::before {
    content: '🇺🇸';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    opacity: 0.3;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.threat-warning h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.threat-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.threat-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blueprint-warning {
    background: rgba(255, 68, 68, 0.2);
    border: 2px solid #FF4444;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.blueprint-warning ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.blueprint-warning li {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.threat-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.threat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.threat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.threat-label {
    font-size: 1rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.threat-detail {
    font-size: 0.9rem;
    color: #ccc;
}

/* Enhanced Evidence Summary */
.evidence-summary {
    background: #fff3cd;
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.summary-intro p {
    font-size: 1.2rem;
    color: #856404;
    margin: 0;
    font-weight: 600;
}

.evidence-box {
    background: rgba(255, 68, 68, 0.1);
    border-left: 5px solid #FF4444;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 0 10px 10px 0;
}

.evidence-box p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Navigation Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* REMOVED - Conflicting navigation rules */

/* Mobile responsive for new sections */
@media (max-width: 768px) {
    .countdown-content h2 {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .intro-grid,
    .threat-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .candidate-intro h2,
    .threat-warning h2 {
        font-size: 2rem;
    }
    
    .national-threat::before {
        display: none;
    }
    
    .evidence-box {
        padding: 1rem;
    }
    
    .search-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .search-header h2 {
        font-size: 1.2rem;
    }
    
    .search-input-container {
        flex-direction: column;
    }
    
    .search-filters {
        flex-wrap: wrap;
        padding: 10px 20px;
    }
    
    .filter-btn,
    .search-filter-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .search-result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .search-result-header h3 {
        min-width: auto;
    }
    
    .search-result-item {
        padding: 15px;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
}

/* Social Media Section */
.social-media-section {
    background: var(--bg-light);
    padding: 3rem 0;
    margin-top: 3rem;
}

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

.social-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.social-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.social-date {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.social-content p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: var(--text-color);
}

.social-hashtags {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-engagement {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.social-engagement span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 1rem;
    }
    
    .social-engagement {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Video Embed Styles for Evidence Page */
.video-embed {
    margin: 1rem 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Platform-specific evidence styling */
.evidence-item[data-type="youtube"] {
    border-left: 4px solid #FF0000;
}

.evidence-item[data-type="x-twitter"] {
    border-left: 4px solid #1DA1F2;
}

.evidence-item[data-type="facebook"] {
    border-left: 4px solid #1877F2;
}

.evidence-item[data-type="instagram"] {
    border-left: 4px solid #E4405F;
}

.evidence-item[data-type="documents"] {
    border-left: 4px solid #00C851;
}

.evidence-item[data-type="photos"] {
    border-left: 4px solid #FF8800;
}

/* Enhanced evidence archive for video content */
.evidence-archive {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
}

/* Mobile responsiveness for video embeds */
@media (max-width: 768px) {
    .video-embed {
        padding-bottom: 75%; /* Adjust for mobile */
    }
    
    .evidence-archive {
        grid-template-columns: 1fr !important;
    }
    
    .evidence-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .evidence-date {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Warning Box Styling */
.warning-box {
    background-color: #FFF3CD;
    border: 1px solid #FFEAA7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning-box p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Evidence Count Display */
.evidence-count {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}
