 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .main-container {
            position: relative;
            min-height: 100vh;
        }

        .urgent-banner {
            background: #ff0000;
            color: #ffffff;
            text-align: center;
            padding: 8px;
            font-weight: bold;
            animation: urgent-flash 1.5s infinite;
            position: relative;
            z-index: 100;
        }

        @keyframes urgent-flash {
            0%, 50% { background: #ff0000; }
            25%, 75% { background: #ff3333; }
        }

        .header-banner {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            padding: 60px 20px;
            text-align: center;
            border-bottom: 4px solid #ff6600;
            position: relative;
        }

        .limited-badge {
            background: #ff6600;
            color: #000000;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
            animation: badge-pulse 2s infinite;
            text-transform: uppercase;
        }

        @keyframes badge-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .avatar-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-bottom: 30px;
        }

        .expert-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid #ff6600;
            object-fit: cover;
            position: relative;
        }

        .avatar-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #ff0000;
            color: #ffffff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .brand-title {
            font-size: 36px;
            font-weight: bold;
            color: #ff6600;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            position: relative;
        }

        .title-sparkle {
            position: absolute;
            top: -5px;
            right: -20px;
            color: #ffff00;
            animation: sparkle 1.5s infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
        }

        .expert-intro {
            font-size: 18px;
            color: #cccccc;
            margin-bottom: 25px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlight-text {
            color: #ff6600;
            font-weight: bold;
            background: #ffff00;
            color: #000000;
            padding: 2px 6px;
            border-radius: 3px;
            animation: highlight-glow 2s infinite;
        }

        @keyframes highlight-glow {
            0%, 100% { background: #ffff00; }
            50% { background: #ffaa00; }
        }

        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            background: #1a1a1a;
            padding: 15px 20px;
            border-radius: 10px;
            border: 2px solid #ff6600;
            animation: stat-bounce 3s infinite;
        }

        @keyframes stat-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #ff6600;
            display: block;
        }

        .stat-label {
            font-size: 12px;
            color: #ffffff;
            text-transform: uppercase;
        }

        .cta-primary {
            background-color: #ff6600;
            color: #000000;
            padding: 18px 40px;
            font-size: 20px;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            animation: cta-glow 2s infinite;
        }

        @keyframes cta-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
                background-color: #ff6600;
            }
            50% { 
                box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
                background-color: #ff8800;
            }
        }

        .cta-primary:hover {
            background-color: #ff8800;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
        }

        .fire-icon {
            margin-left: 10px;
            animation: fire-flicker 1s infinite;
        }

        @keyframes fire-flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            color: #ff6600;
            font-size: 20px;
            animation: float-up 8s infinite linear;
        }

        @keyframes float-up {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }

        .content-section {
            background-color: #1a1a1a;
            padding: 50px 20px;
            position: relative;
        }

        .section-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .urgency-stripe {
            background: #ff0000;
            color: #ffffff;
            text-align: center;
            padding: 10px;
            margin: 20px 0;
            font-weight: bold;
            animation: urgency-blink 1s infinite;
            border-radius: 5px;
        }

        @keyframes urgency-blink {
            0%, 50% { opacity: 1; }
            25%, 75% { opacity: 0.7; }
        }

        .experience-card {
            background-color: #000000;
            border: 2px solid #ff6600;
            border-radius: 12px;
            padding: 40px;
            margin: 30px 0;
            text-align: center;
            position: relative;
        }

        .card-corner-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #ff0000;
            color: #ffffff;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
            animation: badge-wiggle 2s infinite;
        }

        @keyframes badge-wiggle {
            0%, 100% { transform: rotate(-3deg); }
            50% { transform: rotate(3deg); }
        }

        .experience-title {
            font-size: 28px;
            color: #ff6600;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .experience-desc {
            font-size: 16px;
            color: #ffffff;
            line-height: 1.8;
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .trust-item {
            background: #ff6600;
            color: #000000;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            animation: trust-fade 3s infinite;
        }

        @keyframes trust-fade {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .problem-item {
            background-color: #000000;
            border-left: 5px solid #ff6600;
            padding: 25px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .problem-item:hover {
            background-color: #ff6600;
            color: #000000;
            border-left-color: #ffffff;
        }

        .problem-urgent {
            position: absolute;
            top: 5px;
            right: 5px;
            background: #ff0000;
            color: #ffffff;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: urgent-ping 2s infinite;
        }

        @keyframes urgent-ping {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        .problem-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ff6600;
        }

        .problem-item:hover .problem-title {
            color: #000000;
        }

        .problem-desc {
            font-size: 14px;
            line-height: 1.6;
        }

        .countdown-timer {
            background: #ff0000;
            color: #ffffff;
            text-align: center;
            padding: 15px;
            margin: 20px 0;
            border-radius: 10px;
            font-weight: bold;
            animation: countdown-pulse 1s infinite;
        }

        @keyframes countdown-pulse {
            0%, 100% { background: #ff0000; }
            50% { background: #ff3333; }
        }

        .benefits-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            color: #ffffff;
            padding: 50px 30px;
            margin: 40px 0;
            border-radius: 15px;
            position: relative;
            border: 3px solid #ff6600;
        }

        .benefits-title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
            position: relative;
        }

        .benefits-sparkles {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            color: #ffff00;
            animation: sparkle-dance 2s infinite;
        }

        @keyframes sparkle-dance {
            0%, 100% { transform: translateX(-50%) rotate(0deg); }
            50% { transform: translateX(-50%) rotate(180deg); }
        }

        .benefit-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background-color: #000000;
            color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            border: 3px solid #ffffff;
            position: relative;
            animation: card-float 4s ease-in-out infinite;
        }

        @keyframes card-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .benefit-name {
            font-size: 20px;
            font-weight: bold;
            color: #ff6600;
            margin-bottom: 15px;
        }

        .benefit-detail {
            font-size: 15px;
            line-height: 1.7;
        }

        .benefit-tag {
            position: absolute;
            top: -10px;
            left: 20px;
            background: #ff0000;
            color: #ffffff;
            padding: 5px 10px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: bold;
        }

        .testimonial-section {
            background-color: #1a1a1a;
            padding: 50px 20px;
            text-align: center;
        }

        .testimonial-title {
            font-size: 28px;
            color: #ff6600;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-item {
            background-color: #000000;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid #ff6600;
            position: relative;
            animation: testimonial-glow 3s infinite;
            text-align: center;
        }

        @keyframes testimonial-glow {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 102, 0, 0.3); }
            50% { box-shadow: 0 0 20px rgba(255, 102, 0, 0.6); }
        }

        .testimonial-image {
            width: 100%;
            max-width: 250px;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 3px solid #ff6600;
            transition: all 0.3s ease;
        }

        .testimonial-image:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
            color: #ffffff;
            font-style: italic;
        }

        .testimonial-author {
            color: #ff6600;
            font-weight: bold;
            font-size: 14px;
        }

        .final-cta {
            background-color: #000000;
            padding: 60px 20px;
            text-align: center;
            border-top: 4px solid #ff6600;
            position: relative;
        }

        .final-title {
            font-size: 30px;
            color: #ff6600;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .final-desc {
            font-size: 18px;
            margin-bottom: 30px;
            color: #cccccc;
        }

        .whatsapp-float {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background-color: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: whatsapp-bounce 2s infinite;
        }

        @keyframes whatsapp-bounce {
            0%, 100% { transform: translateY(-50%); }
            50% { transform: translateY(-60%); }
        }

        .whatsapp-float:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: #ffffff;
        }

        .whatsapp-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff0000;
            color: #ffffff;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: badge-pulse 1.5s infinite;
        }

        .floating-cta {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ff6600;
            color: #000000;
            padding: 18px 50px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            z-index: 999;
            animation: breathing 2s ease-in-out infinite;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
        }

        @keyframes breathing {
            0%, 100% {
                transform: translateX(-50%) scale(1);
                box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
                box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
            }
        }

        .disclaimer-footer {
            background-color: #1a1a1a;
            padding: 30px 20px;
            border-top: 2px solid #ff6600;
            text-align: center;
        }

        .disclaimer-text {
            font-size: 14px;
            color: #999999;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .content-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 10px;
            margin: 20px auto;
            display: block;
            border: 3px solid #ff6600;
        }

        .side-banner {
            position: fixed;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #ff0000;
            color: #ffffff;
            padding: 10px 5px;
            border-radius: 5px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 12px;
            font-weight: bold;
            z-index: 999;
            animation: side-slide 3s infinite;
        }

        @keyframes side-slide {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(5px); }
        }

        .corner-ribbon {
            position: absolute;
            top: 25px;
            right: -30px;
            background: #ff0000;
            color: #ffffff;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
            z-index: 10;
        }

        @media (max-width: 768px) {
            .header-banner {
                padding: 40px 15px;
            }

            .brand-title {
                font-size: 28px;
            }

            .expert-intro {
                font-size: 16px;
            }

            .problems-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefit-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .floating-cta {
                font-size: 16px;
                padding: 15px 40px;
            }

            .whatsapp-float {
                right: 15px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-icon {
                width: 30px;
                height: 30px;
            }

            .stats-bar {
                gap: 15px;
            }

            .trust-indicators {
                gap: 10px;
            }

            .side-banner {
                display: none;
            }

            .testimonial-image {
                height: 150px;
            }
        }