/* Download Page Styles */
.download-main {
    padding: 100px 0;
    background-image: url('../images/backgruond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.download-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}



.download-section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.download-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.download-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.download-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9));
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 10px;
}

.download-icon i {
    font-size: 2.5rem;
    color: var(--dark-bg);
}

.download-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-info {
    text-align: center;
    flex-grow: 1;
}

.download-card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.download-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.download-meta span {
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.download-actions {
    margin-top: auto;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #f1d77e);
    color: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-download i {
    font-size: 1.2rem;
}

/* System Requirements */
.system-requirements {
    margin-bottom: 50px;
}

.system-requirements h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirements-box {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9));
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.requirements-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.requirements-box ul {
    list-style: none;
    padding: 0;
}

.requirements-box ul li {
    color: var(--text-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.requirements-box ul li:last-child {
    border-bottom: none;
}

.requirements-box ul li strong {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Installation Guide */
.installation-guide {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9));
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.installation-guide h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.installation-guide ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.installation-guide ol li {
    color: var(--text-light);
    padding: 12px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.installation-guide ol li strong {
    color: var(--primary-color);
}

.guide-note {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    color: #f1d77e;
    line-height: 1.6;
    text-align: center;
}

.guide-note strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .download-title {
        font-size: 2rem;
    }

    .download-subtitle {
        font-size: 1rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .installation-guide {
        padding: 30px 20px;
    }

    .installation-guide h2 {
        font-size: 1.5rem;
    }
}
