html,
body {
    overflow-x: hidden;
}

.docc-supported-page {
    background: #f8fafc;
    color: #1e293b;
}

body.partner-top-hero .header {
    background-color: transparent;
    backdrop-filter: none;
}

body.partner-top-hero .header .menus-item-text,
body.partner-top-hero .header .language-zh,
body.partner-top-hero .header .header-right .iphone,
body.partner-top-hero .header .header-right .iphone-number {
    color: #fff;
}

body.partner-top-hero .header .menus-item-top,
body.partner-top-hero .header .iphone-icon {
    filter: brightness(0) invert(1);
}

body.partner-top-hero .header .header_logo-image-dark {
    display: none;
}

body.partner-top-hero .header .header_logo-image-light {
    display: block;
}

body.partner-top-hero .header.header-active {
    background-color: #fff;
    backdrop-filter: blur(10px);
}

body.partner-top-hero .header.header-active .menus-item-text,
body.partner-top-hero .header.header-active .language-zh,
body.partner-top-hero .header.header-active .header-right .iphone,
body.partner-top-hero .header.header-active .header-right .iphone-number {
    color: #1e293b;
}

body.partner-top-hero .header.header-active .menus-item-top,
body.partner-top-hero .header.header-active .iphone-icon {
    filter: none;
}

body.partner-top-hero .header.header-active .header_logo-image-dark {
    display: block;
}

body.partner-top-hero .header.header-active .header_logo-image-light {
    display: none;
}

.docc-supported-hero {
    min-height: 400px;
    padding-top: 72px;
    background: linear-gradient(180deg, #1A0E50 0%, #432CB1 41%, #8673DF 67%, #A888FF 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.docc-supported-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 52px),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 55px);
    pointer-events: none;
}

.docc-supported-hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    text-align: center;
    color: #fff;
}

.docc-supported-eyebrow {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 24px;
}

.docc-supported-hero h1 {
    margin: 0 0 16px;
    font-size: 56px;
    line-height: 68px;
    font-weight: 600;
    letter-spacing: 0;
}

.docc-supported-hero p:last-child {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    color: rgba(255,255,255,0.92);
}

.docc-supported-section {
    padding: 56px 0 88px;
    background: #fbfbfc;
}

.docc-supported-container {
    width: min(1668px, calc(100% - 200px));
    margin: 0 auto;
}

.docc-supported-table-shell {
    border: 1px solid #dedee5;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
    overflow: visible;
    position: relative;
}

.docc-supported-table-shell::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #cfd0d8;
    pointer-events: none;
}

.docc-supported-table-shell.is-fixed {
    padding-top: var(--docc-fixed-height, 0);
}

.docc-supported-fixed {
    position: relative;
    z-index: 20;
    width: 100%;
    background: #fff;
}

.docc-supported-table-shell.is-fixed .docc-supported-fixed {
    position: fixed;
    top: var(--docc-fixed-top, 64px);
    left: var(--docc-fixed-left, 0);
    width: var(--docc-fixed-width, 100%);
    z-index: 9998;
    overflow: hidden;
    background: #fff;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.docc-supported-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 30px 24px;
    background: #fff;
    border-bottom: 1px solid #dedee5;
}

.docc-supported-toolbar h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0;
}

.docc-supported-toolbar p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #6b7280;
}

.docc-supported-meta {
    margin-left: 8px;
}

.docc-supported-search {
    flex: 0 0 430px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    border: 1px solid #d7d7dc;
    border-radius: 4px;
    background: #fff;
}

.docc-supported-search:focus-within {
    border-color: #b8c0d0;
    box-shadow: 0 0 0 2px rgba(100, 116, 139, 0.08);
}

.docc-supported-search span {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: transparent;
    border: 2px solid #6b7a90;
    border-radius: 50%;
    position: relative;
}

.docc-supported-search span::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    right: -6px;
    bottom: -1px;
    background: #6b7a90;
    transform: rotate(45deg);
    transform-origin: left center;
}

.docc-supported-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    box-shadow: none;
    background: transparent;
    font-size: 16px;
    line-height: 24px;
    color: #1f2937;
}

.docc-supported-search input:focus,
.docc-supported-search input:focus-visible {
    outline: none;
    box-shadow: none;
}

.docc-supported-search input::placeholder {
    color: #9ca3af;
}

.docc-supported-head-wrap {
    background: #f1eefb;
}

.docc-supported-table-wrap {
    position: relative;
    width: 100%;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.docc-supported-table {
    width: 100%;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.docc-supported-table thead th {
    padding: 16px 20px;
    background: #f1eefb;
    border-bottom: 1px solid #dedee5;
    border-right: 1px solid #dedee5;
    color: #1f2937;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    text-align: left;
}

.docc-supported-table tbody td {
    padding: 13px 20px;
    border-bottom: 1px solid #dedee5;
    border-right: 1px solid #dedee5;
    color: #1f2937;
    font-size: 15px;
    line-height: 24px;
    vertical-align: top;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.docc-supported-table tbody tr:hover td {
    background: #faf9ff;
}

.docc-supported-table tbody td.docc-category-cell {
    background: #f8f6ff;
    color: #1f2937;
    font-weight: 500;
}

.docc-supported-table tbody tr:hover td.docc-category-cell {
    background: #f1eefb;
}

.docc-supported-empty {
    padding: 56px 20px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
    line-height: 24px;
}

@media (max-width: 900px) {
    .docc-supported-hero {
        min-height: 320px;
        padding-top: 64px;
    }

    .docc-supported-hero h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .docc-supported-hero p:last-child {
        font-size: 18px;
        line-height: 28px;
    }

    .docc-supported-section {
        padding: 32px 0 72px;
    }

    .docc-supported-container {
        width: min(100% - 24px, 1720px);
    }

    .docc-supported-fixed {
        top: auto;
    }

    .docc-supported-table-shell.is-fixed .docc-supported-fixed {
        top: var(--docc-fixed-top, 64px);
    }

    .docc-supported-toolbar {
        display: block;
        padding: 18px;
    }

    .docc-supported-toolbar h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .docc-supported-toolbar p {
        font-size: 15px;
        line-height: 24px;
    }

    .docc-supported-meta {
        display: block;
        margin: 4px 0 0;
    }

    .docc-supported-search {
        width: 100%;
        flex-basis: auto;
        margin-top: 16px;
        height: 52px;
    }

    .docc-supported-table thead th,
    .docc-supported-table tbody td {
        padding: 14px 16px;
        font-size: 15px;
        line-height: 24px;
    }
}
