/* Download Page Specific Styles */

/* Download Header */
.download-header {
    position: relative;
    padding: 150px 0 80px;
    background: #050a14;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.download-header .container {
    position: relative;
    z-index: 2;
}

.download-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Download Section */
.download-section {
    padding: 80px 0;
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Windows Download Card */
.download-card {
    background: rgba(10, 15, 25, 0.8);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 242, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.4);
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.os-icon {
    font-size: 5rem;
    color: #00a4ef; /* Windows Blue */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 164, 239, 0.4));
}

.version-badge {
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.download-card h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.sys-req {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 400px;
    text-align: left;
}

.sys-req li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sys-req li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 350px;
}

.historical-versions {
    margin-bottom: 20px;
}

.btn-text-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.file-info {
    font-size: 0.9rem;
    color: #666;
}

/* Other OS Notice */
.other-os-notice {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.other-os-notice h3 {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.os-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.os-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #555;
}

.os-item i {
    font-size: 2.5rem;
}

.os-item span {
    font-size: 0.9rem;
}

.other-os-notice p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .download-header {
        padding: 120px 0 50px;
    }
    
    .download-header h1 {
        font-size: 2.5rem;
    }
    
    .download-card {
        padding: 30px 20px;
    }
    
    .download-card h2 {
        font-size: 2rem;
    }
    
    .sys-req li {
        font-size: 1rem;
    }
}