@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');


:root {
    --background-color: #121316;
    --text-color: #E6EDF3;
    --primary-color: #0089CA;
    --dark-bg: #010409;
    --card-bg: #161B22;
    --transition: all 0.3s ease;
    --primary: #58A6FF;
    --secondary: #2c60ad;
    --accent: #79C0FF;
    --background: #0D1117;
    --text: #E6EDF3;
    --text-secondary: #8B949E;
    --gradient: linear-gradient(135deg, #1F6FEB, #79C0FF);
    --nav-height: 80px;
    --accent-dark: #2963b9;
    --ms-gredient-color: linear-gradient(143deg, #ff543e 0%, #ff0065 100%);
}


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

html {
    scroll-behavior: smooth;
    background-color: var(--background-color);
    color: var(--text-color);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

/* Navigation Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--background-color);
}

nav {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/*.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
}*/

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* ajuste la hauteur selon ton design */
    width: auto;
    display: block;
}


.logo a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-text {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-color);
}

.logo-text.accent {
    background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* pour Firefox */
    text-fill-color: transparent;
}


.nav-links {
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease-in-out;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Menu mobile styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-color);
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--text-color);
        transition: all 0.3s ease;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        bottom: -8px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background-color);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.2rem;
        padding: 10px;
        width: 100%;
        text-align: center;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
}

/* Channels Preview */
.channels-preview {
    padding: 1rem 1rem;
    background-color: var(--background-color);
    overflow: hidden;
}

.channels-preview h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.channels-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.channels-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.channel-item {
    flex-shrink: 0;
    padding: 0.5rem;
}

.channel-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.channel-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.channels-track:hover {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    .channel-logo {
        height: 40px;
    }
}

/* VOD Section */
.vod-preview {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    overflow: hidden;
}

.vod-preview h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.vod-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.vod-track {
    display: flex;
    gap: 2rem;
    animation: scroll-reverse 35s linear infinite;
    width: max-content;
}

.vod-item {
    flex-shrink: 0;
    padding: 0.5rem;
}

.vod-poster {
    height: 200px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vod-poster:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.channels-track:hover,
.vod-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .channels-preview,
    .vod-preview {
        padding: 2rem 1rem;
    }

    .channels-preview h2,
    .vod-preview h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .channel-logo {
        height: 40px;
    }

    .vod-poster {
        height: 150px;
    }
}

/* Buttons */
.cta-button {
    background-image: var(--ms-gredient-color);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 111, 235, 0.12);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/background/bg-min.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    padding: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: var(--background-color);
    text-align: center;
}

.about h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.main-description {
    color: white;
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Feature Sections */
.feature-section {
    padding: 6rem 2rem;
    background-color: var(----background-color);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .feature-container {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .feature-text p {
        text-align: center;
    }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;

    background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.feature-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

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

    .feature-card h3 {
        font-size: 1.25rem;
    }
}


/* Why Us Section & Carousel */
.why-us {
    padding: 6rem 2rem;
    background-color: var(--background-color);
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-items {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 300px;
    padding: 2rem;
    text-align: center;
    background: var(--card-bg);
    margin: 0 1rem;
    border-radius: 15px;
    flex: 1;
}

.carousel-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.carousel-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-nav button {
    background: var(--card-bg);
    border: none;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav button:hover {
    background: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background-color: var(--background-color);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: white;
}

.pricing-cards {
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.price-card {
    text-align: center;
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.price-card.featured {
    background-image: var(--ms-gredient-color);
    color: var(--text-color);
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 4px 12px rgba(255, 84, 62, 0.1),
        0 8px 24px rgba(255, 0, 101, 0.15);
}

.price-card.featured:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 4px 12px rgba(255, 84, 62, 0.15),
        0 8px 28px rgba(255, 0, 101, 0.2);
}

.pack-name {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(143deg, #ff543e 0%, #ff0065 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.link-href{
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
    background: linear-gradient(143deg, #ff543e 0%, #ff0065 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.price-card.featured .pack-name {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
}

.popular-tag {
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: #991B1B;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}


.price-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 500;
}

.price {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;

    background: linear-gradient(143deg, #ff543e 0%, #ff0065 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.current-price::after {
    content: "€";
    font-size: 1.75rem;
    font-weight: 500;
    vertical-align: top;
    margin-left: 2px;
    position: relative;
    top: 5px;

    /* Applique aussi le dégradé à l’euro */
    background: linear-gradient(143deg, #ff543e 0%, #ff0065 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Sauf pour la carte featured : couleur blanche */
.price-card.featured .current-price,
.price-card.featured .current-price::after {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.price-card ul li {
    margin-bottom: 1rem;
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price-card .cta-button {
    width: 100%;
    background-image: var(--ms-gredient-color);
    color: #f1f1f1;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.price-card .cta-button:hover {
    background: #e6004f; /* rouge/rose foncé */
    transform: translateY(-2px);
    color: #ffffff;
}



.price-card.featured .cta-button {
    background: white;
    color: var(--card-bg);
}

.price-card.featured .cta-button:hover {
    background: #161B22;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: #ffffff;
}

@media (max-width: 1400px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--background-color);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.faq-section h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
}

/* World Map Section */
.world-map {
    padding: 6rem 2rem;
    background-color: var(--background-color);
    text-align: center;
    position: relative;
}

.world-map h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.world-map p {
    color: white;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    /*background: var(--primary-color);*/
     background-image: var(--ms-gredient-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 rgba(255, 75, 38, 0.4);
    animation: pulse 2s infinite;
}

.map-point::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*background: var(--primary-color);*/
     background-image: var(--ms-gredient-color);
    opacity: 0.6;
    transform: scale(1);
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 75, 38, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 75, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 75, 38, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Footer */
footer {
    color: var(--text-color);
    padding: 6rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #ff543e,
        #ff0065,
        transparent
    );
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 4rem;
    position: relative;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
     background-image: var(--ms-gredient-color);
    border-radius: 2px;
}

.footer-section p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--text-color);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-section ul li a:hover {
    background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--ms-gredient-color);
    opacity: 0.3;
}

.footer-bottom p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        gap: 3rem;
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 4rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.5rem 1.5rem;
        margin-top: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }

    .footer-section ul li a:hover {
        transform: translateX(0) translateY(-2px);
    }

    .footer-bottom {
        margin-top: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Pages */
.legal-page {
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    padding: 120px 0 60px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
     background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;



    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-content section {
    margin-bottom: 3rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: none;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem;

    /* Dégradé */
    background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Pour compatibilité */
    color: transparent; /* fallback */
}


@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }

    .legal-content {
        padding: 0 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .legal-content section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }
}

/* VOD Section */
.vod-preview {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    overflow: hidden;
}

.vod-preview h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.vod-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.vod-track {
    display: flex;
    gap: 2rem;
    animation: scroll-reverse 25s linear infinite;
    width: max-content;
    will-change: transform;
}

.vod-item {
    flex-shrink: 0;
    padding: 0.5rem;
}

.vod-poster {
    height: 450px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vod-poster:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .vod-poster {
        height: 200px;
    }
}

/* Hero Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh; /* Ajustable */
    padding: 6rem 2rem;
    overflow: hidden;
    text-align: center;
}

/* Centrage du conteneur */
.hero-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2.8rem;
    color: var(--background);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-container {
    display: flex;
    justify-content: center; /* Centre les éléments horizontalement */
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: baseline;
}

.stat-unit {
    font-size: 2rem;
    margin-left: 4px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}


.product-details {
    padding: 6rem 2rem;
    background-color: var(--background-color);
    color: white;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 2rem;
}

/* titre avec dégradé */
.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-price {
    font-size: 3rem;
    color: white;
    margin: 1.5rem 0;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* savings avec gradient */
.savings {
    display: inline-block;
    background: var(--ms-gredient-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    margin-left: 1rem;
}

.best-value {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-description {
    margin: 2rem 0;
    line-height: 1.6;
}

.features-list {
    margin: 2rem 0;
}

.features-list li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* icones avec gradient */
.features-list i {
    background: var(--ms-gredient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* bouton avec gradient */
.buy-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: var(--ms-gredient-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 2rem;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 75, 38, 0.4);
}

@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }
}


