.download-page {
    text-align: center;
}

.download-box {
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    max-width: 600px;
    margin: 50px auto;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

.download-box h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal {
    display: none; 
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    max-width: 450px;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
    animation: slideIn 0.5s ease-out;
}

.modal-content h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.modal-content p {
    color: var(--text-color-dark);
    font-size: 1.2em;
    margin-bottom: 25px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--text-color-dark);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--primary-color);
    text-decoration: none;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}