
        :root {
            --primary-color: #dc2626;
            --secondary-color: #ef4444;
            --accent-color: #f87171;
            --warning-color: #f59e0b;
            --success-color: #10b981;
            --money-color: #059669;
            --text-primary: #1f2937;
            --text-secondary: #4b5563;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
            --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            --gradient-money: linear-gradient(135deg, #059669 0%, #10b981 100%);
            --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #f97316 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-primary);
            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="money" width="100" height="100" patternUnits="userSpaceOnUse"><text x="20" y="30" fill="rgba(255,255,255,0.1)" font-size="20">💰</text><text x="70" y="70" fill="rgba(255,255,255,0.1)" font-size="20">💊</text><text x="50" y="10" fill="rgba(255,255,255,0.05)" font-size="15">💲</text></pattern></defs><rect width="100" height="100" fill="url(%23money)"/></svg>');
            opacity: 0.3;
        }

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

        .header h1 {
            font-size: clamp(28px, 5vw, 48px);
            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, 22px);
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 500;
        }

        .shock-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: shockPulse 2s infinite;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        @keyframes shockPulse {
            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); }
        }

        /* Main Content */
        .main-content {
            background: var(--bg-white);
            margin: -40px auto 0;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
            z-index: 3;
        }

        /* Money Stats Section */
        .money-section {
            padding: 60px 40px;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        }

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

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

        .money-card {
            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;
        }

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

        .money-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--money-color);
        }

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

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

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

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

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

        .comparison-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 40px;
            text-align: center;
        }

        .comparison-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .comparison-side {
            padding: 40px;
            border-radius: 20px;
            text-align: center;
        }

        .industry-side {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border: 3px solid var(--money-color);
        }

        .people-side {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border: 3px solid var(--primary-color);
        }

        .comparison-icon {
            font-size: 64px;
            margin-bottom: 20px;
            display: block;
        }

        .comparison-stat {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 15px;
            display: block;
        }

        .industry-side .comparison-stat {
            color: var(--money-color);
        }

        .people-side .comparison-stat {
            color: var(--primary-color);
        }

        .comparison-label {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

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

        /* Growth Chart Section */
        .chart-section {
            padding: 50px 40px;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
        }

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

        .growth-chart {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .chart-years {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .year-item {
            text-align: center;
            flex: 1;
        }

        .year-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--money-color);
            margin-bottom: 5px;
        }

        .year-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .growth-bar {
            background: #e5e7eb;
            height: 20px;
            border-radius: 10px;
            margin: 20px 0;
            overflow: hidden;
            position: relative;
        }

        .growth-fill {
            background: var(--gradient-money);
            height: 100%;
            border-radius: 10px;
            transition: width 2s ease;
            position: relative;
        }

        .growth-fill::after {
            content: '+62%';
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-weight: 700;
            font-size: 14px;
        }

        /* Reality Check Section */
        .reality-section {
            background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
        }

        .reality-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 30px;
        }

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

        .reality-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .reality-fact {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 15px;
            display: block;
        }

        .reality-label {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .reality-detail {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.4;
        }

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

        .alternative-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
        }

        .alternative-intro {
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            border-left: 5px solid #3b82f6;
        }

        .alternative-intro h3 {
            color: #1e40af;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .alternative-intro p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

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

        .benefit-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid #3b82f6;
            text-align: center;
        }

        .benefit-icon {
            font-size: 40px;
            margin-bottom: 15px;
            display: block;
        }

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

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

        /* Share Section */
        .share-section {
            background: var(--gradient-primary);
            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;
            }

            .money-section,
            .comparison-section,
            .chart-section,
            .reality-section,
            .alternative-section,
            .share-section {
                padding: 30px 20px;
            }

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

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

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

            .reality-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;
            }
        }

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

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

        .money-card {
            animation: fadeIn 0.8s ease forwards;
        }

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