.pp-notify-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pp-notify-overlay.pp-notify-visible {
    opacity: 1;
}

.pp-notify-modal {
    width: 100%;
    max-width: 22rem;
    background: #181A20;
    border: 1px solid rgba(229, 184, 66, 0.35);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.2s ease;
}

.pp-notify-overlay.pp-notify-visible .pp-notify-modal {
    transform: translateY(0) scale(1);
}

.pp-notify-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pp-notify-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pp-notify-icon.success { background: rgba(229, 184, 66, 0.15); color: #E5B842; }
.pp-notify-icon.error { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.pp-notify-icon.warning { background: rgba(234, 179, 8, 0.15); color: #facc15; }
.pp-notify-icon.info { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

.pp-notify-title {
    font-family: 'Noto Serif Lao', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pp-notify-message {
    font-size: 0.8125rem;
    color: #9EA4B0;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.pp-notify-actions {
    display: flex;
    gap: 0.75rem;
}

.pp-notify-actions button {
    flex: 1;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.pp-notify-btn-primary {
    background: linear-gradient(135deg, #F3D279 0%, #E5B842 100%);
    color: #121318;
}

.pp-notify-btn-primary:hover {
    box-shadow: 0 8px 25px -5px rgba(229, 184, 66, 0.4);
}

.pp-notify-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #2E323E !important;
}

.pp-notify-btn-secondary:hover {
    border-color: rgba(229, 184, 66, 0.5) !important;
}

.pp-notify-toast-container {
    position: fixed;
    z-index: 9999;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

@media (min-width: 640px) {
    .pp-notify-toast-container {
        left: auto;
        max-width: 22rem;
    }
}

.pp-notify-toast {
    pointer-events: auto;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    background: #22252E;
    border: 1px solid #2E323E;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: ppNotifySlideIn 0.3s ease;
}

.pp-notify-toast.success { border-left: 3px solid #E5B842; }
.pp-notify-toast.error { border-left: 3px solid #f87171; }
.pp-notify-toast.warning { border-left: 3px solid #facc15; }
.pp-notify-toast.info { border-left: 3px solid #60a5fa; }

.pp-notify-toast.pp-notify-toast-out {
    animation: ppNotifySlideOut 0.25s ease forwards;
}

.pp-notify-toast-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
}

.pp-notify-toast.success .pp-notify-toast-icon { color: #E5B842; }
.pp-notify-toast.error .pp-notify-toast-icon { color: #f87171; }
.pp-notify-toast.warning .pp-notify-toast-icon { color: #facc15; }
.pp-notify-toast.info .pp-notify-toast-icon { color: #60a5fa; }

.pp-notify-toast-body { flex: 1; min-width: 0; }

.pp-notify-toast-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.125rem;
}

.pp-notify-toast-message {
    font-size: 0.75rem;
    color: #9EA4B0;
    line-height: 1.4;
}

.pp-notify-toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #9EA4B0;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.pp-notify-toast-close:hover { color: #fff; }

@keyframes ppNotifySlideIn {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ppNotifySlideOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(0.5rem); }
}
