.download-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
}

.demo-download, .full-download {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.download-stats {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 900px) {
    .download-options {
        flex-direction: row;
    }
    
    .demo-download, .full-download {
        flex: 1;
    }
}