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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    margin-top: 1rem;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid #ffd700;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.disclaimer p {
    margin: 0;
    opacity: 0.95;
}

.stat-detail {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.stat-card.highlight {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.stat-card.highlight .stat-number {
    font-size: 3.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}