html,
body.b2-mcp-page {
    background-color: #060708;
    overscroll-behavior: none;
}

body.b2-mcp-page {
    min-height: 100%;
}

.b2-mcp-page #content {
    padding: 0;
}

.b2-mcp-page #page {
    background-color: #060708;
}

.b2-mcp-page .site-header.mg-b {
    margin-bottom: 0;
}

.b2-mcp-page .site-content {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.mcp-page {
    --mcp-page-bg: none;
    position: relative;
    min-height: 100vh;
    border: 0;
    color: #f5f6f8;
    background-color: #060708;
    background-image: var(--mcp-page-bg);
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    padding: 38px 24px 56px;
}

.mcp-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, .46);
}

.mcp-page *,
.mcp-page *::before,
.mcp-page *::after {
    box-sizing: border-box;
}

.mcp-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 1520px);
    margin: 0 auto;
}

.mcp-page a {
    color: inherit;
    text-decoration: none;
}

.mcp-motion-target {
    backface-visibility: hidden;
}

.mcp-hero-grid {
    display: grid;
    grid-template-columns: 236px minmax(0, 1fr) 236px;
    gap: 4px;
    min-height: 320px;
}

.mcp-feature-card,
.mcp-hero {
    border: var(--mcp-hero-border-width, 1px) solid var(--mcp-hero-border);
    background-color: var(--mcp-hero-bg);
    box-shadow: var(--mcp-hero-shadow);
}

.mcp-feature-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 28px 26px;
    background-position: center;
    background-size: cover;
    border-radius: 22px 4px 4px 22px;
    transition: border-color .2s ease, transform .2s ease;
}

.mcp-feature-card > * {
    position: relative;
    z-index: 1;
}

.mcp-feature-right {
    border-radius: 4px 22px 22px 4px;
}

.mcp-feature-card:hover {
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
}

.mcp-feature-badge,
.mcp-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #c9cbd0;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .04em;
}

.mcp-feature-card strong {
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.35;
}

.mcp-feature-card p {
    margin: 10px 0 18px;
    color: #9b9da3;
    font-size: 14px;
}

.mcp-small-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 5px;
    background: rgba(255, 255, 255, .04);
    font-size: 13px;
}

.mcp-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 18px 38px 10px;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
}

.mcp-hero > * {
    position: relative;
    z-index: 1;
}

.mcp-hero-copy {
    text-align: center;
}

.mcp-hero-copy h1 {
    margin: 8px 0 2px;
    color: #f7f7f8;
    font-size: clamp(36px, 4.4vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
    text-shadow: none;
}

.mcp-hero-copy > p {
    margin: 10px 0 14px;
    color: #c0c2c7;
    font-size: 15px;
}

.mcp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.mcp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    background: rgba(6, 7, 9, .68);
    color: #f4f5f7;
    font-size: 14px;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.mcp-button-primary {
    border-color: rgba(255, 255, 255, .55);
    background: rgba(236, 238, 242, .16);
    box-shadow: 0 0 20px rgba(220, 226, 239, .18), inset 0 1px rgba(255, 255, 255, .2);
}

.mcp-button:hover {
    border-color: rgba(255, 255, 255, .65);
    background-color: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

.mcp-brand-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.mcp-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    height: 94px;
    padding: 9px;
    border: var(--mcp-brand-border-width, 1px) solid var(--mcp-brand-border);
    border-radius: 9px;
    background: var(--mcp-brand-bg);
    box-shadow: var(--mcp-brand-shadow);
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mcp-brand-card:hover {
    border-color: var(--mcp-brand-hover-border);
    background-color: var(--mcp-brand-hover-bg);
    box-shadow: var(--mcp-brand-hover-shadow);
    transform: translateY(-3px);
}

.mcp-brand-image {
    display: block;
    width: var(--mcp-brand-icon-size, 42px);
    max-width: 100%;
    height: var(--mcp-brand-icon-size, 42px);
    min-height: 0;
    object-fit: contain;
}

.mcp-brand-name {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: #f5f6f8;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mcp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 18px;
    padding-top: 9px;
}

.mcp-slider-dots i {
    width: 7px;
    height: 7px;
    border: 1px solid #75777c;
    border-radius: 50%;
}

.mcp-slider-dots i.active {
    border-color: #fff;
    background: #fff;
}

.mcp-section {
    padding-top: 27px;
}

.mcp-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 2px 12px;
}

.mcp-section-heading h2 {
    margin: 0;
    color: #f1f2f4;
    font-size: 22px;
    line-height: 1.2;
}

.mcp-section-heading p {
    margin: 5px 0 0;
    color: #7f8289;
    font-size: 13px;
}

.mcp-section-heading > a {
    display: inline-flex;
    align-items: center;
    color: #d7d8db;
    font-size: 13px;
    white-space: nowrap;
}

.mcp-section-heading > a:hover {
    color: #fff;
}

.mcp-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
}

.mcp-category-card {
    display: block;
    min-width: 0;
    height: 86px;
    padding: 0;
    overflow: hidden;
    border: var(--mcp-category-border-width, 1px) solid var(--mcp-category-border);
    border-radius: 9px;
    background: var(--mcp-category-bg);
    box-shadow: var(--mcp-category-shadow);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mcp-category-card:hover {
    border-color: var(--mcp-category-hover-border);
    box-shadow: var(--mcp-category-hover-shadow);
    transform: translateY(-2px);
}

.mcp-category-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mcp-article-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.mcp-article-card {
    min-width: 0;
    overflow: hidden;
    border: var(--mcp-article-border-width, 1px) solid var(--mcp-article-border);
    border-radius: 8px;
    background: var(--mcp-article-bg);
    box-shadow: var(--mcp-article-shadow);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mcp-article-card:hover {
    border-color: var(--mcp-article-hover-border);
    box-shadow: var(--mcp-article-hover-shadow);
    transform: translateY(-3px);
}

.mcp-article-image {
    position: relative;
    display: block;
    aspect-ratio: 1.72 / 1;
    overflow: hidden;
    background: #12151a;
}

.mcp-article-image::after {
    content: none;
}

.mcp-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .25s ease, transform .25s ease;
}

.mcp-article-card:hover .mcp-article-image img {
    transform: scale(1.035);
}

.mcp-article-image > span {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(6, 8, 10, .74);
    color: #d8dade;
    font-size: 11px;
}

.mcp-article-body {
    display: flex;
    flex-direction: column;
    min-height: 165px;
    padding: 13px 13px 12px;
}

.mcp-article-body > strong {
    display: -webkit-box;
    overflow: hidden;
    color: #f1f2f4;
    font-size: 15px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mcp-article-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 12px;
    color: #84878e;
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mcp-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    color: #787b82;
    font-size: 10px;
}

.mcp-article-meta b,
.mcp-article-meta small {
    overflow: hidden;
    font-size: inherit;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1180px) {
    .mcp-hero-grid {
        grid-template-columns: 190px minmax(0, 1fr) 190px;
    }

    .mcp-hero {
        padding-inline: 22px;
    }

    .mcp-brand-grid {
        gap: 7px;
    }

    .mcp-brand-card {
        font-size: 11px;
    }

    .mcp-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .mcp-page {
        padding: 22px 16px 42px;
        background-attachment: scroll;
    }

    .mcp-hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mcp-hero {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 430px;
        border-radius: 16px;
    }

    .mcp-feature-card {
        min-height: 210px;
        border-radius: 14px;
    }

    .mcp-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mcp-brand-card {
        height: 80px;
    }

    .mcp-brand-image {
        width: min(var(--mcp-brand-icon-size, 42px), 42px);
        height: min(var(--mcp-brand-icon-size, 42px), 42px);
    }

    .mcp-article-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mcp-page {
        padding: 10px 10px 28px;
    }

    .mcp-hero-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .mcp-hero {
        order: -1;
        grid-column: 1 / -1;
        min-height: 0;
        padding: 18px 12px 8px;
        border-radius: 12px;
    }

    .mcp-hero-copy h1 {
        margin-top: 8px;
        font-size: clamp(27px, 8vw, 34px);
    }

    .mcp-hero-copy > p {
        margin: 7px 0 10px;
        font-size: 12px;
    }

    .mcp-hero-actions {
        gap: 8px;
    }

    .mcp-button {
        flex: 1;
        min-width: 0;
        min-height: 36px;
        padding-inline: 8px;
        font-size: 12px;
    }

    .mcp-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        margin-top: 16px;
    }

    .mcp-brand-card {
        height: 68px;
        padding: 6px 4px;
        gap: 4px;
        border-radius: 7px;
    }

    .mcp-brand-image {
        width: min(var(--mcp-brand-icon-size, 42px), 32px);
        height: min(var(--mcp-brand-icon-size, 42px), 32px);
    }

    .mcp-brand-name {
        font-size: 10px;
    }

    .mcp-feature-card {
        min-height: 132px;
        padding: 16px 13px 12px;
        border-radius: 11px;
    }

    .mcp-feature-right {
        border-radius: 11px;
    }

    .mcp-feature-badge,
    .mcp-eyebrow {
        min-height: 24px;
        padding-inline: 9px;
        font-size: 10px;
    }

    .mcp-feature-card strong {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.25;
    }

    .mcp-feature-card p {
        display: -webkit-box;
        overflow: hidden;
        margin: 5px 0 8px;
        font-size: 11px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .mcp-small-button {
        min-height: 28px;
        padding-inline: 9px;
        font-size: 11px;
    }

    .mcp-section {
        padding-top: 20px;
    }

    .mcp-section-heading {
        align-items: center;
        gap: 10px;
        padding: 0 1px 9px;
    }

    .mcp-section-heading h2 {
        font-size: 18px;
    }

    .mcp-section-heading p {
        margin-top: 3px;
        font-size: 11px;
    }

    .mcp-section-heading > a {
        font-size: 11px;
    }

    .mcp-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .mcp-category-card {
        height: 72px;
        min-height: 0;
        border-radius: 8px;
    }

    .mcp-article-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mcp-article-card {
        display: grid;
        grid-template-columns: 108px minmax(0, 1fr);
        border-radius: 8px;
    }

    .mcp-article-image {
        height: 100%;
        aspect-ratio: auto;
    }

    .mcp-article-body {
        min-height: 122px;
        padding: 10px 11px;
    }

    .mcp-article-body > strong {
        font-size: 14px;
    }

    .mcp-article-body > p {
        margin: 6px 0 8px;
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mcp-page *,
    .mcp-page *::before,
    .mcp-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
