.prl-notice-overlay {
    z-index: 99999;
    font-family: inherit;
}

.prl-notice-shell {
    box-sizing: border-box;
}

.prl-notice-frame,
.prl-notice-frame * {
    box-sizing: border-box;
}

.prl-notice-frame {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(0, 238, 255, 0.14), transparent 30%),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.14), transparent 30%),
        linear-gradient(145deg, rgba(10, 16, 30, 0.96), rgba(17, 24, 39, 0.96));
    color: #eaf4ff;
    backdrop-filter: blur(16px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255,255,255,0.03);
}

.prl-notice-variant-info {
    border: 1px solid rgba(103, 232, 249, 0.22);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 35px rgba(34, 211, 238, 0.08);
}

.prl-notice-variant-warning {
    border: 1px solid rgba(251, 191, 36, 0.28);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 35px rgba(251, 191, 36, 0.08);
}

.prl-notice-variant-maintenance {
    border: 1px solid rgba(167, 139, 250, 0.28);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 35px rgba(167, 139, 250, 0.10);
}

.prl-notice-glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.20), transparent 65%);
    pointer-events: none;
}

.prl-notice-variant-warning .prl-notice-glow {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.20), transparent 65%);
}

.prl-notice-variant-maintenance .prl-notice-glow {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 65%);
}

.prl-notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.prl-notice-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

.prl-notice-variant-info .prl-notice-kicker {
    color: #7dd3fc;
}

.prl-notice-variant-warning .prl-notice-kicker {
    color: #fcd34d;
}

.prl-notice-variant-maintenance .prl-notice-kicker {
    color: #c4b5fd;
}

.prl-notice-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.15;
    color: #f8fbff;
}

.prl-notice-message {
    color: #d9e7f7;
    font-size: 15px;
    line-height: 1.7;
}

.prl-notice-message a {
    color: #7dd3fc;
    text-decoration: underline;
}

.prl-notice-actions {
    margin-top: 20px;
}

.prl-notice-button,
.prl-notice-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #f8fbff;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border: 1px solid rgba(125, 211, 252, 0.32);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.prl-notice-button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.prl-notice-close {
    appearance: none;
    border: 1px solid rgba(125, 211, 252, 0.30);
    background: rgba(15, 23, 42, 0.72);
    color: #eaf4ff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.prl-notice-close:hover {
    transform: scale(1.04);
    background: rgba(30, 41, 59, 0.90);
    border-color: rgba(125, 211, 252, 0.55);
}

/* Banner */
.prl-notice-type-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 20px;
}

.prl-notice-type-banner.prl-notice-banner-bottom {
    top: auto;
    bottom: 20px;
}

.prl-notice-type-banner .prl-notice-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.prl-notice-type-banner .prl-notice-frame {
    border-radius: 18px;
    padding: 22px 24px;
}

/* Popup */
.prl-notice-type-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(2, 6, 23, 0.55);
}

.prl-notice-type-popup .prl-notice-shell {
    width: 100%;
    max-width: 760px;
}

.prl-notice-type-popup .prl-notice-frame {
    border-radius: 24px;
    padding: 28px;
}

/* Fullscreen */
.prl-notice-type-fullscreen {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(34, 211, 238, 0.07), transparent 35%),
        rgba(2, 6, 23, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.prl-notice-type-fullscreen .prl-notice-shell {
    width: 100%;
    max-width: 920px;
}

.prl-notice-type-fullscreen .prl-notice-frame {
    border-radius: 28px;
    padding: 38px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prl-notice-type-fullscreen .prl-notice-title {
    font-size: 36px;
}

@media (max-width: 768px) {
    .prl-notice-type-banner {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .prl-notice-type-banner .prl-notice-frame,
    .prl-notice-type-popup .prl-notice-frame,
    .prl-notice-type-fullscreen .prl-notice-frame {
        padding: 20px;
        border-radius: 18px;
    }

    .prl-notice-title {
        font-size: 24px;
    }

    .prl-notice-type-fullscreen .prl-notice-title {
        font-size: 28px;
    }
}
