/* public/css/download_page.css */

.download-hero-section {
    padding: 80px 0;
    background: url('../images/download/hero_dl_background.jpg') center center/cover no-repeat fixed; /* effet parallax */
    color: #fff;
    text-align: center;
    position: relative;
}
.download-hero-section::before { /* Superposition sombre */
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.download-hero-section .section-container { 
position: relative; 
z-index: 2; }
.download-hero-section .section-title { color: #fff; }
.download-hero-section .section-subtitle { font-size: 1.1rem; color: #ccc; max-width: 700px; margin: 0 auto 20px auto; }
.download-hero-section .file-info { margin-bottom: 30px; color: #aaa; }
.download-hero-section .file-info span { margin: 0 10px; }

.download-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.download-hero-section .download-button {
    display: inline-block;
    background-color: #2ECC71;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.download-hero-section .download-button:hover { background-color: #27ae60; transform: translateY(-3px); }
.download-hero-section .download-button .provider-name { display: block; font-size: 1.2rem; font-weight: 600; }
.download-hero-section .download-button .action-text { display: block; font-size: 0.8rem; opacity: 0.8; }

.requirements-section { 
	background-color: #1c1c1c; 
    padding: 20px 0; /* Un peu plus de padding vertical que 10px pour mieux respirer */
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border: 1px solid #3a3a3a;
    border-radius: 0 0 5px 5px;
	border-top: none;


}
.requirements-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.requirement-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    flex: 1;
    max-width: 400px;
}
.requirement-card.recommended { border-left: 4px solid #2ECC71; }
.requirement-card h3 { margin-top: 0; color: #fff; }
.requirement-card ul { list-style: none; padding: 0; margin: 0; }
.requirement-card li { padding: 8px 0; border-bottom: 1px solid #3a3a3a; color: #b0b0b0; }
.requirement-card li:last-child { border-bottom: none; }
.requirement-card strong { color: #fff; }

.patches-section { 
background-color: #1f1f1f; 
    padding: 20px 0; /* Un peu plus de padding vertical que 10px pour mieux respirer */
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border: 1px solid #3a3a3a;
    border-radius: 5px;
	margin-top: 20px;
}
.patches-list { max-width: 800px; margin: 0 auto; }
.patch-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.patch-item h4, .patch-item p { margin: 0; flex-basis: 100%; margin-bottom: 10px; }
.patch-item h4 { color: #fff; }
.patch-item p { color: #b0b0b0; font-size: 0.9rem; }
.patch-links { flex-basis: 100%; text-align: right; }
.patch-links .btn { margin-left: 10px; }