/* Clean, Professional Download Page Styles */
.download-container {
    max-width: 1200px;
    margin: 40px auto;
    color: #e0e0e0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.section-header .subtitle {
    color: #aaa;
    font-size: 1.1rem;
}

/* Download Grid Layout */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.download-item {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 5px;
    padding: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.download-title h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
}

.version {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.download-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.download-description {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.download-button {
    display: block;
    background-color: #dc3545;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
    font-weight: 500;
}

.download-button:hover {
    background-color: #c82333;
    color: white;
}

/* System Requirements */
.requirements-section, 
.installation-section {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
}

.requirements-section h2,
.installation-section h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.requirements-column h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.requirements-list li span {
    font-weight: bold;
    color: #aaa;
    margin-right: 5px;
}

/* Installation Steps */
.installation-steps {
    padding-left: 20px;
    margin: 0;
}

.installation-steps li {
    padding: 10px 0;
    color: #ddd;
}

.installation-steps a {
    color: #dc3545;
    text-decoration: none;
}

.installation-steps a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-column:first-child {
        margin-bottom: 20px;
    }
}