/* Styles généraux */ * { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    }
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }
    a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s;
    }
    a:hover {
    color: #004499;
    }
    ul {
    list-style: none;
    }
    img {
    max-width: 100%;
    height: auto;
    }
    /* Header */
    header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    }
    header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    }
    .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    }
    nav ul {
    display: flex;
    }
    nav ul li {
    margin-left: 25px;
    }
    nav ul li a {
    color: #333;
    font-weight: 500;
    }
    nav ul li a:hover {
    color: #0066cc;
    }
    
    /* Language Switcher */
    .language-switcher {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .language-switcher span {
        color: #ccc;
        font-size: 14px;
    }
    
    .lang-btn {
        background: none;
        border: none;
        cursor: pointer;
        font-weight: 500;
        color: #666;
        padding: 0;
        font-family: inherit;
        font-size: 15px;
        transition: all 0.3s;
    }
    
    .lang-btn:hover {
        color: #0066cc;
    }
    
    .lang-btn.active {
        color: #0066cc;
        font-weight: 700;
        text-decoration: underline;
    }
    /* Hero Section */
    .hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    }
    .hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .hero-content {
    flex: 1;
    padding-right: 40px;
    margin-top: -160px;
    }
    .hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
    }
    .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    }
    .hero-image {
    flex: 1;
    }
    .hero-image img {
    max-width: 80%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    .cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center; /* Aligner les éléments verticalement */
}

.update-notification-link {
    text-decoration: none;
}

.update-badge {
    position: relative;
    width: 80px; /* Taille réduite */
    height: 80px; /* Taille réduite */
    background-color: #ff4d4d;
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 1);
    transform: scale(1);
    margin-left: 20px;
}

.update-badge::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed #ff4d4d;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.update-badge span {
    display: block;
    line-height: 1.2;
}

.update-badge .line1 {
    font-size: 12px;
}

.update-badge .line2 {
    font-size: 13px;
}

.update-badge .line3 {
    font-size: 12px;
    font-weight: 900;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(255, 77, 77, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
    .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    }
    .btn.primary {
    background-color: #0066cc;
    color: #fff;
    }
    .btn.primary:hover {
    background-color: #004499;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    }
    .btn.secondary {
    background-color: #fff;
    color: #0066cc;
    border: 2px solid #0066cc;
    }
    .btn.secondary:hover {
    background-color: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    }
    /* Download Section */
    .download {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
    }
    .download-title-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .update-container {
        position: relative;
        display: inline-block;
    }

    .tooltip {
        visibility: hidden;
        width: 220px;
        background-color: #f0f7ff; /* Fond bleu clair */
        color: #0052a3; /* Texte en bleu */
        text-align: center;
        border-radius: 8px;
        padding: 10px;
        position: absolute;
        z-index: 1;
        top: 115%; /* Afficher vers le bas */
        left: 50%;
        margin-left: -170px; /* Décaler vers la gauche */
        opacity: 0;
        transition: opacity 0.3s;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Arrière-plan ombré */
        border: 1px solid #b3d7ff;
    }

    .tooltip::after {
        content: "";
        position: absolute;
        bottom: 100%; /* Flèche vers le haut */
        left: 80%; /* Positionner la flèche vers la droite du tooltip */
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #f0f7ff transparent;
    }

    .update-container:hover .tooltip, .update-container:focus .tooltip {
        visibility: visible;
        opacity: 1;
    }

    .download h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    }
    .download p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
    }
    .download-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    }
    .download-option {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .download-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .download-option.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    }
    .download-option.disabled:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .download-icon {
    font-size: 36px;
    color: #0066cc;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .download-icon i:nth-child(2) {
    margin-top: 5px;
    font-size: 18px;
    }
    .download-info {
    text-align: left;
    }
    .download-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a1a1a;
    }
    .download-info p {
    font-size: 14px;
    margin-bottom: 0;
    color: #666;
    }
    
    /* Info icon styles */
    .info-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #0066cc;
    cursor: pointer;
    opacity: 0.85;
    transition: all 0.3s ease;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .info-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    }
    
    .download-option {
    position: relative;
    }
    
    /* Info tooltip styles */
    .info-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 10px;
    display: none;
    }
    
    .info-tooltip.show {
    display: block;
    animation: fadeInUp 0.3s ease;
    }
    
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    .info-tooltip .tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    }
    
    .info-tooltip .tooltip-header h3 {
    color: #0066cc;
    font-size: 16px;
    margin: 0;
    }
    
    .info-tooltip .tooltip-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .info-tooltip .tooltip-close:hover {
    color: #666;
    }
    
    .info-tooltip .tooltip-body {
    text-align: left;
    }
    
    .info-tooltip .tooltip-intro {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
    }
    
    .info-tooltip .tooltip-steps {
    margin-left: 20px;
    margin-bottom: 15px;
    }
    
    .info-tooltip .tooltip-steps li {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 13px;
    color: #555;
    }
    
    .info-tooltip .tooltip-alternative {
    background-color: #f0f7ff;
    border-left: 3px solid #0066cc;
    padding: 12px;
    border-radius: 0 5px 5px 0;
    font-size: 13px;
    }
    
    .info-tooltip .web-version-link {
    color: #0066cc;
    font-weight: bold;
    text-decoration: underline;
    }
    
    .info-tooltip .web-version-link:hover {
    color: #004499;
    }
    /* Features Section */
    .features {
    padding: 80px 0;
    background-color: #f5f7fa;
    }
    .features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
    }
    .feature-grid {
    display: grid;
    /* Réduire la taille minimale des cards */
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    gap: 5px; /* Réduire l'espace entre les cards */
    }
    .feature-card {
    background-color: #fff;
    /* Réduire le padding pour diminuer la taille */
    padding: 1px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    }
    .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .feature-icon {
    font-size: 10px; /* Réduire la taille de l'icône */
    color: #0066cc;
    margin-bottom: 5px; /* Réduire la marge */
    }
    .feature-card h3 {
    font-size: 12px; /* Réduire la taille du titre */
    margin-bottom: 10px;
    color: #1a1a1a;
    }
    .feature-card p {
    color: #666;
    font-size: 10px; /* Réduire la taille du texte */
    }
    /* About Section */
    .about {
    padding: 80px 0;
    background-color: #fff;
    }
    .about .container {
    display: flex;
    align-items: center;
    gap: 50px;
    }
    .about-content {
    flex: 1.2;
    }
    .about-image {
    flex: 0.8;
    text-align: center;
    }
    .about-image img {
    max-width: 80%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    .about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    }
    .about-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    }
    .important-notice {
    background-color: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    }
    .important-notice h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 18px;
    }
    .credentials {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    }
    .credentials li {
    margin-bottom: 10px;
    }
    /* Nouvelle section features-about */
    .features-about {
    padding: 80px 0;
    background-color: #f9fafc;
    }
    .features-about-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    }
    .features-column, .about-column, .login-image-column {
    flex: 1;
    }
    .login-image-column img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    margin-top: 50px; /* Aligne l'image avec le contenu */
    }
    /* Footer */
    footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    }
    .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    }
    .footer-logo, .footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    }
    .footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    }
    .footer-logo p {
    color: #aaa;
    font-size: 14px;
    }
    .footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    }
    .footer-links ul li {
    margin-bottom: 10px;
    }
    .footer-links ul li a {
    color: #aaa;
    transition: color 0.3s;
    }
    .footer-links ul li a:hover {
    color: #fff;
    }
    .footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
    }
    .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    }
    .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
    }
    .social-links a:hover {
    background-color: #0066cc;
    transform: translateY(-3px);
    }
    /* Responsive Design */
    @media (max-width: 992px) {
    .hero .container, .about .container {
    flex-direction: column;
    }
 
    .hero-content, .about-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .features-about-grid {
        flex-direction: column;
    }
    
    .login-image-column img {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
header .container {
flex-direction: column;
}
.logo {
    margin-bottom: 15px;
}

nav ul {
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 5px 10px;
}

.hero-content h1 {
    font-size: 32px;
}

.hero-content {
    margin-top: 0;
    padding-right: 0;
    margin-bottom: 30px;
}

.download-options {
    flex-direction: column;
    align-items: center;
}

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

.footer-content {
    flex-direction: column;
}
}
/* Pour la section features-about */
.features-about .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.features-about .feature-card {
    padding: 15px;
}

.features-about .feature-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.features-about .feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.features-about .feature-card p {
    font-size: 12px;
    line-height: 1.4;
}

/* Style pour les identifiants de test */
.credentials {
    font-size: 12px; /* Taille de police réduite */
    line-height: 1.3; /* Hauteur de ligne réduite */
    margin-top: 10px;
    padding-left: 15px; /* Réduire l'indentation de la liste */
}

.credentials li {
    margin-bottom: 4px; /* Espace réduit entre les éléments */
}

.credentials strong {
    font-size: 12px; /* Taille réduite pour les labels */
}

/* Style pour le paragraphe d'introduction aux identifiants */
.about-column p:last-of-type {
    font-size: 13px;
    margin-bottom: 5px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-link i {
    margin-right: 8px;
    font-size: 16px;
}

.support-link:hover {
    color: #4338ca;
    text-decoration: underline;
}

/* Style pour le lien PayPal */
.paypal-link {
    display: flex;
    align-items: center;
    margin-top: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.paypal-link:hover {
    opacity: 0.8;
}

.paypal-text {
    display: flex;
    margin-right: 8px;
}

.paypal-text-blue {
    color: #253B80;
    margin-right: 4px;
}

.paypal-text-dark-blue {
    color: #179BD7;
}

.paypal-logo {
    width: 60px;
    height: 15px;
}

/* Amélioration des liens sociaux */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-links a i {
    margin-right: 5px;
}

.social-links a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.social-links a[href*="upwork"] {
    color: #6fda44;
}

.social-links a[href*="upwork"]:hover {
    color: #5dc937;
}

.social-links a[href*="facebook"] {
    color: #1877F2;
}

.social-links a[href*="facebook"]:hover {
    color: #166fe5;
}

/* Styles pour les parties colorées des textes */
.upw-highlight, .port-highlight {
    color: #6fda44;
    font-weight: bold;
}

/* Style pour les badges des stores */
.store-badge {
    display: block;
}

/* Style spécifique pour le badge Google Play */
.google-play-badge {
    height: 25px; /* Force la hauteur exacte */
    width: auto; /* Maintient le ratio d'aspect */
    margin-top: 3px; /* Augmente l'espace entre l'icône et le badge */
}

/* Style spécifique pour le badge App Store */
.app-store-badge {
    max-height: 30px;
    margin-top: 2px; /* Espace légèrement plus grand pour le badge App Store */
}

/* Ajustement pour la section de téléchargement */
.download-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Réduire l'espace dans les cards */
.download-option {
    padding: 5px 20px; /* Réduire le padding (valeur originale probablement 20px) */
}

.feature-card {
    padding: 15px; /* Réduire le padding (si nécessaire, ajustez selon vos préférences) */
}

/* Pour les écrans mobiles */
@media (max-width: 768px) {
    .google-play-badge {
        max-height: 35px;
    }
    
    .app-store-badge {
        max-height: 25px;
    }
}

/* Réduire la taille du texte de description dans les options de téléchargement */
.download-description {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    overflow: hidden;
    text-overflow: ellipsis;
}
