        .links {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 0;
        }

        .section-header {
            color: #ffffff;
            font-size: 63px;
            font-weight: 700;
            text-align: center;
            margin-top: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
        }

        .about-console .section-header {
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
            margin-top: 0;
            margin-bottom: 40px;
        }

        .section-header#resources {
            font-size: 63px;
        }


        .link-button {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            text-decoration: none;
            padding: 18px 24px;
            border-radius: 16px;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            display: block;
            border: 1px solid rgba(139, 92, 246, 0.2);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .link-button:hover {
            background: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px) scale(1.01);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 14px 45px rgba(139, 92, 246, 0.3), 0 0 30px rgba(139, 92, 246, 0.15);
        }

        .featured-product-link {
            display: block;
            text-decoration: none;
            color: inherit;
            transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
        }

        .featured-product-link:visited {
            color: inherit;
        }


        .featured-product {
            background: rgba(15, 15, 25, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.12);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .featured-product:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
        }

        .featured-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
            opacity: 0.8;
            transition: opacity 0.3s ease, background 0.3s ease;
            z-index: 1;
        }

        .featured-product .thumbnail {
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center;
            border-radius: 16px 16px 0 0;
        }

        .featured-product .description {
            padding: 18px 24px 8px;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
        }

        .featured-product .product-title {
            font-size: 40px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 6px 0;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
        }

        .featured-product .product-tagline {
            font-size: 28px;
            color: #a78bfa;
            margin: 0 0 12px 0;
            font-weight: 500;
        }

        .featured-product .product-highlights {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .featured-product .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 26px;
            color: #d1d5db;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        .featured-product .highlight-item .highlight-icon {
            color: #22c55e;
            font-size: 28px;
        }

        .featured-product .price-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }

        .featured-product .price-original {
            font-size: 16px;
            color: #9ca3af;
            text-decoration: line-through;
        }

        .featured-product .price-current {
            font-size: 18px;
            font-weight: 600;
            color: #22c55e;
            background: transparent;
            padding: 8px 0;
            border-radius: 0;
            box-shadow: none;
        }

        .featured-product .price-badge {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .featured-product .cta-cards-hero {
            padding: 16px 16px 0;
            gap: 12px;
            margin-bottom: 0;
        }

        /* Make TikTok and eBay cards same size as PayPal */
        .featured-product .cta-card-hero:nth-child(3),
        .featured-product .cta-card-hero.ebay-option {
            transform: scale(1);
        }

        .featured-product .cta-card-hero:nth-child(3):hover,
        .featured-product .cta-card-hero.ebay-option:hover {
            transform: scale(1) translateY(-4px);
        }

        .featured-product .marketplace-cta-text {
            padding: 0 16px 16px;
            margin: 5px 0;
        }

        .featured-product .marketplace-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 16px 16px 12px;
        }

        .featured-product .marketplace-buttons .featured-product-link,
        .featured-product .marketplace-buttons .best-value-wrapper {
            flex: 1 1 calc(50% - 6px);
            min-width: 200px;
        }

        .marketplace-button {
            color: #ffffff;
            text-decoration: none;
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            gap: 8px;
            position: relative;
            overflow: hidden;
            min-height: 60px;
            box-sizing: border-box;
        }

        .marketplace-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            will-change: transform;
        }

        .marketplace-button:hover::before {
            transform: translateX(100%);
        }

        /* TikTok button styling */
        .marketplace-button-tiktok {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            border: 2px solid #fe2c55;
            box-shadow: 0 4px 15px rgba(254, 44, 85, 0.3),
                0 0 30px rgba(254, 44, 85, 0.15);
        }

        .marketplace-button-tiktok:hover {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border-color: #ff5277;
            box-shadow: 0 10px 35px rgba(254, 44, 85, 0.6),
                0 0 60px rgba(254, 44, 85, 0.35),
                0 0 90px rgba(254, 44, 85, 0.15);
            transform: translateY(-5px) scale(1.04);
        }

        /* PayPal button styling */
        .marketplace-button-paypal {
            background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
            border: 2px solid #009cde;
            box-shadow: 0 4px 15px rgba(0, 156, 222, 0.3),
                0 0 30px rgba(0, 156, 222, 0.15);
        }

        .marketplace-button-paypal span {
            font-size: 16px;
            font-weight: 700;
        }

        .marketplace-button-paypal:hover {
            background: linear-gradient(135deg, #001f5c 0%, #003087 100%);
            border-color: #00b4ff;
            box-shadow: 0 10px 35px rgba(0, 156, 222, 0.6),
                0 0 60px rgba(0, 156, 222, 0.35),
                0 0 90px rgba(0, 156, 222, 0.15);
            transform: translateY(-5px) scale(1.04);
        }

        /* eBay button styling - intentionally muted as least preferred option */
        .marketplace-button-ebay {
            background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            opacity: 0.8;
            font-size: 13px;
        }

        .marketplace-button-ebay:hover {
            background: linear-gradient(135deg, #444444 0%, #2a2a2a 100%);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.05);
            transform: translateY(-3px) scale(1.02);
            opacity: 0.9;
        }

        /* eBay elements - hidden by default, shown when stock available */
        .ebay-option {
            display: none;
        }

        .ebay-option.show {
            display: flex;
        }

        .marketplace-button:active {
            transform: translateY(0) scale(0.98);
        }

        .marketplace-cta-text {
            text-align: center;
            padding: 0 16px;
            margin: 40px 0 5px 0;
            color: #22c55e;
            font-size: 13px;
            font-weight: 600;
            animation: pulse-text 2s ease-in-out infinite;
            position: relative;
            width: 100%;
            transition: transform 0.3s ease;
        }

        /* Move text with cards when any card is hovered */
        .featured-product:has(.cta-card-hero:hover) .marketplace-cta-text {
            transform: translateY(-4px);
        }

        /* Payment Options Explainer Section */
        .payment-options-section {
            margin: 48px 0;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .payment-options-title {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 24px 0;
        }

        .payment-options-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .payment-options-grid {
                grid-template-columns: repeat(3, 1fr);
                align-items: flex-end;
                gap: 20px 20px;
            }

            /* TikTok - 2nd place, left */
            .payment-option-link:nth-child(1) {
                order: 1;
            }

            /* Buy Direct - 1st place, middle, raised */
            .payment-option-link:nth-child(2) {
                order: 2;
                margin-bottom: 40px;
            }

            /* eBay - 2nd place, right */
            .payment-option-link:nth-child(3) {
                order: 3;
            }
        }

        .payment-option-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .payment-option-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            transition: all 0.3s ease;
        }

        .payment-option-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 16px 50px rgba(139, 92, 246, 0.35), 0 0 35px rgba(139, 92, 246, 0.15);
        }

        /* Buy Direct - Winner styling with green glow */
        .payment-option-card.recommended {
            border: 2px solid #22c55e;
            background: rgba(34, 197, 94, 0.1);
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.3),
                0 0 60px rgba(34, 197, 94, 0.15);
        }

        .payment-option-card.recommended:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 0 50px rgba(34, 197, 94, 0.6),
                0 0 100px rgba(34, 197, 94, 0.35),
                0 12px 35px rgba(34, 197, 94, 0.25);
        }

        .payment-option-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .payment-option-icon {
            font-size: 32px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .payment-option-icon svg {
            width: 40px;
            height: 40px;
        }

        .payment-option-link:nth-child(1) .payment-option-icon svg {
            color: #ffffff;
        }

        .payment-option-link:nth-child(2) .payment-option-icon svg {
            color: #0070ba;
        }

        .payment-option-link:nth-child(3) .payment-option-icon svg {
            color: #e53238;
        }

        .payment-option-name {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }

        .payment-option-badge {
            display: inline-block;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            margin-left: auto;
            align-self: flex-start;
        }

        .payment-option-description {
            color: #d1d5db;
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 16px 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
                0 0 15px rgba(255, 255, 255, 0.15);
        }

        .payment-option-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .payment-option-features li {
            color: #9ca3af;
            font-size: 13px;
            padding: 6px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .payment-option-features li::before {
            content: "✓";
            color: #22c55e;
            font-weight: 700;
            flex-shrink: 0;
            width: 16px;
            line-height: 1.5;
        }

        .payment-option-features li.con::before {
            content: "•";
            color: #9ca3af;
        }

        .payment-option-button {
            display: inline-block;
            width: 100%;
            margin-top: 20px;
            padding: 12px 24px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0.6) 100%);
            border: 1px solid rgba(139, 92, 246, 0.6);
            border-radius: 8px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
        }

        .payment-option-button:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(139, 92, 246, 0.8) 100%);
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
            transform: translateY(-2px);
        }

        .payment-option-button.recommended-btn {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.6) 0%, rgba(22, 163, 74, 0.4) 50%, rgba(34, 197, 94, 0.6) 100%);
            border-color: rgba(34, 197, 94, 0.8);
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
        }

        .payment-option-button.recommended-btn:hover {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.8) 0%, rgba(22, 163, 74, 0.6) 50%, rgba(34, 197, 94, 0.8) 100%);
            border-color: rgba(34, 197, 94, 1);
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
        }

        @keyframes pulse-text {

            0%,
            100% {
                opacity: 0.75;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.02);
            }
        }

        /* About Console Section */
        .about-console {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0;
            border: none;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: none;
            width: 100vw;
            position: relative;
            left: 50%;
            margin-left: -50vw;
            padding: 40px 40px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Features section entrance animation */
        .about-console .section-header,
        .about-console .about-description,
        .about-console .accordion-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .about-console.features-visible .section-header {
            opacity: 1;
            transform: translateY(0);
        }

        .about-console.features-visible .about-description {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.15s;
        }

        .about-console.features-visible .accordion-item {
            opacity: 1;
            transform: translateY(0);
        }

        .about-console.features-visible .accordion-item:nth-child(1) { transition-delay: 0.2s; }
        .about-console.features-visible .accordion-item:nth-child(2) { transition-delay: 0.3s; }
        .about-console.features-visible .accordion-item:nth-child(3) { transition-delay: 0.4s; }
        .about-console.features-visible .accordion-item:nth-child(4) { transition-delay: 0.5s; }
        .about-console.features-visible .accordion-item:nth-child(5) { transition-delay: 0.6s; }
        .about-console.features-visible .accordion-item:nth-child(6) { transition-delay: 0.7s; }

        /* Carousel Styles */
        .carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 48px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(139, 92, 246, 0.5),
                0 0 100px rgba(139, 92, 246, 0.35),
                0 0 160px rgba(139, 92, 246, 0.2);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 90vh;
            min-height: 500px;
        }

        @media (max-width: 768px) {
            .carousel-container {
                height: 70vh;
                min-height: 400px;
            }
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            border: none;
            padding: 16px 12px;
            cursor: pointer;
            font-size: 18px;
            z-index: 10;
            transition: all 0.25s ease;
            border-radius: 4px;
        }

        .carousel-btn:hover {
            background: rgba(139, 92, 246, 0.7);
        }

        .carousel-btn-prev {
            left: 10px;
        }

        .carousel-btn-next {
            right: 10px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            min-width: 24px;
            min-height: 24px;
            padding: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            background-clip: content-box;
            cursor: pointer;
            transition: all 0.25s ease;
            border: none;
        }

        .carousel-dot.active {
            background: rgba(139, 92, 246, 0.9);
            background-clip: content-box;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
        }

        .carousel-dot:hover {
            background: rgba(139, 92, 246, 0.6);
            background-clip: content-box;
        }

        @media (max-width: 768px) {
            .carousel-btn {
                padding: 14px 10px;
                font-size: 16px;
            }

            .carousel-dots {
                bottom: 20px;
                gap: 10px;
            }

            .carousel-dot {
                width: 12px;
                height: 12px;
            }
        }

        /* About Description */
        .about-description {
            padding: 30px 24px;
            padding-top: 0;
            color: #ffffff;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-description p {
            font-size: 16px;
            line-height: 1.7;
            margin: 10px 0;
            padding: 0;
            text-align: center;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
                0 0 40px rgba(139, 92, 246, 0.5);
        }

        @media (max-width: 768px) {
            .about-description {
                padding: 40px 25px;
                padding-top: 20px;
            }

            .about-description p {
                font-size: 17px;
                line-height: 1.8;
                margin: 15px 0;
            }
        }

        .about-description strong {
            text-shadow: 0 0 20px rgba(139, 92, 246, 1),
                0 0 40px rgba(139, 92, 246, 0.7);
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-list li {
            font-size: 15px;
            line-height: 1.5;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
        }

        .feature-list li strong {
            color: #ffffff;
            text-shadow: 0 0 20px rgba(139, 92, 246, 1),
                0 0 40px rgba(139, 92, 246, 0.6);
        }

        /* Accordion Styles */
        .accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
        }

        .accordion-header {
            width: 100%;
            padding: 16px 18px;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.25s ease;
        }

        @media (max-width: 768px) {
            .accordion {
                gap: 15px;
                margin-top: 25px;
            }

            .accordion-item {
                border-radius: 12px;
            }

            .accordion-header {
                padding: 18px 20px;
                font-size: 16px;
            }

            .accordion-content p {
                padding: 0 20px 16px;
                font-size: 15px;
                line-height: 1.7;
            }

            .accordion-content .feature-list {
                padding: 8px 20px 20px;
            }

            .accordion-content .feature-list li {
                font-size: 15px;
                padding: 14px 18px;
            }

            .accordion-item.active .accordion-content {
                max-height: 800px;
            }
        }

        .accordion-header:hover {
            background: rgba(139, 92, 246, 0.15);
        }

        .accordion-icon {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-item.active .accordion-content {
            max-height: 600px;
        }

        .accordion-content p {
            padding: 0 16px 12px;
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .accordion-content p:first-child {
            padding-top: 4px;
        }

        .accordion-content .feature-list {
            padding: 4px 16px 16px;
        }

        .accordion-content .feature-list li {
            font-size: 14px;
        }

        .accordion-buy-buttons {
            display: flex;
            gap: 8px;
            padding: 8px 16px 16px;
        }

        .accordion-buy-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            cursor: pointer;
        }

        .accordion-buy-btn:hover {
            background: rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
                0 0 40px rgba(139, 92, 246, 0.2);
            transform: translateY(-2px);
        }

        .accordion-buy-btn:active {
            transform: translateY(0);
        }

        /* Floating Buy Now Button */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 17.5vw;
            min-width: 280px;
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) translateZ(0);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border-radius: 6px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
            padding: 8px;
            box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.7);
            will-change: transform, opacity;
        }

        .floating-cta.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .floating-cta-title {
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            padding: 0 0 10px 0;
            width: 100%;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(139, 92, 246, 0.8),
                0 0 60px rgba(139, 92, 246, 0.6),
                0 0 80px rgba(139, 92, 246, 0.4);
        }

        .floating-cta-buttons {
            display: flex;
            gap: 0;
            padding: 0;
        }

        .floating-btn.floating-btn-contact {
            margin: 10px 10px 20px 10px;
            padding: 10px 24px;
            border-radius: 8px !important;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: none !important;
            text-shadow: none;
            font-size: 12px;
        }

        .floating-btn.floating-btn-contact:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: none !important;
            transform: none;
        }

        .floating-btn {
            display: inline-flex;
            padding: 12px 10px;
            flex: 1;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0.6) 100%);
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(139, 92, 246, 0.6);
            transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6),
                0 0 40px rgba(139, 92, 246, 0.4),
                0 0 60px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
        }

        .floating-btn:first-child {
            border-radius: 5px 0 0 5px;
            border-right: 0.5px solid rgba(255, 255, 255, 0.2);
        }

        .floating-btn:last-child {
            border-radius: 0 5px 5px 0;
            border-left: 0.5px solid rgba(255, 255, 255, 0.2);
        }

        /* Middle button should have no rounding */
        .floating-btn:not(:first-child):not(:last-child) {
            border-radius: 0;
            border-left: 0.5px solid rgba(255, 255, 255, 0.2);
            border-right: 0.5px solid rgba(255, 255, 255, 0.2);
        }

        .floating-btn:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(139, 92, 246, 0.8) 100%);
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.8),
                0 0 50px rgba(139, 92, 246, 0.5),
                0 0 80px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .floating-cta.pulse .floating-btn {
            animation: pulse-glow 1.5s ease-in-out 2;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(139, 92, 246, 0.6),
                    0 0 40px rgba(139, 92, 246, 0.4),
                    0 0 60px rgba(139, 92, 246, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }

            50% {
                box-shadow: 0 0 35px rgba(139, 92, 246, 1),
                    0 0 70px rgba(139, 92, 246, 0.7),
                    0 0 100px rgba(139, 92, 246, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

        @media (max-width: 480px) {
            .floating-cta {
                bottom: 80px;
                right: 16px;
                left: auto;
                width: auto;
                min-width: 200px;
                max-width: calc(100vw - 32px);
            }

            .floating-cta-title {
                font-size: 14px;
                padding: 0 0 8px 0;
            }

            .floating-btn {
                flex: 1;
                padding: 8px 10px;
                font-size: 13px;
            }

            .floating-btn svg {
                width: 50px !important;
                height: 27px !important;
            }

            .floating-btn.floating-btn-contact {
                margin: 8px 8px 16px 8px;
                padding: 6px 20px;
                font-size: 11px;
            }
        }

        /* Marquee Styles */
        .marquee-container {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            overflow: hidden;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
            padding: 16px 0;
            margin-top: 0;
            margin-bottom: 48px;
            position: relative;
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(139, 92, 246, 0.4);
            border-bottom: 1px solid rgba(139, 92, 246, 0.4);
            box-shadow: 0 0 30px 15px rgba(139, 92, 246, 0.25),
                0 0 60px 30px rgba(139, 92, 246, 0.12),
                0 0 100px 50px rgba(139, 92, 246, 0.06);
        }

        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: -1px;
            bottom: -1px;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        @media (min-width: 768px) {

            .marquee-container::before,
            .marquee-container::after {
                width: 35%;
            }

            .marquee-container::before {
                background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }

            .marquee-container::after {
                background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }

            .marquee {
                animation: marquee 40s linear infinite;
            }
        }

        .marquee {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }

        .marquee span {
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .marquee span strong {
            font-weight: 700;
        }

        .marquee span em {
            font-style: italic;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .marquee-container:hover .marquee,
        .marquee-container.paused .marquee,
        .features-marquee-container:hover .marquee,
        .testimonial-marquee-container:hover .marquee {
            animation-play-state: paused;
        }

        /* Features Marquee (between hero and content) */
        .features-marquee-container {
            width: 100vw;
            position: relative;
            left: 50%;
            margin-left: -50vw;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
            padding: 16px 0;
            margin-top: 0;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            border-top: none;
            border-bottom: 1px solid rgba(139, 92, 246, 0.4);
            box-shadow: 0 0 30px 15px rgba(139, 92, 246, 0.25),
                0 0 60px 30px rgba(139, 92, 246, 0.12),
                0 0 100px 50px rgba(139, 92, 246, 0.06);
        }

        .features-marquee-container .marquee {
            display: flex;
            width: max-content;
            animation: marquee 120s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }

        .features-marquee-container .marquee span {
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .features-marquee-container {
                padding: 18px 0;
                margin-top: 0;
                margin-bottom: 0;
                margin-left: -50vw;
            }

            .features-marquee-container .marquee span {
                font-size: 16px;
            }
        }

        .features-marquee-container::before,
        .features-marquee-container::after {
            content: '';
            position: absolute;
            top: -1px;
            bottom: -1px;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .features-marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        .features-marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        @media (min-width: 768px) {

            .features-marquee-container::before,
            .features-marquee-container::after {
                width: 35%;
            }

            .features-marquee-container::before {
                background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }

            .features-marquee-container::after {
                background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }
        }
