    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    /* Couleurs principales */
    --primary: #7c3aed;        /* Violet vif pour l'accent principal */
    --primary-dark: #6d28d9;   /* Version plus sombre du violet */
    --primary-light: #a78bfa;  /* Version plus claire du violet */
    
    /* Couleurs de fond et de texte */
    --dark: #141414;           /* Noir profond pour le fond */
    --dark-secondary: #1f1f1f; /* Noir légèrement plus clair */
    --light: #ffffff;          /* Blanc pur */
    --light-muted: #e5e5e5;    /* Blanc cassé */
    
    /* Couleurs d'accent */
    --accent-1: #10b981;       /* Vert émeraude */
    --accent-2: #f1f50b;       /* Orange doré */
    --accent-3: #ec4899;       /* Rose */
    
    /* Couleurs de gradient */
    --gradient-start: #7c3aed;
    --gradient-end: #ec4899;
    
    /* Couleurs de statut */
    --success: #10b981;        /* Vert */
    --warning: #e5f50b;        /* Orange */
    --error: #ef4444;          /* Rouge */

    /* variable ajouter  */
    :root {
  --accent-1-rgb: 64, 196, 255;
  --accent-2-rgb: 120, 88, 255;
  --warning-rgb: 255, 186, 58;
  --dark-rgb: 18, 18, 18;
  --dark-secondary-rgb: 28, 28, 28;
}
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



body {
    background-color: var(--dark);
    color: var(--light);
}

/* Hero Section */
.hero {
    padding-top: 60px;
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for rectangle */
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero {
        height: 300px;
    }
}

.video-slide .slide-content {
    position: relative;
    z-index: 2;
}

.video-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.hero-slide img {
    width: auto;
    height: auto;
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
}

.slide-content {
    position: absolute;
    left: 5%;
    bottom: 10%;
    max-width: 600px;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark);
    z-index: -1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero {
        height: calc(100vh - 60px);
        max-height: 800px;
    }

    .hero-slide {
        height: 100%;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
}

.slide-content {
    position: absolute;
    left: 5%;
    bottom: 20%;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.watch-btn {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--light);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.watch-btn:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

/* Content Sections */
.content-section {
    padding: 2rem 5%;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.movie-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover img {
    transform: scale(1.05);
}

.movie-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-info {
    transform: translateY(0);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--accent-1);
    font-size: 1.2rem;
}

.icon-bar {
    background: rgba(20, 20, 20, 0.95);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.icon-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon-item i {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.icon-item span {
    display: block;
    color: var(--light);
    font-size: 0.9rem;
}

/* Welcome Section - Base Styles */
.welcome-section {
    padding: 4rem 5%;
    background: linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.9));
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.welcome-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.welcome-card:hover {
    transform: translateY(-5px);
}

.welcome-card i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.welcome-card h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.welcome-card p {
    color: var(--light-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-item i {
    color: var(--accent-1);
    font-size: 1.2rem;
    min-width: 24px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .welcome-section {
        padding: 3rem 1rem;
    }

    .welcome-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-card {
        padding: 1.5rem;
    }

    .welcome-card i {
        font-size: 2rem;
    }

    .welcome-card h3 {
        font-size: 1.3rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 0.75rem;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .welcome-section {
        padding: 2rem 1rem;
    }

    .welcome-card {
        padding: 1.25rem;
    }

    .welcome-card i {
        font-size: 1.75rem;
    }

    .welcome-card h3 {
        font-size: 1.2rem;
    }

    .feature-list {
        margin-top: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .feature-item i {
        margin-bottom: 0.5rem;
    }
}



/* Welcome Section end */


.pricing-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--accent-2-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.8rem;
    min-width: 320px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid yellow;
    /* box-shadow: 0 0 20px rgba(255, 255, 255, 0.05); */
    height: fit-content; /* Assure que la carte prend juste la hauteur nécessaire */
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.premium {
    border: 1px solid rgba(var(--warning-rgb), 0.3);
    background: linear-gradient(145deg, rgba(var(--dark-rgb), 0.95), rgba(var(--dark-secondary-rgb), 0.95));
    box-shadow: 0 8px 32px -8px rgba(var(--warning-rgb), 0.2);
    border: 2px solid yellow;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem; /* Réduit de 2.5rem */
    position: relative;
}

.pricing-header .fa-crown {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 8px rgba(var(--warning-rgb), 0.4));
}

.price {
    font-size: 2rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0.5rem 0; /* Réduit de 1.5rem */
    position: relative;
    display: inline-block;
}

.features-list {
    margin: 1.8rem 0; /* Réduit de 2.5rem */
    padding: 0;
}

.features-list li {
    margin: 0.7rem 0; /* Réduit de 1rem */
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.features-list i {
    color: var(--accent-1);
    font-size: 1rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(var(--accent-2-rgb), 0.4);
}

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

@media (max-width: 768px) {
    .pricing-card {
        min-width: 300px; /* Augmenté de 280px à 300px */
        width: 90%; /* Ajouté pour meilleure adaptation mobile */
    }
    
    .pricing-container {
        gap: 2rem;
        padding: 0 0.5rem; /* Réduit pour compenser la largeur augmentée */
    }
}
/* Devices Section */
.devices-section {
    padding: 4rem 5%;
    background: linear-gradient(45deg, var(--dark), var(--dark-secondary));
    overflow: hidden;
    position: relative;
}

.devices-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.device-item {
    position: relative;
    padding: 2rem;
}

.device-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.device-item:hover::before {
    transform: scale(1);
}

.device-item i {
    font-size: 3rem;
    color: var(--accent-2);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.device-item h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.device-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Mini Slider */
.mini-slider {
    background: rgba(20, 20, 20, 0.95);
    padding: 1rem 0;
    margin-top: -1px;
}

.mini-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.mini-slider-track {
    display: flex;
    animation: slide 20s linear infinite;
    gap: 1rem;
}

.mini-slide {
    flex: 0 0 150px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid var(--primary-dark);
}

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(to right, var(--dark), var(--dark-secondary));
    padding: 2rem 5%;
    border-top: 1px solid var(--primary-dark);
    border-bottom: 1px solid var(--primary-dark);
}

.welcome-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.welcome-text {
    flex: 2;
}

.welcome-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    color: var(--primary-light);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.welcome-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-2);
}

.welcome-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--light);
}

.highlight {
    color: var(--accent-2);
    font-weight: bold;
}