.mcl-top-bar {
    position: sticky;
    top: 0;
    z-index: 9998;
    background: linear-gradient(135deg, var(--mcl-accent), #06101b);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.14);
}
.mcl-top-inner {
    width: min(1320px, calc(100% - 24px));
    min-height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    position: relative;
}
.mcl-top-inner strong,
.mcl-top-inner span,
.mcl-top-inner a {
    color: #fff;
}
.mcl-pill,
.mcl-code,
.mcl-countdown {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.mcl-top-inner strong {
    font-size: 14px;
}
.mcl-top-inner a {
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #fff;
    color: #06101b !important;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
.mcl-dismiss {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
}
.mcl-dismiss:hover,
.mcl-dismiss:focus {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.42);
}
.mcl-home-band {
    background:
        radial-gradient(circle at 78% 18%, rgba(100, 200, 255, .22), transparent 34%),
        linear-gradient(145deg, #02060d, #07111d);
    color: #fff;
    padding: 24px 20px;
}
.mcl-home-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: clamp(18px, 3vw, 28px);
    background: rgba(255,255,255,.035);
    position: relative;
}
.mcl-home-dismiss {
    position: absolute;
    top: 12px;
    right: 12px;
}
.mcl-home-inner p {
    margin: 0 0 8px;
    color: var(--mcl-accent2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.mcl-home-inner h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1;
}
.mcl-home-inner span {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.76);
    line-height: 1.6;
}
.mcl-home-actions {
    display: grid;
    gap: 10px;
    justify-items: stretch;
    min-width: min(260px, 100%);
}
.mcl-home-actions strong {
    display: grid;
    place-items: center;
    min-height: 46px;
    border: 1px dashed var(--mcl-accent2);
    border-radius: 8px;
    color: #fff;
    font-size: 22px;
    letter-spacing: .08em;
}
.mcl-home-actions a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--mcl-accent);
    color: #fff !important;
    font-weight: 900;
    text-decoration: none;
}
@media (max-width: 760px) {
    .mcl-top-inner {
        min-height: auto;
        padding: 8px 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 7px;
    }
    .mcl-top-inner strong {
        grid-column: 1 / -1;
        order: -1;
        font-size: 13px;
        line-height: 1.25;
    }
    .mcl-pill,
    .mcl-countdown {
        display: none;
    }
    .mcl-code {
        justify-content: center;
    }
    .mcl-top-inner a {
        width: 100%;
    }
    .mcl-dismiss {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    .mcl-home-band {
        padding: 14px 12px;
    }
    .mcl-home-inner {
        grid-template-columns: 1fr;
        padding: 42px 18px 18px;
    }
    .mcl-home-actions {
        min-width: 0;
    }
}
