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

        body {
            font-family: 'League Spartan', sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.4;
            overflow-x: hidden;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Countdown Banner */
        .countdown-banner {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            padding: 12px 15px;
            text-align: center;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .countdown-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .countdown-timer {
            font-size: 24px;
            color: #fef08a;
            font-weight: 900;
            letter-spacing: 2px;
        }

        /* Hero Section */
        .hero {
            padding: 30px 0 20px;
            text-align: center;
        }

        .discount-badge {
            display: inline-block;
            background: #dc2626;
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 22px;
            margin-bottom: 20px;
            letter-spacing: 1px;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: 32px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .hero h1 .highlight {
            color: #22c55e;
            display: block;
            font-size: 28px;
            margin-top: 5px;
        }

        .date-info {
            font-size: 14px;
            color: #999;
            margin-bottom: 25px;
        }

        /* Product Image */
        .product-showcase {
            margin: 20px 0;
            padding: 20px;
        }

        .product-image {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            display: block;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(0, 0, 0, 0.5));
            padding: 20px;
            border-radius: 15px;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        /* Rating */
        .rating-section {
            text-align: center;
            margin: 20px 0;
        }

        .stars {
            color: #fbbf24;
            font-size: 24px;
            letter-spacing: 2px;
        }

        .rating-text {
            font-size: 16px;
            color: #d1d5db;
            margin-top: 5px;
            font-weight: 600;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 30px 0;
        }

        .section-title {
            font-size: 28px;
            font-weight: 900;
            text-align: center;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .benefits-grid {
            display: grid;
            gap: 12px;
            margin-bottom: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(220, 38, 38, 0.1);
            border-left: 4px solid #dc2626;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
        }

        .benefit-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        /* Target Audience */
        .target-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
        }

        .target-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
        }

        .target-list {
            display: grid;
            gap: 10px;
        }

        .target-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 600;
        }

        .target-item::before {
            content: '✓';
            color: #22c55e;
            font-weight: 900;
            font-size: 20px;
            flex-shrink: 0;
        }

        /* CTA Button */
        .cta-section {
            padding: 30px 0;
            text-align: center;
        }

        .cta-tagline {
            font-size: 32px;
            font-weight: 900;
            color: #fef08a;
            margin-bottom: 20px;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .btn-primary {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #000000;
            padding: 20px 40px;
            font-size: 24px;
            font-weight: 900;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
            width: 100%;
            margin: 10px 0;
            animation: buttonPulse 2s ease-in-out infinite;
        }

        @keyframes buttonPulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5); }
            50% { box-shadow: 0 15px 40px rgba(34, 197, 94, 0.8); }
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        /* FAQ Section */
        .faq-section {
            padding: 40px 0;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(220, 38, 38, 0.1);
        }

        .faq-question:hover {
            background: rgba(220, 38, 38, 0.2);
        }

        .faq-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .faq-text {
            flex: 1;
        }

        .faq-arrow {
            font-size: 20px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 18px;
        }

        .faq-answer-content {
            padding: 15px 0;
            color: #d1d5db;
            font-size: 15px;
            line-height: 1.6;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 40px 0;
            background: rgba(220, 38, 38, 0.05);
        }

        .testimonial-card {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
        }

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

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
        }

        .testimonial-info h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .testimonial-result {
            font-size: 13px;
            color: #22c55e;
            font-weight: 700;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.5;
            color: #d1d5db;
            margin-bottom: 15px;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .before-after-img {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 30px 10px;
            text-align: center;
            font-size: 13px;
            font-weight: 700;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid rgba(220, 38, 38, 0.3);
            color: #666;
            font-size: 13px;
        }

        /* Payment Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background-color: #1a1a1a;
            margin: 50px auto;
            padding: 30px;
            border: 2px solid #dc2626;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: slideIn 0.3s ease;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .close:hover {
            color: #dc2626;
        }

        .modal h3 {
            color: #dc2626;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .modal p {
            color: #d1d5db;
            margin-bottom: 20px;
            line-height: 1.6;
        }
