/* Page de téléchargement */
.download-page {
    max-width: 900px;
    margin: 0 auto;
}

.download-hero {
    text-align: center;
    margin-bottom: 40px;
}

.download-hero h1 {
    font-size: 2.5rem;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.version-info {
    color: #666;
    font-size: 1.1rem;
}

.download-card {
    background: transparent;
    border: none;
    padding: 40px 0;
    box-shadow: none;
}

.download-icon {
    text-align: center;
    margin-bottom: 30px;
}

.download-icon img {
    width: 120px;
    height: 120px;
}

.download-info h2 {
    color: #3a3a3a;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.download-info > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: transparent;
    border-radius: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #0d47a1;
    flex-shrink: 0;
}

.download-button-container {
    text-align: center;
    margin: 40px 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #222;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: none;
    border: 2px solid #ddd;
    flex-direction: row;
}

.download-size {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.download-button:hover {
    background: #f0f0f0;
    border-color: #ccc;
    color: #111;
}

.windows-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.system-requirements,
.installation-steps,
.support-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.system-requirements h3,
.installation-steps h3,
.support-section h3 {
    color: #3a3a3a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.system-requirements ul {
    list-style: none;
    padding: 0;
}

.system-requirements li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
}

.installation-steps ol {
    padding-left: 25px;
}

.installation-steps li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.installation-steps code {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: darkblue;
}

.support-section p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.discord-support-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 0;
    transition: transform 0.3s;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.discord-support-image:hover {
    transform: scale(1.02);
}

.discord-link {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: none;
    border: 2px solid #5865F2;
}

.discord-link:hover {
    background: #4752C4;
    border-color: #4752C4;
}

/* Responsive */
@media (max-width: 768px) {
    .download-card {
        padding: 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .download-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .download-text strong {
        font-size: 1.1rem;
    }
    
    .download-hero h1 {
        font-size: 2rem;
    }
}

/* Statistiques de téléchargement */
.download-stats {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stats-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.stats-icon {
    width: 20px;
    height: 20px;
    color: #0d47a1;
}

/* Section notes de version */
.release-notes-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.release-notes-section h3 {
    color: #3a3a3a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.release-notes-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.github-link {
    color: #0366d6;
    text-decoration: underline;
}

.github-link:hover {
    color: #0256b8;
}
