.elementor-120 .elementor-element.elementor-element-d88c50c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-120 .elementor-element.elementor-element-d88c50c:not(.elementor-motion-effects-element-type-background), .elementor-120 .elementor-element.elementor-element-d88c50c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-120 .elementor-element.elementor-element-3f54439{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:100px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}.elementor-120 .elementor-element.elementor-element-3f54439:not(.elementor-motion-effects-element-type-background), .elementor-120 .elementor-element.elementor-element-3f54439 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-120 .elementor-element.elementor-element-117940f.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:1;}.elementor-120 .elementor-element.elementor-element-e230dd1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-120 .elementor-element.elementor-element-e230dd1:not(.elementor-motion-effects-element-type-background), .elementor-120 .elementor-element.elementor-element-e230dd1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}@media(max-width:1024px){.elementor-120 .elementor-element.elementor-element-d88c50c{--padding-top:50px;--padding-bottom:50px;--padding-left:30px;--padding-right:30px;}.elementor-120 .elementor-element.elementor-element-3f54439{--padding-top:100px;--padding-bottom:100px;--padding-left:20px;--padding-right:20px;}.elementor-120 .elementor-element.elementor-element-e230dd1{--padding-top:50px;--padding-bottom:50px;--padding-left:30px;--padding-right:30px;}}@media(max-width:767px){.elementor-120 .elementor-element.elementor-element-d88c50c{--padding-top:30px;--padding-bottom:30px;--padding-left:15px;--padding-right:15px;}.elementor-120 .elementor-element.elementor-element-e230dd1{--padding-top:30px;--padding-bottom:30px;--padding-left:15px;--padding-right:15px;}}/* Start custom CSS for html, class: .elementor-element-3013081 *//* ========================================================= */
/* --- TRIAL CTA SECTION STYLES (JAUNE & ROUGE) --- */
/* ========================================================= */
.trial-cta-section {
    background-color: #0d0417; /* Fond sombre pour la section */
    padding: 80px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trial-cta-content-wrapper {
    max-width: 1200px;
    width: 100%;
    /* Dégradé sombre du conteneur */
    background: radial-gradient(at top left, #290847 0%, #13032b 100%); 
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
    color: #ffffff; /* Texte général blanc */
}

/* --- Icon Styling (Accentué en Jaune) --- */
.cta-icon {
    flex-shrink: 0; 
    width: 100px; 
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 215, 0, 0.15); /* Fond Jaune transparent */
    border-radius: 50%; 
    box-shadow: 0 0 15px #FFD700; /* Lumière jaune */
    border: 2px solid #FFD700; /* Bordure Jaune */
}

.popcorn-icon {
    width: 70px; 
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* --- Text Content Styling --- */
.cta-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: #FFD700; /* Titre en Jaune vif */
}

.cta-subtitle {
    font-size: 16px;
    margin: 0;
    color: #cccccc;
    line-height: 1.5;
}

/* --- Button Styling (Rouge Vif) --- */
.cta-button.learn-more {
    flex-shrink: 0; 
    background-color: #E50914; /* Rouge Vif (similaire à Netflix/Cinéma) */
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button.learn-more:hover {
    background-color: #ff0b18; /* Rouge légèrement plus clair au survol */
    transform: translateY(-2px);
}

/* ========================================================= */
/* --- MEDIA QUERIES (Mobile) --- */
/* ========================================================= */
@media (max-width: 992px) {
    .trial-cta-content-wrapper {
        flex-direction: column; 
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }

    .popcorn-icon {
        width: 50px;
        height: 50px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-button.learn-more {
        width: 100%; 
        max-width: 300px; 
    }
}

@media (max-width: 576px) {
    .trial-cta-section {
        padding: 40px 15px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-subtitle {
        font-size: 14px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-905d732 *//* ========================================================= */
/* --- TRIAL CTA SECTION STYLES (JAUNE & ROUGE) --- */
/* ========================================================= */
.trial-cta-section {
    background-color: #0d0417; /* Fond sombre pour la section */
    padding: 80px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trial-cta-content-wrapper {
    max-width: 1200px;
    width: 100%;
    /* Dégradé sombre du conteneur */
    background: radial-gradient(at top left, #290847 0%, #13032b 100%); 
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
    color: #ffffff; /* Texte général blanc */
}

/* --- Icon Styling (Accentué en Jaune) --- */
.cta-icon {
    flex-shrink: 0; 
    width: 100px; 
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 215, 0, 0.15); /* Fond Jaune transparent */
    border-radius: 50%; 
    box-shadow: 0 0 15px #FFD700; /* Lumière jaune */
    border: 2px solid #FFD700; /* Bordure Jaune */
}

.popcorn-icon {
    width: 70px; 
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* --- Text Content Styling --- */
.cta-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: #FFD700; /* Titre en Jaune vif */
}

.cta-subtitle {
    font-size: 16px;
    margin: 0;
    color: #cccccc;
    line-height: 1.5;
}

/* --- Button Styling (Rouge Vif) --- */
.cta-button.learn-more {
    flex-shrink: 0; 
    background-color: #E50914; /* Rouge Vif (similaire à Netflix/Cinéma) */
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button.learn-more:hover {
    background-color: #ff0b18; /* Rouge légèrement plus clair au survol */
    transform: translateY(-2px);
}

/* ========================================================= */
/* --- MEDIA QUERIES (Mobile) --- */
/* ========================================================= */
@media (max-width: 992px) {
    .trial-cta-content-wrapper {
        flex-direction: column; 
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }

    .popcorn-icon {
        width: 50px;
        height: 50px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-button.learn-more {
        width: 100%; 
        max-width: 300px; 
    }
}

@media (max-width: 576px) {
    .trial-cta-section {
        padding: 40px 15px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-subtitle {
        font-size: 14px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-117940f *//* ========================================================= */
/* --- NEWSLETTER FEATURES SECTION STYLES (Disposition en 5 blocs) --- */
/* ========================================================= */
.newsletter-features-section {
    background-color: #000000;
    /* Dégradé sombre/violet */
    background: radial-gradient(at 50% 10%, #2a004f 0%, #000000 100%);
    padding: 80px 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    text-align: center;
}

/* --- TITRES ET DESCRIPTION (Styles de base pour Desktop) --- */
.section-main-title {
    font-size: 35px; 
    font-weight: 900;
    margin-bottom: 20px;
}

.section-description {
    font-size: 20px; 
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Grille des fonctionnalités (3 colonnes par défaut) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 20px;
    text-align: center;
}

.feature-icon-wrapper {
    margin: 0 auto 20px auto; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- STYLE DES ICÔNES TEXTUELLES/EMOJIS --- */
.feature-icon {
    font-size: 60px; 
    line-height: 1;
    display: inline-block;
    /* Ombre portée pour l'effet lumineux et 3D */
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8)); 
}
/* Styles de glow personnalisés pour la différenciation (Optionnel) */
.feature-icon-news { filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.8)); }
.feature-icon-reviews { filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.8)); }
.feature-icon-world { filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8)); }
.feature-icon-inbox { filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.8)); }
.feature-icon-free { filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.8)); }


.feature-title {
    font-size: 24px; 
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 16px; 
    max-width: 300px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================================= */
/* --- MEDIA QUERIES (Points de rupture pour la réactivité) --- */
/* ========================================================= */

/* --- TABLETTE (1024px et moins) --- */
@media (max-width: 1024px) {
    
    /* Réduction de la taille de police */
    .section-main-title {
        font-size: 28px;
    }
    .section-description {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    /* La grille passe à 2 colonnes */
    .features-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 50px 30px;
    }
    
    .feature-title {
        font-size: 22px;
    }
}

/* --- MOBILE (768px et moins) --- */
@media (max-width: 768px) {
    .newsletter-features-section {
        padding: 60px 20px;
    }
    
    /* Réduction maximale du titre principal */
    .section-main-title {
        font-size: 22px;
    }
    .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* La grille passe à 1 colonne */
    .features-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    /* Réduction des icônes et du texte des blocs */
    .feature-icon {
        font-size: 50px; 
    }
    .feature-title {
        font-size: 20px;
    }
    .feature-text {
        font-size: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c30dfd0 *//* ========================================================= */
/* --- TRIAL CTA SECTION STYLES (JAUNE & ROUGE) --- */
/* ========================================================= */
.trial-cta-section {
    background-color: #0d0417; /* Fond sombre pour la section */
    padding: 80px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trial-cta-content-wrapper {
    max-width: 1200px;
    width: 100%;
    /* Dégradé sombre du conteneur */
    background: radial-gradient(at top left, #290847 0%, #13032b 100%); 
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
    color: #ffffff; /* Texte général blanc */
}

/* --- Icon Styling (Accentué en Jaune) --- */
.cta-icon {
    flex-shrink: 0; 
    width: 100px; 
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 215, 0, 0.15); /* Fond Jaune transparent */
    border-radius: 50%; 
    box-shadow: 0 0 15px #FFD700; /* Lumière jaune */
    border: 2px solid #FFD700; /* Bordure Jaune */
}

.popcorn-icon {
    width: 70px; 
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* --- Text Content Styling --- */
.cta-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: #FFD700; /* Titre en Jaune vif */
}

.cta-subtitle {
    font-size: 16px;
    margin: 0;
    color: #cccccc;
    line-height: 1.5;
}

/* --- Button Styling (Rouge Vif) --- */
.cta-button.learn-more {
    flex-shrink: 0; 
    background-color: #E50914; /* Rouge Vif (similaire à Netflix/Cinéma) */
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button.learn-more:hover {
    background-color: #ff0b18; /* Rouge légèrement plus clair au survol */
    transform: translateY(-2px);
}

/* ========================================================= */
/* --- MEDIA QUERIES (Mobile) --- */
/* ========================================================= */
@media (max-width: 992px) {
    .trial-cta-content-wrapper {
        flex-direction: column; 
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }

    .popcorn-icon {
        width: 50px;
        height: 50px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-button.learn-more {
        width: 100%; 
        max-width: 300px; 
    }
}

@media (max-width: 576px) {
    .trial-cta-section {
        padding: 40px 15px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-subtitle {
        font-size: 14px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fe1b55b *//* ========================================================= */
/* --- TRIAL CTA SECTION STYLES (JAUNE & ROUGE) --- */
/* ========================================================= */
.trial-cta-section {
    background-color: #0d0417; /* Fond sombre pour la section */
    padding: 80px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trial-cta-content-wrapper {
    max-width: 1200px;
    width: 100%;
    /* Dégradé sombre du conteneur */
    background: radial-gradient(at top left, #290847 0%, #13032b 100%); 
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
    color: #ffffff; /* Texte général blanc */
}

/* --- Icon Styling (Accentué en Jaune) --- */
.cta-icon {
    flex-shrink: 0; 
    width: 100px; 
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 215, 0, 0.15); /* Fond Jaune transparent */
    border-radius: 50%; 
    box-shadow: 0 0 15px #FFD700; /* Lumière jaune */
    border: 2px solid #FFD700; /* Bordure Jaune */
}

.popcorn-icon {
    width: 70px; 
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* --- Text Content Styling --- */
.cta-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: #FFD700; /* Titre en Jaune vif */
}

.cta-subtitle {
    font-size: 16px;
    margin: 0;
    color: #cccccc;
    line-height: 1.5;
}

/* --- Button Styling (Rouge Vif) --- */
.cta-button.learn-more {
    flex-shrink: 0; 
    background-color: #E50914; /* Rouge Vif (similaire à Netflix/Cinéma) */
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button.learn-more:hover {
    background-color: #ff0b18; /* Rouge légèrement plus clair au survol */
    transform: translateY(-2px);
}

/* ========================================================= */
/* --- MEDIA QUERIES (Mobile) --- */
/* ========================================================= */
@media (max-width: 992px) {
    .trial-cta-content-wrapper {
        flex-direction: column; 
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }

    .popcorn-icon {
        width: 50px;
        height: 50px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-button.learn-more {
        width: 100%; 
        max-width: 300px; 
    }
}

@media (max-width: 576px) {
    .trial-cta-section {
        padding: 40px 15px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-subtitle {
        font-size: 14px;
    }
}/* End custom CSS */