.gy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 23, 26, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 9999;
}
.gy-modal-overlay.gy-modal-open {
    opacity: 1;
    pointer-events: auto;
}
.gy-modal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 380px;
    width: 92%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(8px);
    transition: transform 0.18s ease;
}
.gy-modal-open .gy-modal-card {
    transform: translateY(0);
}
.gy-modal-icon {
    margin: 0 auto 12px;
    width: 40px;
    height: 40px;
}
.gy-modal-title {
    margin: 0 0 8px;
    font-size: 18px;
    color: #14171a;
}
.gy-modal-message {
    margin: 0 0 20px;
    font-size: 14px;
    color: #657786;
    line-height: 1.5;
}
.gy-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.gy-modal-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.gy-modal-btn-primary {
    background: linear-gradient(90deg, #6364ff, #00cc99);
    color: #ffffff;
}
.gy-modal-btn-secondary {
    background: #f5f5ff;
    color: #6364ff;
}
.gy-modal-btn:disabled {
    opacity: 0.6;
    cursor: default;
}