/* Mise à jour du body - fond noir de base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-color: #000000;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh + 200px);
    background-image: url('https://www.p-s-i.com/wp-content/uploads/2025/07/Landing-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
}

.support-section {
    position: relative;
    z-index: 10;
    padding: 0 2rem 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.p-s-i.com/wp-content/uploads/2025/07/Footer-scaled.jpg');
    background-size: cover;
    background-position: center calc(0% - 30px);
    background-repeat: no-repeat;
    z-index: -1;
}

/* Overlay pour créer la transition du noir vers l'image */
.support-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(50% - 50px);
    background: black;
    z-index: 0;
}

.support-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.support-card {
    background: rgba(20, 25, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gradient-blue1), var(--gradient-blue2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.support-description-container {
    width: 100%;
    text-align: center;

}

.support-description {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.support-button-container {
    display: flex;
    justify-content: right;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--blue-color));
    color: var(--text-light);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-icon {
    height: 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-section {
        padding: 80px 1rem;
        min-height: 350px;
    }
    
    .support-card {
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    .support-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .support-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .support-description br {
        display: none;
    }
    
    .support-button {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .support-section {
        padding: 60px 1rem;
        min-height: 300px;
    }
    
    .support-card {
        padding: 30px 20px;
    }
    
    .support-title {
        font-size: 1.8rem;
    }
    
    .support-description {
        font-size: 0.9rem;
    }
    
    .support-button {
        font-size: 0.85rem;
        gap: 8px;
    }
}