/* Modern Modal Popup Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 34, 54, 0.65);
    backdrop-filter: blur(2px);
    overflow: auto;
    transition: background 0.3s;
}

.modal-content {
    background: #fff;
    color: #222;
    margin: 0 auto;
    margin-top: 8vh;
    padding: 36px 32px 32px 32px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: none;
    width: 100%;
    max-width: 400px;
    position: relative;
    text-align: center;
    font-family: 'Inter', 'Be Vietnam', Arial, sans-serif;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    color: #888;
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    outline: none;
}
.close:hover,
.close:focus {
    color: #d32f2f;
    text-decoration: none;
}

.modal-question {
    text-align: center;
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 1.18rem;
    font-weight: 500;
    color: #222;
    letter-spacing: 0.01em;
}

.modal-content .themeholy-btn {
    display: block;
    width: 100%;
    margin: 0 auto 16px auto;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #0056b3 0%, #007bff 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.modal-content .themeholy-btn:hover {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 4px 16px rgba(0,123,255,0.15);
    color: #fff;
}

.modal-content .themeholy-btn:last-child {
    margin-bottom: 0;
    background: linear-gradient(90deg, #6c757d 0%, #495057 100%);
}
.modal-content .themeholy-btn:last-child:hover {
    background: linear-gradient(90deg, #495057 0%, #6c757d 100%);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 18px 8px 18px 8px;
        max-width: 95vw;
    }
    .modal-question {
        font-size: 1rem;
    }
}
