        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f23;
            color: #fff;
            overflow-x: hidden;
        }

        .header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

        .cta-button {
            background: #fff;
            color: #ff6b6b;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }

        .hero {
            padding: 140px 2rem 80px;
            text-align: center;
            background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            color: #a0aec0;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .hero-buttons .cta-button {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        .hero-buttons .cta-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #ff6b6b;
        }

        .hero-buttons .cta-secondary:hover {
            background: #ff6b6b;
            color: #fff;
        }

        .movies-slider {
            padding: 60px 2rem;
            background: #0f0f23;
            overflow: hidden;
        }

        .slider-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slider-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            animation: scroll 40s linear infinite;
            gap: 20px;
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .movie-poster {
            min-width: 200px;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            position: relative;
        }

        .movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .movie-poster:hover {
            transform: scale(1.05);
        }

        .steps-section {
            padding: 80px 2rem;
            background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
        }

        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .steps-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .steps-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .steps-header p {
            font-size: 1.2rem;
            color: #a0aec0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            background: rgba(255, 107, 107, 0.1);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 107, 107, 0.3);
            transition: all 0.3s;
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-10px);
            border-color: #ff6b6b;
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .step-card h3 {
            font-size: 1.5rem;
            margin: 1rem 0;
            color: #ff6b6b;
        }

        .step-card p {
            color: #a0aec0;
            line-height: 1.6;
        }

        .testimonials-section {
            padding: 80px 2rem;
            background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #a0aec0;
            margin-bottom: 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255, 107, 107, 0.3);
            transition: all 0.3s;
            cursor: pointer;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: #ff6b6b;
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
        }

        .testimonial-image {
            width: 100%;
            min-height: 500px;
            background: #1a1a2e;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a0aec0;
            font-size: 1rem;
            text-align: center;
            padding: 2rem;
        }

        .testimonial-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            max-width: 100%;
        }

        .testimonial-info {
            padding: 1.5rem;
            text-align: center;
        }

        .testimonial-name {
            font-size: 1.2rem;
            font-weight: bold;
            color: #ff6b6b;
            margin-bottom: 0.5rem;
        }

        .testimonial-rating {
            color: #feca57;
            font-size: 1.1rem;
        }

        .pricing-section {
            padding: 80px 2rem;
            background: #0f0f23;
        }

        .pricing-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            border: 2px solid rgba(255, 107, 107, 0.3);
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #ff6b6b;
            box-shadow: 0 20px 50px rgba(255, 107, 107, 0.4);
        }

        .best-value {
            border-color: #feca57;
        }

        .best-value::before {
            content: 'MEILLEURE OFFRE';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ff6b6b;
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            margin: 1rem 0;
        }

        .price span {
            font-size: 1.2rem;
            color: #a0aec0;
        }

        .billing {
            color: #feca57;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .features {
            list-style: none;
            margin: 2rem 0;
        }

        .features li {
            padding: 0.8rem 0;
            color: #a0aec0;
            border-bottom: 1px solid rgba(255, 107, 107, 0.1);
        }

        .features li:before {
            content: "✓ ";
            color: #feca57;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .choose-plan {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
            text-decoration: none;
        }

        .choose-plan:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
        }

        .footer {
            background: #0a0a18;
            padding: 2rem;
            text-align: center;
            color: #a0aec0;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .movie-poster {
                min-width: 150px;
                height: 225px;
            }
        }
    