.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: linear-gradient(to bottom, rgba(30, 34, 61, 1), rgba(19, 22, 40, 1));
    padding: 30px;
    border-radius: 24px;
    position: relative;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px 10px;
}

.modal-content h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    padding-right: 20px;
}

.modal-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #000, #3b82f6);
    color: white;
    text-align: center;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 18px;
}

.modal-button:hover {
    background: linear-gradient(to right, #000, #2563eb);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.hidden-modal {
    display: none !important;
} 