:root {
    --page-id: "download";
}

.download-section--page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    margin-top: -10px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* --- BLOCKS --- */
.download-block {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.block-header h2 {
    color: var(--gold-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.version-badge {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-highlight);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* --- CLIENT GRID --- */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.download-img-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    gap: 15px;
    min-height: 160px;
}

.download-img-btn:hover {
    background: rgba(30, 30, 30, 0.6);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.download-img-btn img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    transition: 0.3s;
}

.download-img-btn:hover img {
    transform: scale(1.1);
}

.download-img-btn .btn-label {
    color: #e0e0e0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.download-img-btn:hover .btn-label {
    color: var(--gold-primary);
}

/* --- REQUIREMENTS --- */
.req-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .req-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.req-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.req-col.recommended h3 {
    border-color: var(--gold-primary);
    color: var(--gold-highlight);
}

.req-col ul {
    list-style: none;
}

.req-col li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.req-col li strong {
    color: #fff;
    margin-right: 10px;
}

/* --- DRIVERS --- */
.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.driver-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 160px;
    text-decoration: none;
    gap: 15px;
}

.driver-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.driver-icon {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.driver-icon img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: 0.3s;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.7;
}

.driver-card:hover .driver-icon img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.driver-card span {
    color: #ccc;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: 0.3s;
}

.driver-card:hover span {
    color: #fff;
}
