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

.modal-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 35px 30px;
    border-radius: 28px;
    text-align: center;
    min-width: 340px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), inset 0 0 15px rgba(255,255,255,0.5);
    animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--glass-text);
}

.modal-content p {
    color: var(--glass-text-secondary);
    margin-bottom: 16px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.modal-buttons button {
    min-width: 120px;
}