
#bedinsan-top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
    padding: 8px 40px 8px 10px;
    backdrop-filter: blur(6px);
    background: rgba(255, 123, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.6s ease forwards;
}
#bedinsan-top-banner a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
#bedinsan-top-close {
    position: absolute;
    right: 15px;
    top: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media(min-width:769px){#bedinsan-top-banner{display:none;}}
