:root{
    --notification9-blue:#0057D9;
    --notification9-dark:#002171;
    --notification9-bg:#F4F7FC;
    --notification9-text:#10213A;
    --notification9-muted:#64748B;
}

.jeeko-home9-actions{
    display:flex;
    align-items:center;
    gap:8px;
}

.jeeko-home9-bell{
    position:relative;
    display:grid;
    place-items:center;
    width:50px;
    height:50px;
    padding:0;
    border:0;
    border-radius:18px;
    background:rgba(255,255,255,.16);
    color:#fff;
    backdrop-filter:blur(8px);
}

.jeeko-home9-bell>span{
    font-size:22px;
}

.jeeko-home9-bell>i{
    position:absolute;
    top:-4px;
    right:-4px;
    display:grid;
    place-items:center;
    min-width:20px;
    height:20px;
    padding:0 5px;
    border:2px solid #fff;
    border-radius:999px;
    background:#EF233C;
    color:#fff;
    font-size:8px;
    font-style:normal;
    font-weight:900;
    box-shadow:0 6px 14px rgba(239,35,60,.28);
}

.jeeko-home9-bell>i[hidden]{
    display:none!important;
}

body.jeeko-notification9-open{
    overflow:hidden!important;
}

.jeeko-notification9{
    position:fixed;
    inset:0;
    z-index:100050;
    background:rgba(2,6,23,.48);
    backdrop-filter:blur(6px);
}

.jeeko-notification9[hidden]{
    display:none!important;
}

.jeeko-notification9>section{
    position:absolute;
    inset:0;
    left:50%;
    width:min(760px,100%);
    background:var(--notification9-bg);
    transform:translateX(-50%);
    overflow:auto;
}

.jeeko-notification9 header{
    position:sticky;
    top:0;
    z-index:10;
    display:grid;
    grid-template-columns:44px minmax(0,1fr) auto;
    align-items:center;
    gap:10px;
    min-height:78px;
    padding:calc(10px + env(safe-area-inset-top)) 12px 10px;
    background:
        radial-gradient(circle at 95% 0%,rgba(255,255,255,.18),transparent 35%),
        linear-gradient(145deg,#0A66FF,var(--notification9-blue) 52%,var(--notification9-dark));
    color:#fff;
    box-shadow:0 12px 28px rgba(0,33,113,.20);
}

.jeeko-notification9 header>button:first-child{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    padding:0;
    border:0;
    border-radius:14px;
    background:rgba(255,255,255,.16);
    color:#fff;
    font-size:22px;
}

.jeeko-notification9 header>div{
    min-width:0;
}

.jeeko-notification9 header small{
    color:#BFDBFE;
    font-size:8px;
    font-weight:900;
    letter-spacing:.13em;
}

.jeeko-notification9 header h1{
    margin:3px 0 0;
    color:#fff;
    font-size:20px;
}

.jeeko-notification9 header>button:last-child{
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.24);
    border-radius:999px;
    background:rgba(255,255,255,.13);
    color:#fff;
    font-size:9px;
    font-weight:800;
}

.jeeko-notification9 nav{
    position:sticky;
    top:78px;
    z-index:9;
    display:flex;
    gap:8px;
    overflow:auto;
    padding:12px;
    background:rgba(244,247,252,.95);
    backdrop-filter:blur(12px);
}

.jeeko-notification9 nav button{
    flex:0 0 auto;
    min-height:38px;
    padding:0 14px;
    border:1px solid #DCE5F2;
    border-radius:999px;
    background:#fff;
    color:#607089;
    font-size:10px;
    font-weight:800;
}

.jeeko-notification9 nav button.is-active{
    border-color:var(--notification9-blue);
    background:linear-gradient(135deg,#0A66FF,#002171);
    color:#fff;
}

.jeeko-notification9 main{
    display:grid;
    gap:9px;
    padding:4px 12px calc(25px + env(safe-area-inset-bottom));
}

.jeeko-notification9-item{
    position:relative;
    display:grid;
    grid-template-columns:50px minmax(0,1fr) auto;
    align-items:start;
    gap:11px;
    width:100%;
    min-height:84px;
    padding:13px;
    border:1px solid #E2E8F0;
    border-radius:19px;
    background:#fff;
    color:var(--notification9-text);
    text-align:left;
    box-shadow:0 7px 20px rgba(15,35,70,.05);
}

.jeeko-notification9-item.is-unread{
    border-color:#BBD4FA;
    background:linear-gradient(145deg,#FFFFFF,#F3F8FF);
    box-shadow:0 8px 23px rgba(0,87,217,.09);
}

.jeeko-notification9-icon{
    display:grid;
    place-items:center;
    width:50px;
    height:50px;
    border-radius:16px;
    background:#EAF2FF;
    font-size:24px;
}

.jeeko-notification9-main{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.jeeko-notification9-main strong{
    font-size:13px;
}

.jeeko-notification9-main p{
    display:-webkit-box;
    overflow:hidden;
    margin:4px 0 0;
    color:#64748B;
    font-size:10px;
    line-height:1.45;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

.jeeko-notification9-main small{
    margin-top:6px;
    color:#94A3B8;
    font-size:8px;
}

.jeeko-notification9-item>i{
    width:9px;
    height:9px;
    margin-top:4px;
    border-radius:50%;
    background:#0057D9;
    box-shadow:0 0 0 5px rgba(0,87,217,.10);
}

.jeeko-notification9-empty{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:52px 22px;
    border-radius:24px;
    background:#fff;
    text-align:center;
    box-shadow:0 10px 25px rgba(15,35,70,.06);
}

.jeeko-notification9-empty>span{
    font-size:50px;
}

.jeeko-notification9-empty strong{
    margin-top:12px;
    font-size:17px;
}

.jeeko-notification9-empty p{
    max-width:320px;
    margin:8px 0 0;
    color:#64748B;
    font-size:12px;
    line-height:1.55;
}

.jeeko-notification9-skeleton{
    height:84px;
    border-radius:19px;
    background:linear-gradient(
        90deg,
        #EEF2F7 25%,
        #F8FAFC 38%,
        #EEF2F7 62%
    );
    background-size:400% 100%;
    animation:notification9Shimmer 1.3s infinite;
}

@keyframes notification9Shimmer{
    0%{background-position:100% 0}
    100%{background-position:0 0}
}

@media(max-width:420px){
    .jeeko-home9-actions{
        gap:6px;
    }

    .jeeko-home9-bell,
    .jeeko-home9-actions .jeeko-home6-avatar{
        width:46px;
        height:46px;
        border-radius:16px;
    }

    .jeeko-notification9 main{
        padding-left:9px;
        padding-right:9px;
    }
}
