.downloads {
    padding: 4rem 2rem;
    background: var(--Window);
    margin: 4rem 0;
}

.downloads h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--WindowText);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    background: var(--Window);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 111, 214, 0.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 111, 214, 0.15);
    border-color: rgba(0, 111, 214, 0.2);
}


.download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 111, 214, 0.1), rgba(0, 111, 214, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--linkColor);
}

.download-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--WindowText);
}

.download-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--WindowText);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}


.download-button {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 280px;
    background: var(--WindowText) !important;
    color: var(--Window) !important;
}
.download-button:hover {
    background: var(--linkColor) !important;
    color: white !important;
}

.system-note {
    font-size: 0.9rem !important;
    opacity: 0.6 !important;
    margin: 0 !important;
    font-style: italic;
}

.license-info {
    padding: 4rem 2rem;
    background: var(--Window);
    margin: 4rem 0;
}

.license-info h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--WindowText);
}

.license-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--Window);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 111, 214, 0.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.license-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--WindowText);
}

.license-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--WindowText);
    margin-bottom: 1.5rem;
}

.license-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.license-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--WindowText);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.license-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--linkColor);
    font-weight: 600;
    font-size: 1.2rem;
}

.license-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 111, 214, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--linkColor);
}

.license-note h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--WindowText);
}

.license-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.purchase-cta {
    padding: 4rem 2rem;
    background: var(--Window);
    margin: 4rem 0;
    text-align: center;
}

.purchase-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--WindowText);
}

.purchase-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--WindowText);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-button.secondary {
    background: transparent;
    color: var(--linkColor);
    border: 2px solid var(--linkColor);
    box-shadow: none;
}

.action-button.secondary:hover {
    background: var(--linkColor);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 111, 214, 0.3);
}

a.buy {
    box-sizing: border-box;
    border: none;
    text-decoration: inherit;
    display: inline-flex;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    background: linear-gradient(135deg, var(--linkColor), rgba(0, 111, 214, 0.8));
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 111, 214, 0.2);
    position: relative;
    overflow: hidden;
    gap: 0.75rem;
}

a.buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 111, 214, 0.3);
    text-decoration: none;
}

a.buy:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

a.buy:hover:before {
    left: 100%;
}

a.buy img {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 890px) {
    .intro, .downloads, .license-info, .purchase-cta {
        padding: 3rem 2rem;
        margin: 2rem 1rem;
        border-radius: 20px;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
    
    .downloads h2, .license-info h2, .purchase-cta h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-card {
        padding: 2rem 1.5rem;
    }
    
    .license-card {
        padding: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .intro, .downloads, .license-info, .purchase-cta {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 16px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .downloads h2, .license-info h2, .purchase-cta h2 {
        font-size: 1.75rem;
    }
    
    .download-card h3 {
        font-size: 1.5rem;
    }
    
    .download-card p, .license-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .action-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Changelog Styles */
.changelog {
    padding: 4rem 2rem;
    background: var(--Window);
    margin: 4rem 0;
}

.changelog h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--WindowText);
}

.changelog > p {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(var(--WindowText-rgb), 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.changelog-entry {
    background: var(--Window);
    border: 1px solid rgba(0, 111, 214, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.changelog-entry h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--WindowText);
    margin: 0;
}

.changelog-date {
    font-size: 0.9rem;
    color: rgba(var(--WindowText-rgb), 0.6);
    font-weight: 500;
}

.changelog-summary {
    font-size: 1.1rem;
    color: rgba(var(--WindowText-rgb), 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.changelog-changes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-changes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--WindowText);
    line-height: 1.5;
}

.changelog-changes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(0, 111, 214, 0.8);
    font-weight: bold;
}

/* Mobile Responsive for Changelog */
@media (max-width: 768px) {
    .changelog {
        padding: 3rem 1rem;
    }
    
    .changelog-entry {
        padding: 1.5rem;
    }
    
    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .changelog-entry h3 {
        font-size: 1.3rem;
    }
}