﻿.detail-main {
    padding-top: 104px;
    min-height: 100vh;
    background: #f6f8fb;
}

.detail-main .faq-shell {
    padding: 16px 0 56px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding-bottom: 0;
}

.detail-side {
    --detail-nav-level1-bg: var(--faq-soft);
    --detail-nav-level2-bg: transparent;
    display: flex;
    flex-direction: column;
    position: static;
    max-height: none;
    overflow: visible;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    padding: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.detail-panel {
    position: static;
    min-width: 0;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.detail-side::-webkit-scrollbar {
    width: 8px;
}

.detail-side::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.42);
}

.detail-side::-webkit-scrollbar-track {
    background: transparent;
}

.side-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--faq-soft);
    color: var(--faq-primary);
    font-size: 13px;
    font-weight: 700;
}

.side-intro {
    margin-bottom: 18px;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.8;
}

.side-section-title {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-strong);
}

.detail-nav-list,
.detail-chip-list,
.detail-item-nav,
.detail-nav-items {
    display: flex;
    flex-direction: column;
}

.detail-nav-list {
    gap: 0;
    margin-top: 0;
}

.detail-chip-list,
.detail-item-nav {
    gap: 10px;
}

.detail-nav-section+.detail-nav-section {
    margin-top: 12px;
    padding-top: 0;
    border-top: 0;
}

.detail-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, var(--faq-primary) 14%, #dbe3ee);
    border-radius: 8px;
    background: var(--detail-nav-level1-bg);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.detail-nav-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.detail-nav-title {
    display: block;
    color: var(--text-strong);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

.detail-nav-desc {
    display: none;
}

.detail-nav-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: #464f60;
    font-size: 16px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.detail-nav-toggle.is-expanded .detail-nav-icon {
    color: var(--faq-primary);
}

.detail-nav-toggle.is-expanded,
.detail-nav-toggle:hover {
    background: color-mix(in srgb, var(--faq-primary) 12%, #ffffff);
    border-color: color-mix(in srgb, var(--faq-primary) 28%, #cbd5e1);
    box-shadow: inset 3px 0 0 var(--faq-primary);
}

.detail-nav-toggle.is-expanded .detail-nav-title {
    color: var(--faq-primary);
}

.detail-nav-toggle:hover .detail-nav-icon,
.detail-nav-toggle:focus-visible .detail-nav-icon {
    transform: scale(1.05);
}

.detail-nav-toggle:focus-visible {
    outline: none;
}

.detail-nav-items {
    gap: 0;
    margin-top: 2px;
    margin-left: 0;
    padding: 0 10px;
    border-left: 0;
    border-top: 0;
}

.detail-nav-section.is-collapsed .detail-nav-items {
    display: none;
}

.detail-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--surface-muted);
    color: var(--text-main);
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.detail-chip:hover,
.detail-chip.is-active {
    color: var(--faq-primary);
    background: var(--faq-soft);
    transform: translateY(-1px);
}

.item-nav-title {
    margin: 22px 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-strong);
}

.detail-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: 0;
    min-height: 46px;
    padding: 10px 2px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    color: var(--text-main);
    background: var(--detail-nav-level2-bg);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    transition: color 0.2s ease;
}

.detail-item-link:last-child {
    border-bottom: 0;
}

.detail-item-link:hover,
.detail-item-link.is-active {
    color: var(--faq-primary);
    background: transparent;
    transform: none;
}

.detail-item-link.is-active {
    font-weight: 400;
}

.detail-item-link span {
    min-width: 0;
    flex: 1 1 auto;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.detail-item-link i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    font-size: 16px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.detail-item-link:hover i,
.detail-item-link:focus-visible i,
.detail-item-link.is-active i {
    color: var(--faq-primary);
    transform: translateX(2px);
}

.detail-item-link:focus-visible {
    color: var(--faq-primary);
    outline: none;
}

.detail-item-link em {
    font-style: normal;
    font-size: 12px;
    color: var(--text-muted);
}

.detail-panel {
    border-radius: 0;
    padding: 0;
}

.detail-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.26);
}

.detail-heading {
    min-width: 0;
}

.detail-category-label {
    margin: 0 0 8px;
    color: var(--faq-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.detail-category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--faq-soft);
    color: var(--faq-primary);
    font-size: 13px;
    font-weight: 700;
}

.detail-title {
    margin: 0;
    font-size: clamp(24px, calc(3vw - 4px), 36px);
    line-height: 1.22;
    letter-spacing: 0;
}

.detail-summary {
    max-width: 760px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.85;
}

.detail-toolbar .toolbar-link {
    flex: 0 0 auto;
}

.detail-mobile-nav-toggle,
.detail-mobile-overlay,
.detail-mobile-drawer-head,
.detail-mobile-drawer-close {
    display: none;
}

.detail-content {
    --faq-phone-screenshot-max-width: 260px;
    --faq-computer-screenshot-max-width: 420px;
    --faq-static-media-gap: 14px;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 18px 0 38px;
    color: #334155;
}

.detail-content .ConnectAll2-right,
.detail-content .ConnectAll-right,
.detail-content .ConnectAll-contenct,
.detail-content>div {
    width: 100%;
}

.detail-content .title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.3;
    color: #0f172a;
    font-weight: 800;
}

.detail-content .title.is-duplicate-title {
    display: none;
}

.detail-content p,
.detail-content span,
.detail-content li,
.detail-content div {
    font-size: 15px;
    line-height: 1.95;
}

.detail-content p,
.detail-content span {
    color: #334155;
}

.detail-content h2 {
    margin: 30px 0 14px;
    font-size: 22px;
    color: #0f172a;
}

.detail-content h3,
.detail-content h4 {
    margin: 20px 0 12px;
    font-size: 18px;
    color: #0f172a;
}

.detail-content img,
.detail-content video {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.detail-content img.couple-fit-image {
    cursor: default;
}

.detail-content .couple-image-crop {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.detail-content .couple-image-crop .couple-crop-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 769px) {
    .detail-content .couple-video-stack {
        gap: 16px;
    }

    .detail-content .couple-video-stack video {
        flex: 0 1 30%;
        width: 30%;
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    .detail-content img[src*="6-jyxc.png"] {
        width: 100% !important;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
    }

    .detail-content .couple-video-stack {
        flex-direction: column;
        align-items: center;
    }

    .detail-content .couple-video-stack video {
        flex: 0 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 16px;
    }

    .detail-content .couple-video-stack video:last-child {
        margin-bottom: 0;
    }
}

.faq-image-preview-open {
    overflow: hidden;
}

.faq-image-preview {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.84);
    overflow: hidden;
    touch-action: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.faq-image-preview.is-open {
    opacity: 1;
    visibility: visible;
}

.faq-image-preview-image {
    display: block;
    width: auto;
    max-width: min(1200px, 100%);
    max-height: calc(100vh - 48px);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
    touch-action: none;
    transform-origin: center center;
    transition: transform 0.08s linear;
}

.faq-image-preview-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    font-size: 24px;
    cursor: pointer;
}

.detail-content video {
    background: #0f172a;
}

.detail-content .main-box1 {
    margin-top: 18px;
    margin-bottom: 18px;
}

.detail-content .main-box2 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.detail-content .h4text2,
.detail-content .h4text3,
.detail-content .h4text4 {
    display: block;
    margin: 8px 0;
}

.detail-content .h4text3,
.detail-content .h4text4 {
    font-weight: 700;
    color: #0f172a;
}

.detail-content .error-text {
    color: #b91c1c !important;
}

.detail-content .blue-text {
    color: #2563eb !important;
}

.detail-content [style*="color: red"],
.detail-content [style*="color:red"],
.detail-content [style*="color:red !important"],
.detail-content [style*="color: #ff0000"],
.detail-content [style*="color:#ff0000"],
.detail-content [style*="color: rgb(255, 0, 0)"],
.detail-content [style*="color:rgb(255,0,0)"] {
    color: #b91c1c !important;
}

.detail-content .indent-46 {
    text-indent: 46px;
}

.detail-content .flex-row,
.detail-content .flex-center,
.detail-content .flex-center-mb,
.detail-content .flex-between,
.detail-content .flex-between2 {
    display: flex;
}

.detail-content .flex-center,
.detail-content .flex-center-mb {
    align-items: center;
    justify-content: center;
}

.detail-content .flex-center-mb {
    margin-bottom: 20px;
}

.detail-content .flex-between,
.detail-content .flex-between2 {
    align-items: center;
    justify-content: space-between;
}

.detail-content .w-30p {
    width: 30%;
}

.detail-content .w-40p {
    width: 40%;
}

.detail-content .w-50p {
    width: 50%;
}

.detail-content .w-60p {
    width: 60%;
}

.detail-content .w-75p {
    width: 75%;
}

.detail-content .w-80p {
    width: 80%;
}

.detail-content .w-90p {
    width: 90%;
}

.detail-content .w-100p {
    width: 100%;
}

.detail-content .mr-10 {
    margin-right: 10px;
}

.detail-content .mb-20 {
    margin-bottom: 20px;
}

.detail-content .border-green {
    border: 1px solid #5ded5d;
}

.detail-content .h-85vh {
    height: 85vh;
}

.detail-content .Htabs {
    --ios-guide-green: #2f9e5b;
    --ios-guide-green-dark: #318f56;
    width: 100%;
    min-width: 0;
    margin: 24px 0;
}

.detail-content .tab-container,
.detail-content .tab-container3 {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.detail-content .legacy-question-tabs {
    margin: 24px 0;
}

.detail-content .superBox {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 18px 0;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(180deg, #ffffff, rgba(238, 245, 255, 0.55));
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.detail-content .superBox>img {
    flex: 0 0 56px;
    width: 56px !important;
    max-width: 56px !important;
    height: 56px;
    margin: 0;
    border-radius: 14px;
    box-shadow: none;
    object-fit: contain;
}

.detail-content .superBox-inter {
    min-width: 0;
    flex: 1;
}

.detail-content .superBox-title {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #0f172a;
}

.detail-content .superBox-nr {
    display: block;
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
}

.detail-content a.superBox-nr {
    color: var(--faq-primary) !important;
    font-weight: 600;
}

.detail-content .faq-super-entry-list {
    display: grid;
    gap: 12px;
    width: 100%;
    margin: 18px 0;
}

.detail-content .faq-super-entry-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-width: 0;
    padding: 18px 20px;
    box-sizing: border-box;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.detail-content .faq-super-entry-card:hover,
.detail-content .faq-super-entry-card:focus-visible {
    border-color: #1670e8;
    box-shadow: 0 12px 26px rgba(22, 112, 232, 0.12);
    transform: translateY(-1px);
    outline: none;
}

.detail-content .faq-super-entry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #e9f2ff;
}

.detail-content .faq-super-entry-icon img {
    display: block;
    width: 24px !important;
    max-width: 24px !important;
    height: 24px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.detail-content .faq-super-entry-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.detail-content .faq-super-entry-title {
    margin: 0 0 5px;
    color: #172033;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
}

.detail-content .faq-super-entry-card.faq-offline-entry-card {
    padding: 10px;
}

.detail-content .faq-offline-entry-card .faq-super-entry-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
}

.detail-content .faq-offline-entry-card .faq-super-entry-title {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 400;
}

.detail-content .faq-offline-entry-number {
    color: #1670e8;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.detail-content .faq-offline-plain-step {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 4px 0;
}

.detail-content .faq-offline-plain-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3eaa68;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.detail-content .faq-offline-plain-step p {
    min-width: 0;
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-membership-intro {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-membership-table-wrap {
    width: 100%;
    margin: 18px 0;
    overflow: hidden;
    border: 1px solid #d8e1eb;
    border-radius: 8px;
    background: #fff;
}

.detail-content .faq-membership-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    color: #334155;
}

.detail-content .faq-membership-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.detail-content .faq-membership-feature-column {
    width: 34%;
}

.detail-content .faq-membership-table th,
.detail-content .faq-membership-table td {
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
    vertical-align: middle;
    overflow-wrap: anywhere;
}

.detail-content .faq-membership-table thead th {
    background: #edf7f1;
    color: #245f3b;
    font-weight: 700;
}

.detail-content .faq-membership-table th:first-child {
    padding-left: 14px;
    text-align: left;
}

.detail-content .faq-membership-table tbody tr:last-child th,
.detail-content .faq-membership-table tbody tr:last-child td {
    border-bottom: 0;
}

.detail-content .faq-membership-table tbody tr.is-emphasized th,
.detail-content .faq-membership-table tbody tr.is-emphasized td {
    color: #172033;
    font-weight: 700;
}

.detail-content .faq-membership-table tbody tr.is-emphasized td .faq-membership-value {
    font-size: 17px;
}

.detail-content .faq-membership-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.detail-content .faq-membership-status.is-supported,
.detail-content .faq-membership-value.is-featured {
    color: #278b51;
    font-weight: 700;
}

.detail-content .faq-membership-status.is-unsupported {
    color: #d34d45;
}

.detail-content .faq-membership-notes {
    margin-top: 18px;
    padding: 12px 14px;
    border-left: 3px solid #3eaa68;
    border-radius: 6px;
    background: #f4faf6;
}

.detail-content .faq-membership-notes p {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-membership-notes p + p {
    margin-top: 8px;
}

.detail-content .faq-hide-inline-warning {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-hide-warning .faq-supercontrol-warning-critical span,
.detail-content .faq-hide-warning .faq-supercontrol-warning-detail {
    font-size: 17px !important;
}

.detail-content .faq-hide-guide-heading {
    margin: 26px 0 8px;
    color: #172033;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
}

.detail-content .faq-hide-action-group {
    margin: 0 0 18px;
}

.detail-content figure.faq-static-media,
.detail-content figure.faq-hide-media,
.detail-content figure.faq-hide-media.detail-media-wrap,
.detail-content figure.faq-hide-media.detail-media-wrap.is-portrait,
.detail-content figure.faq-hide-media.detail-media-wrap.is-low-resolution,
.detail-content figure.faq-hide-media.detail-media-wrap.is-portrait.is-low-resolution {
    width: min(100%, var(--faq-phone-screenshot-max-width)) !important;
    max-width: var(--faq-phone-screenshot-max-width) !important;
    margin: 14px auto 0;
    overflow: hidden;
}

.detail-content figure.faq-static-media--computer {
    width: min(100%, var(--faq-computer-screenshot-max-width)) !important;
    max-width: var(--faq-computer-screenshot-max-width) !important;
}

.detail-content figure.faq-static-media > img,
.detail-content figure.faq-hide-media > img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 8px;
}

.detail-content .faq-hide-step-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.detail-content .faq-hide-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3eaa68;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.detail-content .faq-hide-step-heading p {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-static-media-grid,
.detail-content .faq-hide-media-pair {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: var(--faq-static-media-gap);
    margin: 14px 0 0;
}

.detail-content .faq-static-media-grid figure.faq-static-media,
.detail-content .faq-hide-media-pair figure.faq-hide-media {
    flex: 1 1 calc(50% - 7px);
    width: auto !important;
    min-width: 280px;
    max-width: var(--faq-phone-screenshot-max-width) !important;
    margin: 0 !important;
}

.detail-content .faq-static-media-grid figure.faq-static-media {
    min-width: 0;
}

.detail-content .faq-static-media-grid figure.faq-static-media--computer,
.detail-content .faq-static-media-grid figure.faq-static-media--computer.detail-media-wrap,
.detail-content .faq-static-media-grid figure.faq-static-media--computer.detail-media-wrap.is-landscape,
.detail-content .faq-static-media-grid figure.faq-static-media--computer.detail-media-wrap.is-low-resolution {
    width: min(100%, var(--faq-computer-screenshot-max-width)) !important;
    min-width: 0;
    max-width: var(--faq-computer-screenshot-max-width) !important;
}

.detail-content .faq-static-media-grid--phone.faq-static-media-grid--cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, var(--faq-phone-screenshot-max-width)));
}

.detail-content .faq-static-media-grid--phone.faq-static-media-grid--cols-2 figure.faq-static-media {
    width: 100% !important;
    min-width: 0;
}

.detail-content .faq-static-media-grid--phone.faq-static-media-grid--cols-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
}

.detail-content .faq-static-media-grid--phone.faq-static-media-grid--cols-3 figure.faq-static-media {
    width: 100% !important;
    min-width: 0;
    max-width: none !important;
}

.detail-content .faq-static-media-grid--computer.faq-static-media-grid--cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
}

.detail-content .faq-static-media-grid--computer.faq-static-media-grid--cols-2 figure.faq-static-media {
    width: 100% !important;
    min-width: 0;
    max-width: none !important;
}

.detail-content .faq-hide-inline-warning {
    margin-top: 14px;
    padding: 11px 13px;
    border-left: 3px solid #cf9217;
    border-radius: 6px;
    background: #fff9e9;
    color: #664912;
}

.detail-content .faq-notification-message-guide > .faq-hide-inline-warning,
.detail-content .faq-child-app-icon-guide > .faq-hide-inline-warning,
.detail-content .faq-family-member-guide > .faq-hide-inline-warning {
    margin-bottom: 22px;
}

.detail-content .faq-super-entry-description {
    margin: 0;
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.detail-content .faq-super-entry-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    box-sizing: border-box;
    border: 1px solid #1262ce;
    border-radius: 6px;
    background: #1670e8;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.detail-content .faq-super-entry-action:hover,
.detail-content .faq-super-entry-action:focus-visible {
    background: #0f5fc9;
    color: #fff !important;
    outline: 2px solid rgba(22, 112, 232, 0.22);
    outline-offset: 2px;
}

.detail-content .faq-super-entry-action span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.detail-content .faq-super-entry-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e9f2ff;
    color: #1262ce;
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.detail-content .faq-super-entry-card:hover .faq-super-entry-arrow,
.detail-content .faq-super-entry-card:focus-visible .faq-super-entry-arrow {
    background: #1670e8;
    color: #fff;
    transform: translateX(2px);
}

.detail-content .zking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    color: var(--text-muted);
    font-size: 12px;
    box-shadow: none !important;
    object-fit: contain;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.detail-content .faq-question img,
.detail-content img.zking {
    display: inline-flex;
    width: 20px !important;
    max-width: 20px !important;
    height: auto !important;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none !important;
    object-fit: contain;
    vertical-align: middle;
}

.detail-content .faq-question img.zking,
.detail-content img.zking {
    width: 18px !important;
    max-width: 18px !important;
}

.detail-content .rotate-90 {
    transform: rotate(90deg);
}

.detail-content .faq-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    margin: 18px 0;
}

.detail-content .faq-gallery-item {
    margin: 0;
}

.detail-content .faq-gallery img {
    width: 100%;
}

.detail-content .faq-doc-sequence {
    display: block;
}

.detail-content .faq-doc-brand-title {
    margin: 28px 0 12px;
    font-size: 22px;
    line-height: 1.4;
    color: #0f172a;
}

.detail-content .faq-doc-tab-panel {
    margin-top: 6px;
}

.detail-content .faq-doc-label {
    color: var(--faq-primary-dark);
}

.detail-content .faq-doc-guide {
    color: var(--text-main);
    font-weight: 600;
}

.detail-content .faq-doc-warning {
    color: #ef4444 !important;
}

.detail-content span.faq-doc-large-text,
.detail-content p.faq-doc-large-text,
.detail-content .faq-doc-large-text {
    font-size: 18px !important;
    line-height: 1.9;
}

.detail-content .faq-doc-step-text {
    display: block;
    margin: 34px 0 24px;
    padding: 18px 20px;
    border: 2px solid rgba(79, 70, 229, 0.34);
    border-radius: 14px;
    background: #eef2ff;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.13);
}

.detail-content .faq-doc-section-title {
    display: block;
    margin: 34px 0 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #0f172a;
    font-size: 30px !important;
    line-height: 1.55;
    font-weight: 800;
}

.detail-content .faq-doc-copy-card {
    display: block;
    margin: 0 0 24px;
    padding: 18px 20px;
    border: 2px solid rgba(79, 70, 229, 0.22);
    border-radius: 14px;
    background: #eef2ff;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.1);
}

.detail-content .faq-doc-copy-card p {
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.detail-content .faq-doc-copy-card p:last-child {
    margin-bottom: 0;
}

.detail-content .faq-doc-image-wrap {
    display: flex;
    justify-content: center;
    margin: 26px 0 38px;
}

.detail-content .faq-doc-image {
    width: min(100%, 520px);
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.detail-content .faq-ios-guide {
    --ios-guide-green: #0f9f6e;
    --ios-guide-green-dark: #087452;
    --ios-guide-ink: #172033;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    color: var(--ios-guide-ink);
}

.detail-content .faq-ios-guide-warning {
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid rgba(220, 38, 38, 0.24);
    border-left: 4px solid #dc2626;
    border-radius: 8px;
    background: #fff7f7;
    color: #c62828 !important;
    font-size: 18px !important;
    font-weight: 800;
    line-height: 1.8;
}

.detail-content .faq-supercontrol-warning {
    font-weight: 400;
}

.detail-content .faq-supercontrol-warning-critical {
    display: grid;
    gap: 2px;
    color: #c62828 !important;
    font-weight: 700;
}

.detail-content .faq-supercontrol-warning-critical span {
    display: block;
    color: #c62828 !important;
    font-size: 18px !important;
}

.detail-content .faq-supercontrol-warning-detail {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    color: #172033 !important;
    font-size: 18px !important;
    font-weight: 400;
}

.detail-content .faq-ios-guide-intro {
    margin: 0 0 30px;
    color: #526174;
    font-size: 16px;
    line-height: 1.8;
}

.detail-content .faq-ios-guide-tabs,
.detail-content .faq-mode-tabs {
    --ios-guide-green: #2f9e5b;
    --ios-guide-green-dark: #318f56;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    min-width: 0;
    margin: 0 0 24px;
}

.detail-content .faq-mode-tabs--three {
    margin-top: 24px;
}

.detail-content .faq-bind-guide {
    --ios-guide-green: #2f9e5b;
    --ios-guide-green-dark: #318f56;
}

.detail-content .faq-bind-guide-warning {
    margin: 0 0 22px;
}

.detail-content .faq-bind-guide-warning p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-bind-guide-warning p + p {
    margin-top: 7px;
}

.detail-content .faq-bind-guide-tabs {
    margin-top: 0;
}

.detail-content .faq-bind-guide-panel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.detail-content .faq-bind-guide-panel .faq-ios-guide-step-text {
    font-size: 17px !important;
    line-height: 1.85;
}

.detail-content .faq-bind-guide-entry-list {
    margin-top: 20px;
}

.detail-content .faq-bind-guide-step-note {
    margin: 12px 0 0;
    color: #172033;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-ios-guide-tab,
.detail-content .faq-mode-tab,
.detail-content .tabs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 6px 20px;
    box-sizing: border-box;
    border: 3px solid var(--ios-guide-green-dark);
    border-radius: 8px;
    background: #fff;
    color: var(--ios-guide-green-dark);
    font: inherit;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.detail-content .faq-ios-guide-tab:hover,
.detail-content .faq-ios-guide-tab:focus-visible,
.detail-content .faq-mode-tab:hover,
.detail-content .faq-mode-tab:focus-visible,
.detail-content .tabs:hover,
.detail-content .tabs:focus-visible {
    border-color: var(--ios-guide-green-dark);
    color: var(--ios-guide-green-dark);
}

.detail-content .faq-ios-guide-tab:focus-visible,
.detail-content .faq-mode-tab:focus-visible,
.detail-content .tabs:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.2);
    outline-offset: 2px;
}

.detail-content .faq-ios-guide-tab.is-active,
.detail-content .faq-mode-tab.is-active,
.detail-content .tabs.active {
    border: 3px solid var(--ios-guide-green-dark);
    background: #3eaa68;
    color: #fff;
    box-shadow: 0 6px 16px rgba(62, 170, 104, 0.2);
}

.detail-content .faq-ios-guide-tab.is-active::after,
.detail-content .faq-mode-tab.is-active::after,
.detail-content .tabs.active::after {
    content: "\2713";
    position: absolute;
    top: -7px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    border: 2px solid var(--ios-guide-green-dark);
    border-radius: 50%;
    background: #fff;
    color: var(--ios-guide-green-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.detail-content .faq-ios-guide-tab-mark,
.detail-content .faq-mode-tab-mark {
    flex: 0 0 auto;
    padding: 2px 7px;
    border-radius: 999px;
    background: #dcecff;
    color: var(--ios-guide-green-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
}

.detail-content .faq-ios-guide-tab-label,
.detail-content .faq-mode-tab-label {
    min-width: 0;
    max-width: 100%;
    color: var(--ios-guide-green-dark) !important;
    font-size: inherit !important;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-content .faq-ios-guide-tab.is-active .faq-mode-tab-label,
.detail-content .faq-mode-tab.is-active .faq-mode-tab-label {
    color: #fff !important;
}

.detail-content .faq-ios-guide-tab.is-active .faq-mode-tab-mark,
.detail-content .faq-mode-tab.is-active .faq-mode-tab-mark {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.detail-content .faq-ios-guide-panel {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.detail-content .faq-ios-guide-panel-intro {
    margin: 0 0 18px;
    color: #526174;
    font-size: 17px;
    line-height: 1.75;
}

.detail-content .faq-ios-guide-section {
    margin-top: 30px;
}

.detail-content .faq-ios-guide-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--ios-guide-green-dark);
    font-size: 26px;
    line-height: 1.45;
}

.detail-content .faq-ios-guide-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ios-guide-green);
    color: #fff;
    font-size: 18px;
}

.detail-content .faq-ios-guide-step {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 0 32px;
    padding: 0 0 32px;
    border: 0;
    border-bottom: 1px solid #dce8e4;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.detail-content .faq-ios-guide-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-content .faq-ios-guide-step-heading {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    margin: 0 0 16px;
}

.detail-content .faq-ios-guide-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ios-guide-green-dark);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.detail-content .faq-ios-guide-step-title {
    margin: 0;
    color: #172033;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;
}

.detail-content .faq-ios-guide-step-text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    color: #172033;
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-content .faq-harmony-guide .faq-harmony-warning {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.85;
}

.detail-content .faq-harmony-guide .faq-ios-guide-step-text,
.detail-content .faq-harmony-body-text {
    font-size: 17px !important;
    font-weight: 400;
    line-height: 1.85;
}

.detail-content .faq-harmony-section {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #dce8e4;
}

.detail-content .faq-harmony-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-content .faq-harmony-section-title {
    margin: 0 0 12px;
    color: #172033;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
}

.detail-content .faq-harmony-copy {
    display: block;
}

.detail-content .faq-harmony-body-text {
    margin: 0;
    color: #334155;
}

.detail-content .faq-harmony-body-text + .faq-harmony-body-text {
    margin-top: 8px;
}

.detail-content .faq-wireless-guide .faq-wireless-section-heading,
.detail-content .faq-wireless-guide .faq-wireless-substep-heading {
    align-self: stretch;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.detail-content .faq-wireless-guide .faq-wireless-section-heading {
    margin: 32px 0 18px;
}

.detail-content .faq-wireless-guide > .main-box1 {
    margin-top: 0;
    margin-bottom: 0;
}

.detail-content .faq-wireless-guide .faq-wireless-first-step-heading {
    margin: 0 0 14px;
}

.detail-content .faq-wireless-guide .faq-ios-guide-warning + .faq-wireless-section-heading {
    margin-top: 0;
}

.detail-content .faq-wireless-guide .faq-wireless-substep-heading {
    margin: 24px 0 14px;
}

.detail-content .faq-account-exit-guide .Htabs {
    margin-bottom: 0;
}

.detail-content .faq-account-exit-guide > .main-box1 .faq-wireless-substep-heading {
    margin-top: 14px;
}

.detail-content .faq-control-plugin-guide .faq-control-plugin-download-tabs {
    margin-bottom: 14px;
}

.detail-content .faq-control-plugin-guide .faq-wireless-substep-heading.faq-wireless-first-step-heading {
    margin-top: 0;
}

.detail-content .faq-wireless-guide .faq-wireless-guide-text {
    align-self: stretch;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 16px;
}

.detail-content .faq-wireless-guide .faq-wireless-link-list {
    margin: 0 0 14px;
}

.detail-content .faq-wireless-guide .faq-hide-inline-warning + .faq-wireless-link-list {
    margin-top: 16px;
}

.detail-content .faq-wireless-guide .faq-wireless-video-entry-list {
    margin: 0 0 14px;
}

.detail-content .faq-wireless-guide .faq-static-media-grid {
    margin: 14px 0 0;
}

.detail-content .faq-ios-guide-inline-link {
    color: var(--ios-guide-green-dark) !important;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-content .faq-ios-guide-step-body {
    min-width: 0;
    max-width: 100%;
}

.detail-content .faq-ios-guide-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.detail-content .faq-ios-guide-media-item {
    width: min(100%, 760px);
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.detail-content .faq-ios-guide-media-item img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    border: 1px solid #dce8e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    object-fit: contain;
}

.detail-content .faq-ios-guide-carousel {
    width: min(100%, 520px);
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.detail-content .faq-ios-guide-carousel .faq-carousel-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.detail-content .faq-ios-guide-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 180px;
    width: 100%;
    max-width: 100%;
    padding: 22px;
    box-sizing: border-box;
    border: 2px dashed #b9d9cd;
    border-radius: 8px;
    background: #f2fbf7;
    color: #6b8b80;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-content .faq-ios-guide-image i {
    color: var(--ios-guide-green);
    font-size: 34px;
    line-height: 1;
}

.detail-content .faq-ios-guide-image span {
    min-width: 0;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-content .faq-ios-guide-notice {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #f4f7fa;
    color: #526174;
    font-size: 15px;
    line-height: 1.75;
}

.detail-content .faq-ios-guide-notice i {
    flex: 0 0 auto;
    color: var(--ios-guide-green);
    font-size: 20px;
    line-height: 1.5;
}

.detail-content .faq-ios-supervision-link {
    --ios-guide-green: #0f9f6e;
    --ios-guide-green-dark: #087452;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    margin: 24px 0;
    padding: 18px 20px;
    border: 1px solid rgba(15, 159, 110, 0.24);
    border-left: 4px solid var(--ios-guide-green);
    border-radius: 10px;
    background: #effaf5;
    overflow-wrap: anywhere;
}

.detail-content .faq-ios-supervision-link-title {
    margin: 0 0 8px;
    color: #172033;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.detail-content .faq-ios-supervision-link-anchor {
    display: inline-block;
    max-width: 100%;
    color: var(--ios-guide-green-dark) !important;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-content .faq-ios-supervision-link-url {
    display: block;
    max-width: 100%;
    margin-top: 4px;
    color: #526174;
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-content .faq-doc-video {
    width: min(100%, 420px) !important;
    max-width: 100% !important;
    max-height: min(78vh, 820px);
    margin: 0 auto;
    object-fit: contain;
    background: #0f172a;
}

.detail-content .faq-video-host {
    position: relative;
}

.detail-content .faq-video-expand-button {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.faq-target-video-webview::-webkit-media-controls-fullscreen-button,
.faq-target-video-webview::-webkit-media-controls-overflow-button {
    display: none !important;
}

body.faq-video-expanded {
    overflow: hidden;
}

.faq-video-host.is-expanded {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    box-sizing: border-box;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 12px 12px calc(72px + env(safe-area-inset-bottom, 0px)) !important;
    overflow: hidden;
    background: #000;
}

.faq-video-host.is-expanded>.faq-target-video {
    width: 100% !important;
    max-width: 100% !important;
    max-height: calc(100vh - 96px) !important;
    max-height: calc(100dvh - 96px) !important;
    margin: auto !important;
    object-fit: contain;
}

.faq-video-host.is-expanded .faq-video-expand-button {
    display: inline-flex;
}

.faq-video-host.is-expanded .faq-video-expand-button {
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 12px;
}

.detail-content .faq-carousel {
    position: relative;
    width: min(100%, 520px);
    max-width: 100%;
    margin: 18px auto;
    overflow: hidden;
    border-radius: 20px;
    user-select: none;
}

.detail-content .faq-carousel.is-portrait {
    width: min(100%, clamp(300px, 40%, 420px), var(--faq-carousel-natural-width, 420px));
}

.detail-content .faq-carousel.is-landscape {
    width: min(100%, var(--faq-carousel-natural-width, 100%));
}

.detail-content .faq-carousel.is-low-resolution:not(.is-portrait):not(.is-landscape) {
    width: min(100%, var(--faq-carousel-natural-width, 520px));
}

.detail-content .faq-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease;
    touch-action: pan-y;
}

.detail-content .faq-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.detail-content .faq-carousel-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.detail-content .faq-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.38);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.detail-content .faq-carousel-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.detail-content .faq-carousel-prev {
    left: 10px;
}

.detail-content .faq-carousel-next {
    right: 10px;
}

.detail-content .faq-carousel-page {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.48);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.detail-content .faq-carousel-page span {
    color: #fff !important;
}

.detail-content .faq-carousel-indicators {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.36);
    z-index: 2;
}

.detail-content .faq-carousel-indicator {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.detail-content .faq-carousel-indicator.active {
    background: #fff;
    transform: scale(1.15);
}

.detail-content .detail-wide-media-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 18px 0;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.detail-content .detail-wide-media-scroll::-webkit-scrollbar {
    height: 6px;
}

.detail-content .detail-wide-media-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.45);
}

.detail-content .detail-wide-media {
    display: block;
}

.detail-content .detail-media-wrap,
.detail-content .detail-media-standalone {
    width: min(100%, 520px, var(--detail-media-preferred-width, 520px)) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.detail-content .detail-media-wrap.is-portrait,
.detail-content .detail-media-standalone.is-portrait {
    width: min(100%, 420px, var(--detail-media-preferred-width, clamp(300px, 40%, 420px))) !important;
}

.detail-content .detail-media-wrap.is-landscape,
.detail-content .detail-media-standalone.is-landscape {
    width: 100% !important;
}

.detail-content .detail-media-wrap.is-low-resolution,
.detail-content .detail-media-standalone.is-low-resolution {
    width: min(100%, var(--detail-media-natural-width, 520px), var(--detail-media-preferred-width, 520px)) !important;
}

.detail-content .detail-media-wrap.is-portrait.is-low-resolution,
.detail-content .detail-media-standalone.is-portrait.is-low-resolution {
    width: min(100%, 420px, var(--detail-media-natural-width, 420px), var(--detail-media-preferred-width, clamp(300px, 40%, 420px))) !important;
}

.detail-content .detail-media-wrap>img,
.detail-content .detail-media-wrap>video,
.detail-content img.detail-media-standalone,
.detail-content video.detail-media-standalone {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

@media (max-width: 1100px) {
    .detail-layout {
        grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .detail-content .faq-doc-video {
        width: min(100%, 360px) !important;
        max-height: 72vh;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    body>header {
        display: none;
    }

    .detail-layout {
        display: block;
    }

    .detail-main {
        padding-top: 82px;
    }

    .detail-main .faq-shell {
        padding-top: 8px;
    }

    .detail-panel,
    .detail-side {
        border: 0;
        box-shadow: none;
        border-radius: 8px;
        padding: 20px;
    }

    .detail-panel,
    .detail-content,
    .detail-content>div,
    .detail-content .faq-ios-guide,
    .detail-content .faq-ios-guide-step,
    .detail-content .faq-ios-guide-step-body {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .detail-title,
    .detail-content .faq-ios-guide-step-text,
    .detail-content .faq-ios-guide-image span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .detail-mobile-nav-toggle {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 116px);
        left: 12px;
        right: auto;
        bottom: auto;
        z-index: 1004;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        min-width: 48px;
        height: 48px;
        padding: 0;
        border: 1px solid rgba(79, 70, 229, 0.18);
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.94);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        box-shadow: 0 18px 34px rgba(79, 70, 229, 0.28);
        overflow: hidden;
        transition: width 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
        touch-action: none;
    }

    .detail-mobile-nav-toggle.is-open {
        background: #0f172a;
    }

    .detail-mobile-nav-toggle.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.92);
    }

    .detail-mobile-nav-toggle.is-dragging {
        transition: none;
        cursor: grabbing;
        transform: scale(1.02);
    }

    .detail-mobile-nav-toggle:not(.is-open):not(.show-label):not(.is-dragging) {
        width: 48px;
        border-radius: 999px;
        animation: detail-nav-fab-pulse 2.4s ease-in-out infinite;
    }

    .detail-mobile-nav-toggle.is-open,
    .detail-mobile-nav-toggle.show-label {
        width: 112px;
        padding-right: 12px;
    }

    .detail-mobile-nav-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .detail-mobile-nav-toggle i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1em;
        height: 1em;
        font-size: 20px;
        line-height: 1;
    }

    .detail-mobile-nav-text {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 0;
        opacity: 0;
        white-space: nowrap;
        overflow: hidden;
        transform: translateX(-8px);
        transition: max-width 0.22s ease, opacity 0.18s ease, transform 0.22s ease;
    }

    .detail-mobile-nav-toggle.is-open .detail-mobile-nav-text,
    .detail-mobile-nav-toggle.show-label .detail-mobile-nav-text {
        max-width: 48px;
        opacity: 1;
        transform: translateX(0);
    }

    .detail-mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.42);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 1002;
    }

    .detail-mobile-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .detail-side {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        width: min(320px, calc(100vw - 48px));
        z-index: 1003;
        height: 100vh;
        max-height: none;
        overflow-y: auto;
        opacity: 1;
        pointer-events: none;
        transform: translateX(calc(-100% - 16px));
        transition: transform 0.24s ease;
        box-shadow: 0 28px 56px rgba(15, 23, 42, 0.22);
        border-radius: 0 8px 8px 0;
    }

    .detail-mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: -4px -4px 16px;
        padding: 0 0 14px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    }

    .detail-mobile-drawer-title {
        font-size: 16px;
        font-weight: 800;
        color: var(--text-strong);
    }

    .detail-mobile-drawer-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.1);
        color: var(--faq-primary);
        font-size: 18px;
        cursor: pointer;
        flex: 0 0 auto;
    }

    .detail-side.mobile-open {
        pointer-events: auto;
        transform: translateX(0);
    }

    .detail-nav-list,
    .detail-item-nav,
    .detail-chip-list,
    .detail-nav-items {
        max-height: none;
    }

    .detail-nav-toggle {
        gap: 12px;
        padding: 10px 12px;
    }

    .detail-nav-title {
        font-size: 16px;
    }

    .detail-nav-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .detail-nav-icon {
        width: 18px;
        height: 18px;
        font-size: 15px;
    }

    .detail-item-link {
        padding: 10px 2px;
    }

    .detail-item-link span {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.7;
    }

    .detail-toolbar {
        flex-direction: column;
    }

    .detail-toolbar .toolbar-link {
        align-self: flex-start;
        width: 100%;
        justify-content: center;
    }

    .detail-content .title {
        font-size: 24px;
    }

    .detail-content p,
    .detail-content span,
    .detail-content li,
    .detail-content div {
        font-size: 14px;
        line-height: 1.85;
    }

    .detail-content .indent-46 {
        text-indent: 0;
    }

    .detail-content .faq-doc-brand-title {
        font-size: 18px;
    }

    .detail-content .faq-gallery {
        grid-template-columns: 1fr;
    }

    .detail-content .faq-doc-image {
        width: 100% !important;
    }

    .detail-content .faq-ios-guide-warning {
        padding: 12px 14px;
        font-size: 18px !important;
    }

    .detail-content .faq-ios-supervision-link {
        margin: 20px 0;
        padding: 14px 15px;
    }

    .detail-content .faq-ios-supervision-link-title {
        font-size: 15px;
    }

    .detail-content .faq-ios-supervision-link-anchor {
        font-size: 16px;
    }

    .detail-content .faq-ios-supervision-link-url {
        font-size: 12px;
    }

    .detail-content .faq-ios-guide-tabs,
    .detail-content .faq-mode-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .detail-content .faq-mode-tabs--three {
        margin-top: 20px;
    }

    .detail-content .faq-bind-guide-warning {
        margin-bottom: 18px;
    }

    .detail-content .faq-bind-guide-warning p {
        font-size: 18px !important;
    }

    .detail-content .faq-bind-guide-panel .faq-ios-guide-step-text {
        font-size: 16px !important;
    }

    .detail-content .faq-bind-guide-step-note {
        font-size: 16px;
    }

    .detail-content .faq-bind-guide-tabs {
        margin-top: 0;
    }

    .detail-content .faq-ios-guide-tab,
    .detail-content .faq-mode-tab,
    .detail-content .tabs {
        min-height: 44px;
        padding: 5px 16px;
        font-size: 17px;
    }

    .detail-content .faq-ios-guide-tab-mark,
    .detail-content .faq-mode-tab-mark {
        font-size: 12px;
    }

    .detail-content .faq-ios-guide-title {
        font-size: 22px;
    }

    .detail-content .faq-ios-guide-step {
        margin-bottom: 26px;
        padding: 0 0 26px;
    }

    .detail-content .faq-ios-guide-step-number {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .detail-content .faq-ios-guide-step-title {
        font-size: 19px;
    }

    .detail-content .faq-ios-guide-step-text {
        font-size: 16px !important;
    }

    .detail-content .faq-harmony-guide .faq-harmony-warning {
        font-size: 18px;
    }

    .detail-content .faq-harmony-body-text {
        font-size: 16px !important;
    }

    .detail-content .faq-harmony-section {
        margin-bottom: 26px;
        padding-bottom: 26px;
    }

    .detail-content .faq-harmony-section-title {
        font-size: 19px;
    }

    .detail-content .faq-ios-guide-media {
        gap: 10px;
    }

    .detail-content .faq-ios-guide-media-item {
        width: 100%;
    }

    .detail-content .faq-ios-guide-carousel {
        width: 100%;
    }

    .detail-content .faq-ios-guide-image {
        min-height: 140px;
        padding: 16px;
    }

    .detail-content .faq-carousel {
        width: 100% !important;
    }

    .detail-content .faq-carousel.is-portrait {
        width: min(100%, 360px, var(--faq-carousel-natural-width, 360px)) !important;
    }

    .detail-content .faq-carousel.is-landscape,
    .detail-content .faq-carousel.is-low-resolution:not(.is-portrait) {
        width: min(100%, var(--faq-carousel-natural-width, 100%)) !important;
    }

    .detail-content .detail-media-wrap,
    .detail-content .detail-media-standalone {
        width: 100% !important;
        max-width: 100% !important;
    }

    .detail-content .detail-media-wrap.is-portrait,
    .detail-content .detail-media-standalone.is-portrait {
        width: min(100%, 360px) !important;
    }

    .detail-content .detail-media-wrap.is-portrait.is-low-resolution,
    .detail-content .detail-media-standalone.is-portrait.is-low-resolution {
        width: min(100%, 360px, var(--detail-media-natural-width, 360px)) !important;
    }

    .detail-content .detail-wide-media-scroll {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        margin-left: -2px;
    }

    .detail-content .detail-wide-media {
        min-width: 100% !important;
    }

    .detail-content .faq-carousel-button {
        width: 34px;
        height: 34px;
    }

    .detail-content img,
    .detail-content video,
    .detail-content .w-30p,
    .detail-content .w-40p,
    .detail-content .w-50p,
    .detail-content .w-60p,
    .detail-content .w-75p,
    .detail-content .w-80p,
    .detail-content .w-90p,
    .detail-content .w-100p {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .detail-content .superBox {
        padding: 16px;
        gap: 14px;
    }

    .detail-content .superBox>img {
        flex-basis: 48px;
        width: 48px !important;
        max-width: 48px !important;
        height: 48px;
    }

    .detail-content .faq-super-entry-card {
        gap: 12px;
        padding: 14px;
    }

    .detail-content .faq-super-entry-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .detail-content .faq-super-entry-icon img {
        width: 22px !important;
        max-width: 22px !important;
        height: 22px;
    }

    .detail-content .faq-super-entry-title {
        font-size: 16px;
    }

    .detail-content .faq-offline-entry-card .faq-super-entry-title {
        font-size: 16px;
    }

    .detail-content .faq-offline-plain-step {
        gap: 10px;
    }

    .detail-content .faq-offline-plain-number {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .detail-content .faq-offline-plain-step p {
        font-size: 16px;
    }

    .detail-content .faq-membership-intro,
    .detail-content .faq-membership-notes p {
        font-size: 16px;
    }

    .detail-content .faq-membership-table th,
    .detail-content .faq-membership-table td {
        padding: 8px 5px;
        font-size: 14px;
        line-height: 1.45;
    }

    .detail-content .faq-membership-table th:first-child {
        padding-left: 9px;
    }

    .detail-content .faq-membership-table tbody tr.is-emphasized td .faq-membership-value {
        font-size: 16px;
    }

    .detail-content .faq-membership-status {
        font-size: 20px;
    }

    .detail-content .faq-hide-inline-warning {
        font-size: 16px;
    }

    .detail-content .faq-hide-step-heading {
        gap: 10px;
    }

    .detail-content .faq-hide-step-number {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .detail-content .faq-hide-step-heading p {
        font-size: 16px;
    }

    .detail-content .faq-static-media-grid,
    .detail-content .faq-hide-media-pair {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .detail-content .faq-static-media-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        align-items: stretch;
    }

    .detail-content figure.faq-static-media,
    .detail-content figure.faq-static-media.detail-media-wrap,
    .detail-content figure.faq-static-media.detail-media-wrap.is-portrait,
    .detail-content figure.faq-static-media.detail-media-wrap.is-landscape,
    .detail-content figure.faq-static-media.detail-media-wrap.is-low-resolution,
    .detail-content figure.faq-hide-media,
    .detail-content .faq-static-media-grid figure.faq-static-media,
    .detail-content .faq-hide-media-pair figure.faq-hide-media {
        flex: 0 0 auto;
        width: 100% !important;
        min-width: 0;
        max-width: 100% !important;
    }

    .detail-content .faq-hide-warning .faq-supercontrol-warning-critical span,
    .detail-content .faq-hide-warning .faq-supercontrol-warning-detail {
        font-size: 16px !important;
    }

    .detail-content .faq-hide-guide-heading {
        font-size: 19px;
    }

    .detail-content .faq-super-entry-description {
        font-size: 13px;
    }

    .detail-content .faq-super-entry-action {
        white-space: normal;
    }

    .detail-content .faq-super-entry-arrow {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    @keyframes detail-nav-fab-pulse {

        0%,
        100% {
            box-shadow: 0 18px 34px rgba(79, 70, 229, 0.28);
            transform: scale(1);
        }

        50% {
            box-shadow: 0 22px 40px rgba(79, 70, 229, 0.38);
            transform: scale(1.04);
        }
    }
}

@media (max-width: 480px) {
    .detail-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .detail-side {
        padding: 16px;
        width: min(300px, calc(100vw - 36px));
    }

    .detail-mobile-drawer-head {
        margin-bottom: 14px;
    }

    .detail-title {
        font-size: 20px;
    }

    .detail-mobile-nav-toggle {
        top: calc(env(safe-area-inset-top, 0px) + 112px);
        left: 10px;
        right: auto;
        bottom: auto;
        font-size: 13px;
    }

    .detail-mobile-nav-toggle.is-open,
    .detail-mobile-nav-toggle.show-label {
        width: 108px;
    }

    .detail-mobile-nav-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .detail-content .detail-wide-media-scroll {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .detail-content .faq-doc-video {
        width: 100% !important;
        max-height: 68vh;
        border-radius: 16px;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .detail-content .faq-video-host--webview .faq-video-expand-button {
        display: inline-flex;
    }

    .faq-video-host.is-expanded.is-landscape-expanded {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        width: var(--faq-video-rotate-width, 100vh) !important;
        height: var(--faq-video-rotate-height, 100vw) !important;
        padding: 12px 12px calc(72px + env(safe-area-inset-bottom, 0px)) !important;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center center;
    }

    .faq-video-host.is-expanded.is-landscape-expanded>.faq-target-video {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        margin: auto !important;
        object-fit: fill;
    }

    .faq-video-host.is-expanded.is-landscape-expanded .faq-video-expand-button {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .faq-video-host--webview .faq-video-expand-button {
        display: none;
    }

    .faq-video-host--webview.is-expanded .faq-video-expand-button {
        display: inline-flex;
    }

    .faq-video-host.is-expanded {
        padding: 12px !important;
    }

    .faq-video-host.is-expanded>.faq-target-video {
        max-height: calc(100vh - 24px) !important;
        max-height: calc(100dvh - 24px) !important;
    }
}
