.notice-box{
    display:flex;
    align-items:center;
    gap:22px;

    max-width:1000px;
    margin:25px auto;

    padding:22px;

    background:#242d44;
    border:1px solid #38455f;
    border-left:5px solid #ffb300;
    border-radius:12px;

    color:#dbe4f1;

    animation:borderGlow 2s infinite;
}

.notice-icon{
    font-size:42px;
    flex-shrink:0;
}

.notice-content{
    flex:1;
}

.notice-content h3{
    margin:0 0 12px;
    color:#fff;
    font-size:30px;
    font-weight:700;
}

.notice-content p{
    margin:0 0 18px;
    font-size:17px;
    line-height:1.7;
    color:#c6d1e2;
}

.backup-btn{
    display:inline-block;
    background:#3da9fc;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.25s;
}

.backup-btn:hover{
    background:#57b8ff;
    transform:translateY(-2px);
}

@keyframes borderGlow{

    0%{
        border-left-color:#ffb300;
    }

    50%{
        border-left-color:#ffd65c;
    }

    100%{
        border-left-color:#ffb300;
    }

}

@media(max-width:768px){

.notice-box{
    flex-direction:column;
    text-align:center;
}

.notice-icon{
    font-size:36px;
}

.notice-content h3{
    font-size:24px;
}

.notice-content p{
    font-size:15px;
}

.backup-btn{
    width:100%;
}

}