.downloads-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 150px 20px 100px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--wfs-white);
}

.page-title .highlight {
    background: linear-gradient(135deg, #e5c738 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--wfs-light-gray);
}

.downloads-content {
    padding: 80px 20px;
    background: var(--wfs-darker);
}

.downloads-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Download Section */
.download-section {
    background: rgba(26, 26, 26, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    padding: 40px;
    margin-bottom: 60px;
}

.download-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.download-icon {
    flex-shrink: 0;
    padding: 15px;
    background: rgba(0, 173, 239, 0.1);
    border-radius: 12px;
}

.download-info h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.version {
    color: var(--wfs-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.description {
    color: var(--wfs-light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Download Details */
.download-details h3 {
    color: var(--wfs-white);
    font-size: 1.5rem;
    margin: 30px 0 20px;
}

.features-list,
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.features-list li,
.requirements-list li {
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid #FECC00;
    color: var(--wfs-light-gray);
    line-height: 1.6;
}

.features-list strong,
.requirements-list strong {
    color: #FECC00;
}

/* Download CTA */
.download-cta {
    margin-top: 40px;
    padding: 30px;
    background: rgba(254, 204, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(254, 204, 0, 0.2);
}

.availability-notice {
    margin-bottom: 30px;
}

.availability-notice h3 {
    color: var(--wfs-yellow);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.availability-notice p {
    color: var(--wfs-light-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.current-version {
    font-weight: 600;
    color: var(--wfs-white);
}

.download-cta .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #e5c738 0%, #f4d03f 100%);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 199, 56, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--wfs-yellow);
    border: 2px solid var(--wfs-yellow);
}

.btn-secondary:hover {
    background: rgba(229, 199, 56, 0.1);
    transform: translateY(-2px);
}

/* Resources Section */
.resources-section {
    margin-top: 60px;
}

.resources-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: rgba(26, 26, 26, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.resource-card:hover {
    background: rgba(229, 199, 56, 0.03);
    border-color: rgba(229, 199, 56, 0.3);
    transform: translateY(-5px);
}

.resource-icon {
    display: inline-block;
    padding: 20px;
    background: rgba(254, 204, 0, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--wfs-yellow);
}

.resource-card h3 {
    color: var(--wfs-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--wfs-light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    color: var(--wfs-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.resource-link:hover {
    color: #f4d03f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .downloads-content {
        padding: 40px 20px;
    }

    .download-section {
        padding: 25px;
    }

    .download-header {
        flex-direction: column;
        gap: 20px;
    }

    .download-info h2 {
        font-size: 1.5rem;
    }

    .download-cta .btn {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .features-list li,
    .requirements-list li {
        padding: 12px;
        font-size: 0.95rem;
    }
}
