/* Entry card overlay on the first hero — light cream to match the site */
#851956793.hero__container,
#851956793 .cmp-video-hero__video-container {
    position: relative;
}

.mbs-gate {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px 20px 48px;
    pointer-events: none;
    box-sizing: border-box;
}

.mbs-gate__card {
    pointer-events: auto;
    width: 100%;
    max-width: 380px;
    padding: 32px 26px 22px;
    border-radius: 28px;
    background: rgba(244, 244, 239, 0.94);
    border: 1px solid rgba(197, 198, 188, 0.7);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang TC", "Microsoft JhengHei", sans-serif;
    color: #1a1a1a;
    box-sizing: border-box;
}

.mbs-gate__logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.mbs-gate__logo svg {
    display: block;
}

.mbs-gate__title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111;
    line-height: 1.2;
}

.mbs-gate__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 22px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #3c8f4a;
    color: #2f7a3c;
    font-size: 12px;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.55);
}

.mbs-gate__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3c8f4a;
    box-shadow: 0 0 0 3px rgba(60, 143, 74, 0.16);
    flex-shrink: 0;
}

.mbs-gate__entry {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0 0 16px;
    padding: 14px 14px 14px 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #d6d5cb;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mbs-gate__entry:hover,
.mbs-gate__entry:focus {
    outline: none;
    border-color: #b7a36a;
    box-shadow: 0 0 0 1px #b7a36a, 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.mbs-gate__entry-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #d6d5cb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4a4a44;
}

.mbs-gate__entry-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.mbs-gate__entry-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.mbs-gate__host {
    display: block;
    font-size: 12px;
    color: #7a7a72;
    font-family: Consolas, "SF Mono", Menlo, monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mbs-gate__entry-go {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    color: #2f7a3c;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
}

.mbs-gate__entry-go em {
    font-style: normal;
    white-space: nowrap;
}

.mbs-gate__live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3c8f4a;
    box-shadow: 0 0 0 4px rgba(60, 143, 74, 0.16);
}

.mbs-gate__cs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 4px 0 14px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid #c5c6bc;
    background: transparent;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    box-sizing: border-box;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.mbs-gate__cs:hover,
.mbs-gate__cs:focus {
    background: #fff;
    border-color: #a9aa9f;
    outline: none;
}

.mbs-gate__tip {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: #8a8a82;
}

@media (max-width: 767px) {
    .mbs-gate {
        padding: 72px 16px 28px;
        align-items: flex-end;
    }

    .mbs-gate__card {
        max-width: 100%;
        padding: 24px 18px 18px;
        border-radius: 22px;
    }

    .mbs-gate__title {
        font-size: 24px;
    }

    .mbs-gate__entry-go em {
        display: none;
    }
}
