
        :root {
            --primary-color: #c53030;
            --secondary-color: #e53e3e;
            --accent-color: #fc8181;
            --warning-color: #ed8936;
            --success-color: #38a169;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --bg-light: #f7fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --shadow: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
            --gradient-emergency: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
            --gradient-warning: linear-gradient(135deg, #ed8936 0%, #f56500 100%);
            --gradient-accent: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-light);
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        .header {
            background: var(--gradient-emergency);
            color: white;
            text-align: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .header::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"><defs><pattern id="hearts" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50,85 C50,85 20,55 20,35 C20,15 40,15 50,35 C60,15 80,15 80,35 C80,55 50,85 50,85 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
            opacity: 0.3;
        }

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

        .header h1 {
            font-size: clamp(28px, 5vw, 52px);
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: -0.5px;
        }

        .header-subtitle {
            font-size: clamp(16px, 3vw, 24px);
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 500;
        }

        .emergency-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 25px;
            animation: urgentPulse 1.5s infinite;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        @keyframes urgentPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
        }

        /* Critical Stats Section */
        .critical-section {
            background: var(--bg-white);
            margin: -40px auto 0;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
            z-index: 3;
        }

        .critical-stats {
            padding: 60px 40px;
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
        }

        .critical-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 50px;
            letter-spacing: -0.5px;
        }

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

        .critical-stat {
            background: var(--bg-white);
            padding: 35px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .critical-stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-emergency);
        }

        .critical-stat:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .stat-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 12px;
            display: block;
            text-shadow: 0 2px 4px rgba(197, 48, 48, 0.2);
        }

        .stat-label {
            font-size: 18px;
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-description {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Emergency Signs Section */
        .emergency-section {
            padding: 60px 40px;
            background: var(--bg-white);
        }

        .emergency-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 40px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .emergency-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-emergency);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            animation: urgentPulse 2s infinite;
        }

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

        .symptom-card {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 6px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .symptom-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(197, 48, 48, 0.15);
        }

        .symptom-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .symptom-emoji {
            font-size: 32px;
            background: var(--bg-white);
            padding: 10px;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .symptom-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .symptom-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* First Aid Section */
        .first-aid-section {
            background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
            padding: 50px 40px;
            margin: 40px 0;
            border-radius: 20px;
            border: 2px solid var(--success-color);
        }

        .first-aid-title {
            color: var(--success-color);
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .first-aid-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .step-card {
            background: var(--bg-white);
            padding: 25px;
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            box-shadow: 0 4px 12px rgba(56, 161, 105, 0.1);
        }

        .step-number {
            background: var(--success-color);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            flex-shrink: 0;
        }

        .step-text {
            font-size: 16px;
            color: var(--text-primary);
            font-weight: 600;
            line-height: 1.4;
        }

        /* Risk Factors */
        .risk-section {
            padding: 50px 40px;
            background: var(--bg-white);
        }

        .risk-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--warning-color);
            margin-bottom: 30px;
            text-align: center;
        }

        .risk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .risk-item {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-left: 4px solid var(--warning-color);
        }

        .risk-icon {
            color: var(--warning-color);
            font-size: 24px;
            font-weight: bold;
        }

        .risk-text {
            font-size: 16px;
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Prevention Tips */
        .prevention-section {
            background: linear-gradient(135deg, #e6f3ff 0%, #bfdbfe 100%);
            padding: 50px 40px;
            border-radius: 20px;
            margin: 40px 0;
        }

        .prevention-title {
            color: #1e40af;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 30px;
            text-align: center;
        }

        .prevention-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .prevention-card {
            background: var(--bg-white);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
        }

        .prevention-emoji {
            font-size: 40px;
            margin-bottom: 15px;
            display: block;
        }

        .prevention-text {
            font-size: 16px;
            color: var(--text-primary);
            font-weight: 600;
            line-height: 1.4;
        }

        /* Share Section */
        .share-section {
            background: var(--gradient-accent);
            color: white;
            padding: 50px 40px;
            text-align: center;
        }

        .share-header {
            margin-bottom: 40px;
        }

        .share-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .share-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .share-subtitle {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .share-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .share-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .group-btn:hover {
            background: #25d366;
            border-color: #25d366;
        }

        .instagram-btn:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: #bc1888;
        }

        .contact-btn:hover {
            background: #25d366;
            border-color: #25d366;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 16px 30px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .badge-icon {
            font-size: 20px;
        }

        .badge-text {
            font-size: 15px;
            font-weight: 500;
            color: #e2e8f0;
        }

        .footer-disclaimer {
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-disclaimer p {
            font-size: 14px;
            color: #cbd5e0;
            margin: 0;
            line-height: 1.5;
        }

        .footer-disclaimer strong {
            color: #f7fafc;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .critical-stats,
            .emergency-section,
            .risk-section,
            .share-section {
                padding: 30px 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

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

            .share-buttons {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .footer-badge {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .badge-text {
                font-size: 13px;
            }

            .first-aid-steps {
                grid-template-columns: 1fr;
            }

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

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

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .critical-stat {
            animation: fadeIn 0.8s ease forwards;
        }

        .critical-stat:nth-child(1) { animation-delay: 0.1s; }
        .critical-stat:nth-child(2) { animation-delay: 0.2s; }
        .critical-stat:nth-child(3) { animation-delay: 0.3s; }
        .critical-stat:nth-child(4) { animation-delay: 0.4s; }
    