/* Styles spécifiques à la page Download */
.download-hero {
    background-image: url('images/download-bg.svg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0; /* Suppression de la marge pour s'adapter à la navbar verticale */
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.7));
}

.download-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.download-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.download-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.download-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-button {
    text-align: center;
    margin: 40px 0;
}

.btn-download-main {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(227, 31, 31, 0.3);
}

.btn-download-main:hover {
    background-color: #c81212;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 31, 31, 0.4);
}

.btn-download-main i {
    margin-right: 10px;
}

.steps-container {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: white;
    font-size: 1.2rem;
}

.step-content p {
    color: #aaa;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.step-content ul {
    margin: 10px 0;
    padding-left: 20px;
    color: #aaa;
}

.step-content ul li {
    margin-bottom: 8px;
}

.step-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.step-content a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.step-content code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
}

.requirements-section {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.requirements-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.req-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.req-card.minimum {
    border-top: 3px solid #ff9800;
}

.req-card.recommended {
    border-top: 3px solid #4CAF50;
}

.req-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
}

.req-card h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.req-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #aaa;
}

.req-card ul li:last-child {
    border-bottom: none;
}

.req-card ul li strong {
    color: white;
    margin-right: 5px;
    display: inline-block;
    min-width: 100px;
}

.troubleshooting {
    margin-top: 40px;
    text-align: center;
}

.troubleshooting h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.troubleshooting p {
    color: #aaa;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.contact-link i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .download-hero-title {
        font-size: 2.5rem;
    }
    
    .download-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .steps-container {
        padding: 20px;
    }
    
    .step {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .download-hero-title {
        font-size: 2rem;
    }
    
    .download-hero-subtitle {
        font-size: 1rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .contact-links {
        flex-direction: column;
    }
}