/* Renamed to bypass AdBlockers/Brave Shield */
.site-msg-overlay {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 380px;
    background: rgba(15, 12, 19, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 24px;
    padding: 24px;
    z-index: 99999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.1);
    -webkit-animation: infoSlideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation: infoSlideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    display: none;
    opacity: 0;
}

@-webkit-keyframes infoSlideIn {
    from { -webkit-transform: translateY(100px); opacity: 0; }
    to { -webkit-transform: translateY(0); opacity: 1; }
}

@keyframes infoSlideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.site-msg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.site-msg-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
}

.site-msg-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
}

.site-msg-body {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.site-msg-body a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.site-msg-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-msg-main {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-msg-main:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-msg-sub {
    background: transparent;
    color: #555;
    border: none;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.site-msg-footer {
    margin-top: 15px;
    font-size: 0.7rem;
    color: #444;
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 450px) {
    .site-msg-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
    }
}
