/* Gaza Crisis Timeline - Styles */

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

:root {
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-action: #ffffff;
    --color-text-primary: #ffffff;
    --color-text-secondary: #cccccc;
    --color-text-muted: #888888;
    --color-accent-red: #ff3333;
    --color-accent-green: #00cc66;
    --color-error: #ff6b6b;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max-width: 1200px;
    --section-padding: 2rem 1rem;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 1.5rem 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section-padding {
    padding: var(--section-padding);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Section 1: Extinction Timeline - Crisis Design */
.countdown-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0000 50%, #000000 100%);
    overflow: hidden;
}

.crisis-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255, 51, 51, 0.2), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 51, 51, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 51, 51, 0.15), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 51, 51, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particles-float 15s linear infinite;
    opacity: 0.6;
}

@keyframes particles-float {
    0% { transform: translateY(100vh) translateX(-10px); }
    100% { transform: translateY(-100px) translateX(10px); }
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

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



/* Main Countdown Display */
.countdown-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.time-remaining {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: #DC2626;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
    animation: subtle-pulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes subtle-pulse {
    0%, 100% { 
        opacity: 0.9;
        text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
    }
}



.live-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 600;
    color: #E5E7EB;
    text-align: center;
    letter-spacing: 0.05em;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.countdown-segment .number {
    font-size: 1em;
    line-height: 1;
    transition: all 0.2s ease-out;
    animation: number-glow 3s ease-in-out infinite;
}

@keyframes number-glow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(229, 231, 235, 0.3);
    }
    50% { 
        text-shadow: 0 0 10px rgba(229, 231, 235, 0.6);
    }
}

.countdown-segment .label {
    font-size: 0.35em;
    text-transform: lowercase;
    opacity: 0.6;
    letter-spacing: 0.05em;
    color: #9CA3AF;
    font-weight: 300;
    margin-top: 0.2em;
}

.separator {
    font-size: 1.2em;
    color: #DC2626;
    font-weight: 900;
}

.separator.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Crisis Information */
.crisis-info {
    z-index: 2;
    position: relative;
}

.lives-lost {
    font-size: 0.9rem;
    color: #DC2626;
    font-weight: 600;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.lives-lost #lives-count {
    font-family: var(--font-mono);
    font-weight: 700;
    color: #FF4444;
}



@keyframes pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.time-remaining.paused {
    animation: none;
}

.countdown-label {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.death-rate-info {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: rotate(45deg);
    opacity: 0.7;
}

/* Section 2: Casualty Tracker */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-text-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.column-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-bg-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.1);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-context {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 0.25rem;
}

/* Population Loss Section */
.population-loss-section {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.population-loss-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.population-loss-text #population-lost-percentage {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent-red);
}

.population-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.population-lost {
    height: 100%;
    background: linear-gradient(90deg, #ff8800, #ff6600, #ff3300, var(--color-accent-red));
    width: 0%;
    transition: width 2s ease-out;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(220, 38, 38, 0.3);
}

/* Population Info (simplified) */
.population-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Infrastructure Section */
.infrastructure-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-bg-secondary);
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.infrastructure-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-secondary);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.infrastructure-item:hover {
    transform: translateY(-2px);
}

.infrastructure-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-red);
    margin-bottom: 0.5rem;
}

.infrastructure-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Data Attribution */
.data-attribution {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-bg-secondary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.data-attribution p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.data-attribution a {
    color: var(--color-accent-red);
    text-decoration: none;
    font-weight: 500;
}

.data-attribution a:hover {
    text-decoration: underline;
}

.refresh-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-muted);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.refresh-button:hover {
    border-color: var(--color-accent-red);
    color: var(--color-accent-red);
}

.refresh-button:active {
    transform: scale(0.95);
}

/* Section 3: Take Action */
.action-section {
    background: var(--color-bg-action);
    color: #333333;
    padding: var(--section-padding);
    margin-top: 4rem;
}

.action-title {
    color: #333333;
    margin-bottom: 4rem;
}

.action-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.action-category {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--color-accent-green);
    padding-bottom: 0.5rem;
}

.organization {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.org-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.org-description {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.impact-metric {
    color: var(--color-accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.donate-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-accent-green);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
}

.donate-button:hover {
    background: #00b359;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 204, 102, 0.3);
}

.donate-button:active {
    transform: translateY(0);
}

.share-btn {
    background: #007acc;
}

.share-btn:hover {
    background: #0066b3;
    box-shadow: 0 4px 12px rgba(0, 122, 204, 0.3);
}



/* Loading and Error States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-bg-secondary);
    border-top: 3px solid var(--color-accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}





/* Context Section */
.context-section {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.context-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #D1D5DB;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
}

/* Enhanced Infrastructure Section */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.infrastructure-card {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.infrastructure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.infrastructure-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-accent-red);
}

.infrastructure-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-red);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.infrastructure-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Transition Section */
.transition-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 40, 20, 0.95) 100%);
    position: relative;
}

.transition-section::before,
.transition-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.transition-section::before {
    top: 0;
}

.transition-section::after {
    bottom: 0;
}

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

.transition-message p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #F3F4F6;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

/* Enhanced Population Section */
.population-loss-section {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.population-loss-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.population-loss-text span {
    font-weight: 700;
    color: var(--color-accent-red);
}

/* Section Spacing Improvements */
.section-padding {
    padding: 4rem 0;
}

#casualty-tracker {
    position: relative;
}

#casualty-tracker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* Enhanced Social Sharing Modal */
.share-modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.share-modal-content h3 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

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

.share-btn.twitter:hover {
    background: #0d8bd9;
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.facebook:hover {
    background: #365899;
}

.share-btn.linkedin {
    background: #0077B5;
}

.share-btn.linkedin:hover {
    background: #005885;
}

.share-btn.copy {
    background: var(--color-accent-green);
}

.share-btn.copy:hover {
    background: #00b359;
}

.close-modal {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
}



/* Responsive Design */
@media (max-width: 768px) {
    .time-remaining {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    
    .live-countdown {
        font-size: clamp(1rem, 4vw, 1.8rem);
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .countdown-segment .number {
        font-size: 0.9em;
    }
    
    .countdown-segment .label {
        font-size: 0.25em;
    }
    
    .warning-text {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    
    .critical-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    

    
    .action-categories {
        grid-template-columns: 1fr;
    }
    
    .organization {
        padding: 1.5rem;
    }
    
    .donate-button {
        width: 100%;
    }
    
    .error-message {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        transform: translateY(100%);
    }
    
    .error-message.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .time-remaining {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .live-countdown {
        font-size: clamp(0.9rem, 3vw, 1.4rem);
        gap: 0.5rem;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        min-height: 44px;
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .infrastructure-card {
        min-height: 44px;
        padding: 1rem;
    }
    
    .population-loss-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .population-loss-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .context-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .transition-message p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .donate-button {
        width: 100%;
        min-height: 44px;
        font-size: 1rem;
    }
    
    .infrastructure-icon {
        width: 40px;
        height: 40px;
    }
    
    .infrastructure-number {
        font-size: 1.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Scroll Indicator Interactive Styles */
.scroll-indicator {
    cursor: pointer;
    padding: 1rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

.scroll-indicator:active {
    transform: translateX(-50%) scale(0.95);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .scroll-indicator {
        padding: 1.5rem;
        opacity: 0.8;
    }
    
    .scroll-indicator:active {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
    
    .countdown-timer {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-accent-red: #ff0000;
        --color-accent-green: #00ff00;
        --color-text-muted: #ffffff;
    }
    
    .stat-item,
    .infrastructure-item,
    .organization {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .countdown-container {
        height: auto;
        page-break-after: always;
    }
    
    .loading-overlay,
    .error-message,
    .accessibility-controls,
    .scroll-indicator {
        display: none;
    }
    
    .donate-button {
        border: 2px solid black;
        background: white;
        color: black;
    }
}
