 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;700&display=swap');
        
        :root {
            --primary-color: #e74c3c;
            --secondary-color: #f39c12;
            --background-color: #f4f4f4;
            --text-color: #333;
            --dark-text: #222;
            --light-text: #7f8c8d;
            --card-bg: #fff;
            --highlight: #3498db;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            padding: 20px;
            transition: background-color 0.5s ease;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        h1 {
            font-family: "Bebas Neue", sans-serif;
            font-size: 3em;
            color: var(--dark-text);
            margin-bottom: 10px;
        }
        
        .subtitle {
            font-size: 1.2em;
            color: var(--light-text);
            font-weight: 300;
        }
        
        .main-counter {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .counter-wrapper {
            position: relative;
            display: inline-block;
            padding: 20px;
        }
        
        .counter-label {
            font-size: 1.5em;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .counter {
            font-size: 5em;
            color: var(--primary-color);
            font-weight: bold;
            font-family: "Bebas Neue", sans-serif;
        }
        
        .progress-bar-container {
            width: 100%;
            background-color: #e0e0e0;
            height: 20px;
            border-radius: 10px;
            margin: 20px 0;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background-color: var(--primary-color);
            width: 0;
            border-radius: 10px;
            transition: width 0.2s ease-in-out;
        }
        
        .progress-bar.nearing-full {
            background-color: var(--secondary-color);
            animation: flash 0.2s linear infinite;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .stat-title {
            font-size: 1.2em;
            color: var(--light-text);
            margin-bottom: 10px;
        }
        
        .stat-value {
            font-size: 2.5em;
            font-weight: bold;
            color: var(--dark-text);
            font-family: "Bebas Neue", sans-serif;
        }
        
        .incident-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .type-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .type-title {
            font-size: 1.2em;
            color: var(--dark-text);
            margin-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 5px;
        }
        
        .type-stat {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .type-label {
            font-weight: 500;
        }
        
        .type-value {
            font-weight: bold;
        }
        
        .facts-section {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .facts-title {
            font-size: 1.5em;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .facts-list {
            list-style-type: none;
        }
        
        .fact-item {
            border-left: 4px solid var(--highlight);
            padding: 10px 20px;
            margin-bottom: 15px;
            background-color: rgba(52, 152, 219, 0.05);
        }
        
        .sources {
            font-size: 0.9em;
            color: var(--light-text);
            text-align: center;
            margin-top: 20px;
        }
        
        .toggle-container {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .toggle-btn {
            background-color: var(--highlight);
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .toggle-btn:hover {
            background-color: #2980b9;
        }
        
        .toggle-btn.active {
            background-color: #2c3e50;
        }
        
        footer {
            text-align: center;
            margin-top: 30px;
            color: var(--light-text);
            font-size: 0.9em;
        }
        
        @keyframes flash {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        @keyframes backgroundFlash {
            0% { background-color: var(--background-color); }
            50% { background-color: rgba(243, 156, 18, 0.2); }
            100% { background-color: var(--background-color); }
        }
        
        body.flashing {
            animation: backgroundFlash 1s linear infinite;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .incident-types {
                grid-template-columns: 1fr;
            }
            
            .counter {
                font-size: 4em;
            }
            
            h1 {
                font-size: 2.5em;
            }
        }
