:root {
            --xk9_primary_navy: #0a1628;
            --xk9_accent_blue: #1e3a8a;
            --xk9_light_bg: #ffffff;
            --xk9_gold_accent: #fbbf24;
            --xk9_text_dark: #1f2937;
            --xk9_text_light: #6b7280;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        ::-webkit-scrollbar {
            display: none;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--xk9_light_bg);
            color: var(--xk9_text_dark);
            overflow-x: hidden;
            zoom: 0.8;
        }

        .zp4_notification_toast {
            position: fixed;
            top: 20px;
            right: -400px;
            background: linear-gradient(135deg, var(--xk9_accent_blue), var(--xk9_primary_navy));
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 10000;
            transition: right 0.5s ease;
            max-width: 350px;
        }

        .zp4_notification_toast.qw7_active {
            right: 20px;
        }

        .vh3_header_navigation {
            background: var(--xk9_primary_navy);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .mn8_brand_logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--xk9_light_bg);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .mn8_brand_logo i {
            color: var(--xk9_gold_accent);
            margin-right: 10px;
        }

        .rs2_hero_section {
            background: linear-gradient(135deg, var(--xk9_primary_navy) 0%, var(--xk9_accent_blue) 100%);
            padding: 100px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .rs2_hero_section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(251, 191, 36, 0.1);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: lm5_pulse_glow 3s infinite;
        }

       

        .ty9_headline_primary {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
            animation: kj6_fade_slide_up 1s ease;
        }

        @keyframes kj6_fade_slide_up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .pl4_subheadline_text {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.95;
            animation: kj6_fade_slide_up 1s ease 0.3s backwards;
        }

        .df8_video_showcase_container {
            margin: 50px 0;
            animation: kj6_fade_slide_up 1s ease 0.6s backwards;
        }

        .df8_video_showcase_container img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .df8_video_showcase_container img:hover {
            transform: scale(1.02);
        }

        .bx7_content_section {
            padding: 80px 0;
        }

        .nw3_section_headline {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--xk9_primary_navy);
            margin-bottom: 30px;
            text-align: center;
        }

        .hg2_pain_point_block {
            background: #f9fafb;
            padding: 40px;
            border-radius: 10px;
            margin: 30px 0;
            animation: uc1_fade_in 1s ease;
        }

        @keyframes uc1_fade_in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hg2_pain_point_block p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--xk9_text_light);
            margin-bottom: 15px;
        }

        .qt5_solution_highlight {
            background: linear-gradient(135deg, var(--xk9_primary_navy), var(--xk9_accent_blue));
            color: white;
            padding: 80px 0;
            margin: 60px 0;
        }

        .wm6_testimonial_card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .wm6_testimonial_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .jk9_testimonial_image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 4px solid var(--xk9_gold_accent);
        }

        .op3_price_comparison_box {
            background: #fef3c7;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            color: #555;
            margin: 40px 0;
            border: 3px dashed var(--xk9_gold_accent);
        }

        .yx1_original_price {
            font-size: 2rem;
            text-decoration: line-through;
            color: #dc2626;
            font-weight: 700;
        }

        .zm4_offer_price {
            font-size: 4rem;
            color: var(--xk9_primary_navy);
            font-weight: 800;
            margin: 20px 0;
        }

        .kl8_celebrity_slider {
            overflow: hidden;
            margin: 50px 0;
            position: relative;
        }

        .pn2_slider_track {
            display: flex;
            animation: dv6_slide_infinite 20s linear infinite;
        }

        @keyframes dv6_slide_infinite {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .yr5_celeb_card {
            min-width: 300px;
            margin: 0 15px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .yr5_celeb_card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .bn7_bonus_list {
            list-style: none;
            padding: 0;
        }

        .bn7_bonus_list li {
            padding: 20px;
            margin: 15px 0;
            background: white;
            color: #555;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .bn7_bonus_list li:hover {
            transform: translateX(10px);
        }

        .bn7_bonus_list li i {
            color: var(--xk9_gold_accent);
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .fg4_cta_button_primary {
            background: linear-gradient(135deg, var(--xk9_gold_accent), #f59e0b);
            color: var(--xk9_primary_navy);
            padding: 20px 50px;
            font-size: 1.3rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .fg4_cta_button_primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
        }

        .xc3_urgency_banner {
            background: #dc2626;
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
            animation: qr8_blink_alert 2s infinite;
        }

        @keyframes qr8_blink_alert {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .lv9_countdown_timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .pw6_timer_block {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            min-width: 100px;
            text-align: center;
        }

        .pw6_timer_block .hs4_timer_number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--xk9_primary_navy);
            display: block;
        }

        .pw6_timer_block .gt2_timer_label {
            font-size: 0.9rem;
            color: var(--xk9_text_light);
            text-transform: uppercase;
        }

        .mf5_guarantee_badge {
            text-align: center;
            padding: 50px;
            background: #ecfdf5;
            border-radius: 15px;
            margin: 50px 0;
        }

        .mf5_guarantee_badge i {
            font-size: 5rem;
            color: #10b981;
            margin-bottom: 20px;
        }

        .aq8_faq_section {
            margin: 60px 0;
        }

        .nx1_faq_item {
            background: white;
            padding: 25px;
            margin: 15px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nx1_faq_item:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .dk7_faq_question {
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--xk9_primary_navy);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tp3_faq_answer {
            margin-top: 15px;
            color: var(--xk9_text_light);
            line-height: 1.8;
            display: none;
        }

        .nx1_faq_item.rj6_expanded .tp3_faq_answer {
            display: block;
        }

        .wp9_footer_section {
            background: var(--xk9_primary_navy);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        @media (max-width: 768px) {
            .ty9_headline_primary {
                font-size: 2rem;
            }
            .pl4_subheadline_text {
                font-size: 1.1rem;
            }
            .zm4_offer_price {
                font-size: 2.5rem;
            }
        }