body>app-root>app-nav>mat-toolbar>div.toolbar-button {
    display: none;
}

/* Bannière principale */
.gmalware-banner {
    position: fixed;
    top: 0;
    right: 0;
    height: 64px;
    background:
        linear-gradient(to left,
            rgba(249, 193, 5, 1) 0%,
            rgba(229, 35, 33, 1) 100%) left bottom #212121 no-repeat;
    background-size: 100% 2px;
    z-index: 9999;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.banner-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.banner-logo svg {
    width: 48px;
    fill: white;
    position: relative;
    z-index: 1;
}

.banner-text {
    /* min-width: 300px; */
    flex: 1;
}

.banner-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
    margin: 0 0 2px !important;
}


.banner-subtitle {
    font-size: 14px;
    color: #999999;
    line-height: 1.4;
    margin: 0 !important;
}

.btn-unlock {
    align-items: center;
    background: linear-gradient(135deg, #e52321 0%, #f9c105 100%);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-left: 0;
    overflow: hidden;
    padding: 12px 28px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-unlock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-unlock:hover::before {
    width: 300px;
    height: 300px;
}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.btn-unlock svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* Responsive */
@media (max-width: 1064px) {

    .gmalware-banner {
        position: static;
        height: auto;
        gap: 16px;
        padding-block: 16px;
        flex-direction: column;
    }

    .banner-title {
        font-size: 14px;
    }

    .banner-subtitle {
        font-size: 13px;
    }

    .btn-unlock {
        padding: 10px 20px;
        font-size: 13px;
    }
}