
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #ff4757 0%, #ff3742 50%, #ff2d3a 100%);
            --secondary-gradient: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
            --accent-gradient: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #a569bd 100%);
            --success-gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #229954 100%);
            --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #455a64 100%);
            --glass-bg: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text-primary: #2c3e50;
            --text-secondary: #34495e;
            --text-light: #7f8c8d;
            --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-medium: 0 16px 64px rgba(0, 0, 0, 0.16);
            --shadow-heavy: 0 24px 96px rgba(0, 0, 0, 0.24);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b6b 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            line-height: 1.6;
            color: var(--text-primary);
        }

        .infographic {
            max-width: 900px;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            box-shadow: var(--shadow-heavy);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .header {
            background: var(--primary-gradient);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 2px, transparent 2px),
                radial-gradient(circle at 80% 40%, rgba(255,255,255,0.1) 3px, transparent 3px),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.12) 2px, transparent 2px),
                radial-gradient(circle at 70% 10%, rgba(255,255,255,0.08) 4px, transparent 4px);
            background-size: 120px 120px, 100px 100px, 80px 80px, 150px 150px;
            animation: float 20s linear infinite;
        }

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

        .header h1 {
            font-size: 3.2em;
            font-weight: 800;
            margin-bottom: 16px;
            text-shadow: 0 4px 16px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
            letter-spacing: -0.02em;
        }

        .header .subtitle {
            font-size: 1.4em;
            opacity: 0.95;
            font-weight: 400;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .alert-banner {
            background: var(--secondary-gradient);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 700;
            font-size: 1.2em;
            position: relative;
            animation: pulse 3s infinite;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

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

        .content {
            padding: 50px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .stat-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            animation: slideInUp 0.8s ease-out forwards;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            opacity: 0.1;
            z-index: -1;
        }

        .stat-card:nth-child(1) { 
            animation-delay: 0.2s; 
            background: var(--primary-gradient);
            color: white;
        }
        .stat-card:nth-child(2) { 
            animation-delay: 0.4s; 
            background: var(--secondary-gradient);
            color: white;
        }
        .stat-card:nth-child(3) { 
            animation-delay: 0.6s; 
            background: var(--dark-gradient);
            color: white;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .stat-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }

        .stat-number {
            font-size: 3.8em;
            font-weight: 800;
            margin-bottom: 16px;
            text-shadow: 0 4px 16px rgba(0,0,0,0.3);
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 1.1em;
            font-weight: 500;
            line-height: 1.4;
            opacity: 0.95;
        }

        .section {
            margin: 60px 0;
            padding: 40px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-light);
        }

        .section h3 {
            color: var(--text-primary);
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 16px;
            letter-spacing: -0.01em;
        }

        .danger-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .danger-item {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 28px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-light);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-left: 4px solid;
        }

        .danger-item:nth-child(1) { border-left-color: #e74c3c; }
        .danger-item:nth-child(2) { border-left-color: #9b59b6; }
        .danger-item:nth-child(3) { border-left-color: #f39c12; }
        .danger-item:nth-child(4) { border-left-color: #e67e22; }

        .danger-item:hover {
            transform: translateX(12px) translateY(-4px);
            box-shadow: var(--shadow-medium);
        }

        .danger-icon {
            font-size: 2.4em;
            min-width: 60px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .danger-text {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 1.1em;
        }

        .types-section {
            background: linear-gradient(135deg, rgba(236, 240, 241, 0.9) 0%, rgba(189, 195, 199, 0.7) 100%);
            backdrop-filter: blur(15px);
            padding: 50px;
            border-radius: 24px;
            margin: 50px 0;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-medium);
        }

        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        .type-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 32px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-light);
            border-top: 6px solid;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .type-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .type-card.ldl {
            border-top-color: #e74c3c;
        }

        .type-card.hdl {
            border-top-color: #27ae60;
        }

        .type-card.total {
            border-top-color: #f39c12;
        }

        .type-icon {
            font-size: 3em;
            margin-bottom: 16px;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        .type-title {
            font-weight: 700;
            font-size: 1.3em;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .type-description {
            font-size: 1em;
            color: var(--text-light);
            line-height: 1.5;
        }

        .arraia-section {
            background: var(--accent-gradient);
            color: white;
            padding: 50px;
            border-radius: 24px;
            margin: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }

        .arraia-section::before {
            content: '🎉';
            position: absolute;
            font-size: 12em;
            opacity: 0.08;
            top: -40px;
            right: -40px;
            animation: floatParty 4s ease-in-out infinite;
        }

        @keyframes floatParty {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .arraia-title {
            font-size: 2.6em;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 4px 16px rgba(0,0,0,0.3);
            letter-spacing: -0.01em;
        }

        .arraia-text {
            font-size: 1.3em;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .hipercontroll-mention {
            background: rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
            padding: 24px;
            border-radius: 16px;
            border: 2px dashed rgba(255,255,255,0.6);
            margin-top: 30px;
            transition: all 0.3s ease;
        }

        .hipercontroll-mention:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.02);
        }

        .action-section {
            background: var(--success-gradient);
            color: white;
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            margin-top: 50px;
            box-shadow: var(--shadow-medium);
        }

        .action-title {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .action-text {
            font-size: 1.2em;
            line-height: 1.6;
            opacity: 0.95;
        }

        .footer {
            background: var(--dark-gradient);
            color: white;
            padding: 30px;
            text-align: center;
            font-size: 0.95em;
        }

        .highlight {
            background: linear-gradient(120deg, #f1c40f 0%, #f39c12 100%);
            color: var(--text-primary);
            padding: 4px 8px;
            border-radius: 6px;
            font-weight: 700;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .share-section {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 30px;
            text-align: center;
            margin: 30px 0;
            border-radius: 24px;
            box-shadow: var(--shadow-medium);
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .share-btn {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .share-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .content {
                padding: 30px;
            }
            
            .header {
                padding: 40px 30px;
            }
            
            .header h1 {
                font-size: 2.4em;
            }
            
            .header .subtitle {
                font-size: 1.2em;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .stat-number {
                font-size: 3.2em;
            }
            
            .types-grid {
                grid-template-columns: 1fr;
            }
            
            .danger-list {
                grid-template-columns: 1fr;
            }
            
            .arraia-title {
                font-size: 2em;
            }
            
            .arraia-text {
                font-size: 1.1em;
            }
            
            .share-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .share-btn {
                width: 240px;
            }
            
            .section {
                padding: 30px;
            }
            
            .types-section {
                padding: 40px 30px;
            }
        }

        @media (max-width: 480px) {
            .content {
                padding: 20px;
            }
            
            .header {
                padding: 30px 20px;
            }
            
            .section {
                padding: 24px;
            }
            
            .stat-number {
                font-size: 2.8em;
            }
            
            .section h3 {
                font-size: 1.8em;
            }
            
            .types-section {
                padding: 30px 20px;
            }
            
            .arraia-section {
                padding: 30px 20px;
            }
        }

        /* Print Styles */
        @media print {
            body {
                background: white;
            }
            
            .infographic {
                box-shadow: none;
                backdrop-filter: none;
            }
            
            .share-section,
            .share-buttons {
                display: none;
            }
        }

        /* Glass morphism enhancement */
        .glass-effect {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
    