/* Modal À propos */
.about-modal {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Responsive pour petits écrans */
@media (max-width: 480px) {
    .about-modal {
        max-height: 85vh;
        width: 95%;
        padding: 1rem;
    }
    
    .about-section {
        margin-bottom: 20px;
    }
    
    .about-section h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .about-info {
        padding: 10px;
    }
    
    .about-row {
        flex-direction: column;
        gap: 4px;
        padding: 6px 0;
    }
    
    .about-copyright {
        font-size: 0.85rem;
        padding: 10px;
        line-height: 1.6;
    }
}

.about-section {
    margin-bottom: 30px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h3 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.about-info {
    background: var(--secondary-background);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.about-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-row:last-child {
    border-bottom: none;
}

.about-label {
    font-weight: 600;
    color: var(--text-color);
}

.about-value {
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.about-copyright {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    margin: 0;
    padding: 15px;
    background: var(--secondary-background);
    border-radius: 6px;
}

/* Mode sombre */
body.dark-mode .about-section h3 {
    color: var(--kiwi-primary);
    border-bottom-color: var(--kiwi-primary);
}

body.dark-mode .about-info {
    background-color: #242424;
    border-left-color: var(--kiwi-primary);
}

body.dark-mode .about-row {
    border-bottom-color: #333333;
}

body.dark-mode .about-label {
    color: #D0D0D0;
}

body.dark-mode .about-value {
    color: #999999;
}

body.dark-mode .about-copyright {
    background-color: #242424;
    color: #999999;
}
