.msc-cookie-banner {
    display: none; /* JS toggles to flex */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #212222;
    color: #fff;
    padding: 1rem 1.5rem;
    z-index: 19000; /* below age gate, above everything else */
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.msc-cookie-banner p {
    margin: 0;
    font-size: 0.85rem;
    flex: 1;
    min-width: 240px;
}

.msc-cookie-banner a {
    color: #00a0e0;
    text-decoration: underline;
}

.msc-cookie-banner button {
    background: #00a0e0;
    color: #212222;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.msc-cookie-banner button:hover {
    background: #212222;
}