/* User-defined style */
.tm-section-title {
    text-align: left;
}

/* nav dropdown: force solid backgrounds (no glass/opacity) in light & dark */
.tm-nav-dropdown {
    background: #ffffff !important;
    border: 1px solid #d9dee7 !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    overflow: hidden;
}

.tm-nav-dropdown .tm-dropdown-item {
    color: #334155 !important;
    border-radius: 10px;
}

.tm-nav-dropdown .tm-dropdown-item:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .tm-nav-dropdown {
    background: #101926 !important;
    border-color: #2c3f5d !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .tm-nav-dropdown .tm-dropdown-item {
    color: #c8d6ea !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .tm-nav-dropdown .tm-dropdown-item:hover {
    background: #1a2740 !important;
    color: #ffffff !important;
}

/* nav001 shared UI */
.nav001-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav001-section-head-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.nav001-section-eyebrow {
    margin: 0;
    color: #6366f1;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav001-section-note {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.nav001-section-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid #dbe4f2;
    background: #f8fbff;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav001-home-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 52rem;
    margin: 1.75rem auto 0;
}

.nav001-home-stat-card {
    border-radius: 1.15rem;
    border: 1px solid rgba(191, 219, 254, 0.8);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    padding: 1rem 1.05rem;
    text-align: left;
}

.nav001-home-stat-value {
    display: block;
    color: #0f172a;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.1;
}

.nav001-home-stat-label {
    display: block;
    margin-top: 0.3rem;
    color: #64748b;
    font-size: 0.84rem;
    font-weight: 600;
}

.nav001-home-category-rail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 60rem;
    margin: 1.4rem auto 0;
}

.nav001-home-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid #dbe4f2;
    background: rgba(255, 255, 255, 0.88);
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all .2s ease;
}

.nav001-home-category-link:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
    background: #ffffff;
}

.nav001-cate-page-shell {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(241, 245, 249, 0.9) 100%);
}

.nav001-cate-resultbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-top: 1.75rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid #dbe4f2;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.nav001-cate-resultbar-copy {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.nav001-cate-resultbar-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 800;
}

.nav001-cate-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.nav001-nav-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #dbe4f0;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.nav001-nav-card:hover {
    transform: translateY(-3px);
    border-color: #bfd5f5;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.nav001-nav-card-cover {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.nav001-nav-card-title {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.nav001-nav-card-summary {
    margin: 0.4rem 0 0;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.6;
}

.nav001-nav-card .overlay {
    opacity: 0;
    transition: opacity .22s ease;
}

.nav001-nav-card:hover .overlay {
    opacity: 1;
}

.nav001-nav-card .hover-bg {
    transition: background-color .2s ease;
}

.nav001-nav-card:hover .hover-bg {
    background: rgba(15, 23, 42, 0.04);
}

.nav001-detail-page {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 24rem),
        linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 1) 32%);
}

.nav001-detail-hero-card {
    border-radius: 1.4rem;
    border: 1px solid var(--theme-border-primary);
    background: color-mix(in srgb, var(--theme-bg-elevated) 92%, transparent);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: clamp(1.25rem, 2vw, 1.8rem);
}

.nav001-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.nav001-detail-meta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid #dbe4f2;
    background: #f8fbff;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}

.nav001-detail-meta-chip.is-live {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.nav001-detail-meta-chip.is-archived {
    background: #f1f5f9;
    border-color: #dbe4f2;
    color: #64748b;
}

.nav001-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.nav001-detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.9rem;
    padding: 0 1rem;
    border-radius: 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all .22s ease;
}

.nav001-detail-action-primary {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.nav001-detail-action-primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav001-detail-action-secondary {
    border: 1px solid var(--theme-border-primary);
    background: var(--theme-bg-elevated);
    color: var(--theme-text-primary);
}

.nav001-detail-action-secondary:hover {
    background: var(--theme-bg-tertiary);
}

.nav001-detail-action-muted {
    background: var(--theme-text-muted);
    color: #ffffff;
}

.nav001-detail-preview-shell {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid var(--theme-border-primary);
    background: var(--theme-bg-secondary);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.nav001-detail-preview-media {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .7s ease-out;
}

.nav001-detail-preview-shell:hover .nav001-detail-preview-media {
    transform: scale(1.04);
}

.nav001-detail-preview-label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.9rem;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f8fafc;
    font-size: 0.76rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.nav001-detail-sidebar-card {
    border-radius: 1rem;
    border: 1px solid var(--theme-border-primary);
    background: var(--theme-bg-elevated);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: 1.2rem;
}

.nav001-detail-sidebar-title {
    margin: 0 0 1rem;
    color: var(--theme-text-primary);
    font-size: 1rem;
    font-weight: 800;
}

.nav001-detail-facts {
    display: grid;
    gap: 0.8rem;
}

.nav001-detail-fact-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.nav001-detail-fact-label {
    color: var(--theme-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav001-detail-fact-value {
    color: var(--theme-text-primary);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: right;
}

.nav001-nav-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.nav001-nav-card-footer-note {
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 700;
}

.nav001-nav-card-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 800;
}

.nav001-nav-card-footer-link svg {
    width: 0.9rem;
    height: 0.9rem;
}

.sticky-nav-container {
    position: sticky;
    top: 60px;
    z-index: 50;
    transition: all 0.3s ease;
}

.nav-link-item {
    position: relative;
    font-weight: 600;
    padding: 1rem 0.5rem;
    transition: color 0.2s;
}

.nav-link-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
}

.scroll-section {
    scroll-margin-top: 100px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav001-detail-section-title {
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    color: var(--theme-text-primary);
    font-size: 1.55rem;
    font-weight: 800;
}

.nav001-detail-section-title-bar {
    width: 0.25rem;
    height: 1.5rem;
    border-radius: 999px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.nav001-detail-card {
    border-radius: 1rem;
    border: 1px solid var(--theme-border-primary);
    background: var(--theme-bg-elevated);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.nav001-detail-info-card {
    background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
    border-color: #bfdbfe;
}

.nav001-submit-shell {
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.05), transparent 24rem),
        linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 1) 32%);
}

.nav001-submit-card {
    border-radius: 1.35rem;
    border: 1px solid var(--theme-border-primary);
    background: var(--theme-bg-elevated);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.nav001-submit-note {
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
    line-height: 1.7;
}

.nav001-submit-note.is-free {
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #047857;
}

.nav001-submit-note.is-paid {
    border: 1px solid #fed7aa;
    background: #fff7ed;
    color: #c2410c;
}

.nav001-submit-label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--theme-text-primary);
    font-size: 0.86rem;
    font-weight: 800;
}

.nav001-submit-field {
    width: 100%;
    border: 1px solid var(--theme-border-primary);
    border-radius: 0.75rem;
    background: var(--theme-bg-secondary);
    color: var(--theme-text-primary);
    min-height: 2.8rem;
    padding: 0.62rem 0.85rem;
    font-size: 0.92rem;
    line-height: 1.45;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.nav001-submit-field:focus {
    outline: none;
    border-color: #111827;
    background: var(--theme-bg-elevated);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.nav001-submit-field[readonly] {
    background: color-mix(in srgb, var(--theme-bg-secondary) 88%, transparent);
}

.nav001-submit-help {
    margin-top: 0.45rem;
    color: var(--theme-text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.nav001-submit-category-picker {
    border: 1px solid var(--theme-border-primary);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--theme-bg-secondary));
    padding: 1rem;
}

.nav001-submit-category-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.nav001-submit-category-kicker,
.nav001-submit-category-group-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--theme-text-muted);
}

.nav001-submit-category-tip,
.nav001-submit-media-empty {
    color: var(--theme-text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.nav001-submit-category-count,
.nav001-submit-category-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

.nav001-submit-category-count {
    padding: 0.4rem 0.7rem;
    background: rgba(15, 23, 42, 0.08);
    color: #111827;
}

.nav001-submit-category-selected,
.nav001-submit-category-group {
    border-radius: 1rem;
    border: 1px solid var(--theme-border-primary);
    background: rgba(255, 255, 255, 0.72);
}

.nav001-submit-category-selected {
    margin-top: 0.9rem;
    padding: 0.85rem;
}

.nav001-submit-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.nav001-submit-category-chip {
    padding: 0.45rem 0.8rem;
    background: rgba(148, 163, 184, 0.12);
    color: var(--theme-text-primary);
}

.nav001-submit-category-chip.is-primary {
    background: rgba(15, 23, 42, 0.08);
    color: #111827;
}

.nav001-submit-category-groups {
    margin-top: 1rem;
    max-height: 16.5rem;
    overflow: auto;
    display: grid;
    gap: 0.85rem;
}

.nav001-submit-category-group {
    padding: 0.9rem;
}

.nav001-submit-category-options {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.nav001-submit-category-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 40px;
    border-radius: 0.5rem;
    transition: background-color .2s ease;
}

.nav001-submit-category-option:hover {
    background: var(--theme-bg-secondary);
}

.nav001-submit-category-option.is-active {
    background: var(--theme-bg-secondary);
}

.nav001-submit-category-option-label {
    font-size: 0.95rem;
    color: var(--theme-text-primary);
}

.nav001-submit-media-card {
    display: flex;
    flex-direction: column;
}

.nav001-submit-media-stage {
    flex: 1;
    min-height: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav001-submit-media-empty,
.nav001-submit-media-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.nav001-submit-media-empty {
    text-align: center;
}

.nav001-submit-media-badge {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px dashed var(--theme-border-primary);
    background: rgba(148, 163, 184, 0.1);
    color: var(--theme-text-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.nav001-submit-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.6rem;
    border-radius: 0.95rem;
    background: #111827;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav001-submit-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav001-submit-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0 1rem;
    border-radius: 0.9rem;
    border: 1px solid var(--theme-border-primary);
    background: var(--theme-bg-elevated);
    color: var(--theme-text-secondary);
    font-size: 0.88rem;
    font-weight: 700;
}

.nav001-submit-steps {
    display: grid;
    gap: 0.9rem;
}

.nav001-submit-step {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.nav001-submit-step-index {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #111827;
    font-size: 0.84rem;
    font-weight: 800;
}

.nav001-submit-step-title {
    margin: 0;
    color: var(--theme-text-primary);
    font-size: 0.92rem;
    font-weight: 800;
}

.nav001-submit-step-desc {
    margin: 0.25rem 0 0;
    color: var(--theme-text-secondary);
    font-size: 0.84rem;
    line-height: 1.6;
}

.nav001-submit-checklist {
    display: grid;
    gap: 0.75rem;
}

.nav001-submit-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--theme-text-secondary);
    font-size: 0.84rem;
    line-height: 1.6;
}

.nav001-submit-checklist-dot {
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.45rem;
    border-radius: 999px;
    flex-shrink: 0;
    background: #22c55e;
}

.nav001-seo-link-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.nav001-seo-link-card {
    border-radius: 1rem;
    border: 1px solid var(--theme-border-primary);
    background: var(--theme-bg-elevated);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: 1.2rem;
}

.nav001-seo-link-title {
    margin: 0 0 0.35rem;
    color: var(--theme-text-primary);
    font-size: 1rem;
    font-weight: 800;
}

.nav001-seo-link-copy {
    margin: 0;
    color: var(--theme-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.nav001-seo-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.nav001-seo-link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid #dbe4f2;
    background: #f8fbff;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all .2s ease;
}

.nav001-seo-link-chip:hover {
    border-color: #111827;
    background: #ffffff;
    color: #111827;
}

.nav001-submit-card .tox-tinymce {
    border-color: var(--theme-border-primary);
}

.nav001-submit-card .tox-tinymce:focus-within {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.nav001-submit-card .tox .tox-tbtn--enabled,
.nav001-submit-card .tox .tox-tbtn--enabled:hover,
.nav001-submit-card .tox .tox-tbtn:hover {
    background: #f1f5f9;
    color: #111827;
}

.nav001-submit-card .nav001-rich-editor-count {
    margin-left: .75rem;
    color: var(--theme-text-muted);
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav001-submit-card .nav001-rich-editor-count.is-over {
    color: #dc2626;
}

/* nav001 home layout refresh */
.nav001-home-wrap,
.nav001-home-main {
    font-family: "Manrope", "Plus Jakarta Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.nav001-home-wrap {
    position: relative;
    background: linear-gradient(180deg, #f6faff 0%, #f3f8ff 42%, #ffffff 100%);
}

.nav001-home-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0) 32%),
                radial-gradient(circle at 92% 18%, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0) 30%),
                radial-gradient(circle at 62% 92%, rgba(251, 146, 60, 0.16), rgba(251, 146, 60, 0) 33%);
}

.nav001-home-announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.12);
    padding: 10px 14px;
}

.nav001-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #0f172a;
    background: linear-gradient(90deg, #fde68a, #fdba74);
}

.nav001-announcement-text {
    margin: 0;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
}

.nav001-announcement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.32);
}

.nav001-announcement-btn:hover {
    transform: translateY(-1px);
    color: #ffffff;
}

.nav001-home-hero-copy :is(h1, h2, h3) {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.nav001-home-hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.3rem);
}

.nav001-home-hero-copy h2 {
    font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.nav001-home-hero-highlight {
    color: #6d5cff;
    background: linear-gradient(90deg, #5b6cff 0%, #7a61f9 48%, #8f5cf7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav001-home-hero-copy p {
    margin-top: 1rem;
    color: #475569;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
}

.nav001-home-hero-subtitle {
    margin: 1rem auto 0;
    max-width: 42rem;
    color: #64748b;
    font-size: 15px;
}

.nav001-home-search-form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #cddfff;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
    padding: 7px;
}

.nav001-home-search-icon {
    width: 42px;
    height: 42px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav001-home-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 15px;
    font-weight: 500;
    padding-right: 8px;
}

.nav001-home-search-input:focus {
    outline: none;
}

.nav001-home-search-input::placeholder {
    color: #94a3b8;
}

.nav001-home-search-btn {
    border: 0;
    border-radius: 12px;
    padding: 0 18px;
    height: 42px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
    transition: transform .2s ease;
}

.nav001-home-search-btn:hover {
    transform: translateY(-1px);
}

.nav001-home-hot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.nav001-home-hot-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.nav001-home-hot-link {
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    padding: 4px 10px;
    font-size: 13px;
    transition: all .2s ease;
}

.nav001-home-hot-link:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
}

.nav001-home-main-cta,
.nav001-home-sub-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s ease;
}

.nav001-home-main-cta {
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.nav001-home-main-cta:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav001-home-sub-cta {
    color: #334155;
    border: 1px solid #d3dfef;
    background: #ffffff;
}

.nav001-home-sub-cta:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
}

.nav001-home-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #dbe4f2;
    background: rgba(255, 255, 255, 0.92);
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    height: 34px;
    padding: 0 12px;
    transition: all .2s ease;
}

.nav001-home-pill:hover {
    color: #1d4ed8;
    border-color: #93c5fd;
    background: #ffffff;
}

.nav001-home-pill-active {
    color: #ffffff;
    border-color: #1d4ed8;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.nav001-home-featured-card {
    display: block;
    border-radius: 18px;
    border: 1px solid #dbeafe;
    background: linear-gradient(130deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 20px 38px rgba(30, 64, 175, 0.14);
    padding: 18px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav001-home-featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(30, 64, 175, 0.2);
}

.nav001-home-featured-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.nav001-home-featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #fde68a;
    background: #fff7d6;
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    height: 24px;
    padding: 0 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav001-home-featured-cta {
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
}

.nav001-home-featured-body {
    display: flex;
    gap: 14px;
}

.nav001-home-featured-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border: 1px solid #dbeafe;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.nav001-home-featured-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.nav001-home-featured-title {
    margin: 0;
    color: #0f172a;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.nav001-home-featured-summary {
    margin: 8px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav001-home-featured-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 600;
    height: 24px;
    padding: 0 9px;
}

.nav001-panel,
.nav001-side-card {
    border-radius: 16px;
    border: 1px solid #e5eaf3;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav001-panel {
    padding: 1.35rem;
}

.nav001-panel-prose {
    color: #334155;
    line-height: 1.8;
}

.nav001-inline-link {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
}

.nav001-inline-link:hover {
    color: #1d4ed8;
}

.nav001-product-section-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #675ef2;
    font-size: clamp(1.5rem, 2.1vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.nav001-product-section-icon {
    width: 22px;
    height: 22px;
}

.nav001-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
    border: 1px solid #dbe4f0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.nav001-product-card:hover {
    transform: translateY(-4px);
    border-color: #bfd5f5;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.nav001-product-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 8.5;
    background: linear-gradient(145deg, #e8eef7, #f8fbff);
    overflow: hidden;
}

.nav001-product-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.nav001-product-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.nav001-product-card:hover .nav001-product-cover img {
    transform: scale(1.04);
}

.nav001-product-cover-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.5);
    background: rgba(29, 78, 216, 0.92);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    z-index: 3;
}

.nav001-product-cover-badge-latest {
    background: rgba(37, 99, 235, 0.94);
}

.nav001-product-cover-meta {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
}

.nav001-product-cover-category {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    max-width: min(100%, 160px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.55);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #eff6ff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav001-product-body {
    flex: 1;
    min-width: 0;
    padding: 8px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav001-product-title-row {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.nav001-product-title-icon {
    width: 18px;
    height: 18px;
    color: #6366f1;
    flex-shrink: 0;
}

.nav001-product-title-icon svg {
    width: 100%;
    height: 100%;
}

.nav001-product-title {
    margin: 0;
    min-width: 0;
    color: #172554;
    font-size: clamp(0.9rem, 0.88vw, 1rem);
    font-weight: 800;
    line-height: 1.26;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 0;
}

.nav001-product-summary {
    margin: 0;
    color: #475569;
    font-size: 12px;
    line-height: 1.45;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav001-product-summary-latest {
    color: #64748b;
    font-size: 12px;
    min-height: 0;
}

.nav001-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
    padding-top: 4px;
    min-height: 46px;
    max-height: 46px;
    overflow: hidden;
    align-content: flex-start;
}

.nav001-product-meta-tag {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 22px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav001-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    min-height: 94px;
    padding: 10px 8px;
    transition: all .2s ease;
}

.nav001-mini-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.12);
}

.nav001-mini-logo-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav001-mini-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav001-mini-title {
    margin: 0;
    width: 100%;
    text-align: center;
    color: #1e293b;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav001-latest-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    overflow: hidden;
    transition: all .2s ease;
}

.nav001-latest-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.nav001-latest-cover {
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    background: #f8fafc;
}

.nav001-latest-cover img {
    transition: transform .35s ease;
}

.nav001-latest-card:hover .nav001-latest-cover img {
    transform: scale(1.03);
}

.nav001-latest-logo-wrap {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 2px;
    flex-shrink: 0;
}

.nav001-latest-title {
    min-width: 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav001-latest-title:hover {
    color: #1d4ed8;
}

.nav001-latest-summary {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav001-latest-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.nav001-latest-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #1e40af;
    font-size: 12px;
    font-weight: 600;
    padding: 0 10px;
}

.nav001-latest-link {
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
}

.nav001-latest-link:hover {
    color: #1d4ed8;
}

.nav001-side-card {
    padding: 1.15rem;
}

.nav001-side-title {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.nav001-side-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    height: 32px;
    padding: 0 11px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s ease;
}

.nav001-side-chip:hover {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: #ffffff;
}

.nav001-side-ad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #4338ca;
    font-size: 11px;
    font-weight: 700;
    padding: 0 7px;
}

.nav001-side-sponsor,
.nav001-side-recommend {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.nav001-side-sponsor-logo,
.nav001-side-recommend-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav001-side-sponsor-title,
.nav001-side-recommend-title {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.nav001-side-sponsor-summary,
.nav001-side-recommend-summary {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav001-newsletter-wrap {
    margin-top: 0.25rem;
}

.nav001-newsletter-card {
    border-radius: 16px;
    border: 1px solid #e5eaf3;
    background: linear-gradient(135deg, #eef2f7 0%, #e7edf6 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: clamp(24px, 4vw, 40px) clamp(18px, 4vw, 42px);
    text-align: center;
}

.nav001-newsletter-eyebrow {
    margin: 0;
    color: #6366f1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav001-newsletter-title {
    margin: 10px 0 0;
    color: #0f172a;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
}

.nav001-newsletter-desc {
    margin: 12px auto 0;
    max-width: 44rem;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
}

.nav001-newsletter-form {
    margin: 20px auto 0;
    max-width: 560px;
    display: flex;
    align-items: stretch;
}

.nav001-newsletter-input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: 1px solid #d5dfec;
    border-right: 0;
    border-radius: 10px 0 0 10px;
    background: #ffffff;
    color: #0f172a;
    font-size: 15px;
    padding: 0 14px;
}

.nav001-newsletter-input:focus {
    outline: none;
    border-color: #93c5fd;
}

.nav001-newsletter-input::placeholder {
    color: #93a4bc;
}

.nav001-newsletter-btn {
    width: 52px;
    height: 48px;
    border: 0;
    border-radius: 0 10px 10px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav001-newsletter-btn:hover {
    transform: translateY(-1px);
}

.nav001-newsletter-btn-icon {
    width: 18px;
    height: 18px;
}

.nav001-newsletter-feedback {
    margin: 12px auto 0;
    max-width: 560px;
    font-size: 13px;
    font-weight: 600;
}

.nav001-newsletter-feedback.is-success {
    color: #15803d;
}

.nav001-newsletter-feedback.is-error {
    color: #b91c1c;
}

@media (max-width: 900px) {
    .nav001-home-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-nav-container {
        top: 56px;
    }

    .nav001-detail-hero-card {
        gap: 1.5rem;
    }

    .nav001-detail-actions {
        gap: 0.6rem;
    }

    .nav001-detail-action {
        flex: 1 1 calc(50% - 0.6rem);
    }

    .nav001-submit-shell {
        padding-inline: 1rem;
    }

    .nav001-home-announcement-inner {
        border-radius: 16px;
    }

    .nav001-home-featured-body {
        flex-direction: column;
    }

    .nav001-product-summary {
        font-size: 15px;
        min-height: 88px;
    }

    .nav001-product-summary-latest {
        font-size: 13px;
        min-height: 74px;
    }
}

@media (max-width: 640px) {
    .nav001-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav001-home-stat-grid {
        grid-template-columns: 1fr;
    }

    .nav001-cate-resultbar {
        align-items: flex-start;
    }

    .nav001-cate-grid {
        padding: 0;
    }

    .sticky-nav-container {
        top: 52px;
    }

    .nav-link-item {
        padding: 0.9rem 0.15rem;
        white-space: nowrap;
    }

    .nav001-detail-hero-card {
        padding: 1rem;
    }

    .nav001-detail-meta {
        gap: 0.5rem;
    }

    .nav001-detail-actions {
        flex-direction: column;
    }

    .nav001-detail-action {
        width: 100%;
        flex: 1 1 100%;
    }

    .nav001-detail-section-title {
        font-size: 1.3rem;
        margin-bottom: 1.1rem;
    }

    .nav001-detail-sidebar-card {
        padding: 1rem;
    }

    .nav001-detail-fact-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav001-detail-fact-value {
        text-align: left;
    }

    .nav001-submit-card {
        border-radius: 1rem;
    }

    .nav001-seo-link-grid {
        grid-template-columns: 1fr;
    }

    .nav001-home-announcement-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav001-home-search-form {
        flex-wrap: wrap;
        border-radius: 14px;
        gap: 6px;
    }

    .nav001-home-search-icon {
        width: 34px;
        height: 34px;
    }

    .nav001-home-search-input {
        width: calc(100% - 40px);
    }

    .nav001-home-search-btn {
        width: 100%;
        margin-top: 2px;
    }

    .nav001-newsletter-form {
        max-width: 100%;
    }

    .nav001-product-body {
        padding: 14px 14px 16px;
    }

    .nav001-product-title {
        font-size: 1.08rem;
    }

    .nav001-product-summary {
        font-size: 14px;
        min-height: 76px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .nav001-product-summary-latest {
        font-size: 12px;
        min-height: 62px;
    }
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-wrap {
    background: linear-gradient(180deg, #071424 0%, #091728 42%, #0b1522 100%);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-section-note,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-resultbar-copy {
    color: #9fb4d3;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-section-meta,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-category-link,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-resultbar {
    background: rgba(10, 22, 40, 0.84);
    border-color: rgba(64, 88, 126, 0.66);
    color: #d4e3f8;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-category-link:hover {
    color: #8fc0ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-stat-card {
    background: rgba(10, 22, 40, 0.82);
    border-color: rgba(64, 88, 126, 0.66);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-stat-value {
    color: #ecf3ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-stat-label {
    color: #9fb4d3;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-page-shell,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-page {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 24rem),
        linear-gradient(180deg, #071424 0%, #0b1522 100%);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-hero-card,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-sidebar-card {
    background: rgba(10, 22, 40, 0.84);
    border-color: rgba(64, 88, 126, 0.66);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-meta-chip {
    background: rgba(15, 23, 42, 0.54);
    border-color: rgba(64, 88, 126, 0.66);
    color: #c7d7ec;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-meta-chip.is-live {
    background: rgba(6, 78, 59, 0.32);
    border-color: rgba(52, 211, 153, 0.4);
    color: #a7f3d0;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-meta-chip.is-archived {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(100, 116, 139, 0.36);
    color: #cbd5e1;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-action-secondary {
    background: rgba(10, 22, 40, 0.84);
    border-color: rgba(64, 88, 126, 0.66);
    color: #d4e3f8;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-fact-label {
    color: #8ea6c8;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-fact-value {
    color: #e5efff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-preview-shell {
    border-color: rgba(64, 88, 126, 0.66);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-card-footer {
    border-top-color: rgba(148, 163, 184, 0.16);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-card-footer-note {
    color: #9ab1d2;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-bg {
    background: radial-gradient(circle at 8% 0%, rgba(59, 130, 246, 0.24), rgba(59, 130, 246, 0) 32%),
                radial-gradient(circle at 92% 18%, rgba(45, 212, 191, 0.2), rgba(45, 212, 191, 0) 30%),
                radial-gradient(circle at 62% 92%, rgba(251, 146, 60, 0.22), rgba(251, 146, 60, 0) 33%);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-announcement-inner {
    background: rgba(10, 22, 40, 0.86);
    border-color: rgba(70, 98, 138, 0.55);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-announcement-text {
    color: #b8cbe5;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-hero-copy :is(h1, h2, h3) {
    color: #f1f5ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-hero-highlight {
    color: #a7a3ff;
    background: linear-gradient(90deg, #93a6ff 0%, #b4a1ff 48%, #c58cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-hero-copy p,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-hero-subtitle {
    color: #9fb4d3;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-search-form {
    background: rgba(10, 22, 40, 0.88);
    border-color: rgba(66, 91, 127, 0.62);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-search-icon {
    color: #9fb4d3;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-search-input {
    color: #e5efff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-search-input::placeholder {
    color: #7f9abf;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-hot-label {
    color: #90a9cb;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-hot-link {
    background: rgba(14, 27, 45, 0.9);
    border-color: rgba(58, 79, 110, 0.65);
    color: #d1def3;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-hot-link:hover {
    color: #7ab5ff;
    border-color: rgba(96, 165, 250, 0.7);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-sub-cta {
    color: #d4e3f8;
    border-color: rgba(60, 83, 117, 0.74);
    background: rgba(10, 21, 37, 0.86);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-sub-cta:hover {
    color: #7bb2ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-pill {
    background: rgba(10, 22, 40, 0.8);
    border-color: rgba(55, 77, 109, 0.7);
    color: #c4d3ea;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-pill:hover {
    color: #8fc0ff;
    border-color: rgba(96, 165, 250, 0.75);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-pill-active {
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.7);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-featured-card {
    background: linear-gradient(145deg, rgba(11, 23, 39, 0.95), rgba(8, 18, 34, 0.95));
    border-color: rgba(64, 88, 126, 0.66);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-featured-title {
    color: #f3f7ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-featured-summary {
    color: #9fb4d3;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-featured-logo-wrap {
    background: rgba(13, 27, 48, 0.95);
    border-color: rgba(64, 88, 126, 0.66);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-home-featured-tag {
    background: rgba(30, 49, 77, 0.92);
    border-color: rgba(69, 98, 139, 0.76);
    color: #bfd3ef;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-panel,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-card {
    background: #111e31;
    border-color: #2b3f5f;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-panel-prose {
    color: #bdd1ea;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-mini-card {
    background: #121f33;
    border-color: #2b3f5f;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-mini-title,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-latest-title,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-title,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-title,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-sponsor-title,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-recommend-title {
    color: #ecf3ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-latest-card {
    background: #121f33;
    border-color: #2b3f5f;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-latest-logo-wrap,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-sponsor-logo,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-recommend-logo,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-mini-logo-wrap {
    background: #0e1a2d;
    border-color: #324868;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-latest-summary,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-summary,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-sponsor-summary,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-recommend-summary {
    color: #9ab1d2;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-section-title {
    color: #a7a3ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-card {
    background: linear-gradient(180deg, #121f33 0%, #0f1b2d 100%);
    border-color: #314867;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-card:hover {
    border-color: #6381ad;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-cover {
    background: linear-gradient(145deg, #132338, #0f1d31);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-cover-badge {
    background: rgba(37, 99, 235, 0.88);
    border-color: rgba(148, 163, 184, 0.28);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-cover-badge-latest {
    background: rgba(37, 99, 235, 0.88);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-cover-category {
    background: rgba(15, 23, 42, 0.62);
    border-color: rgba(148, 163, 184, 0.26);
    color: #e2e8f0;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-title-icon {
    color: #9ca3ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-product-meta-tag {
    background: rgba(15, 23, 42, 0.45);
    border-color: #324868;
    color: #95aac8;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-latest-chip {
    background: rgba(30, 64, 175, 0.22);
    border-color: rgba(87, 120, 183, 0.62);
    color: #b8cfff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-chip {
    background: #15243a;
    border-color: #334967;
    color: #c5d5eb;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-side-chip:hover {
    color: #8fc0ff;
    border-color: rgba(96, 165, 250, 0.75);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-card {
    background: linear-gradient(135deg, #162338 0%, #111d2f 100%);
    border-color: #2b3f5f;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-eyebrow {
    color: #93c5fd;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-title {
    color: #eef3ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-desc {
    color: #a2b8d8;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-input {
    background: #0d1728;
    border-color: #304563;
    color: #e3edff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-input::placeholder {
    color: #7e99be;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-feedback.is-success {
    color: #86efac;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-newsletter-feedback.is-error {
    color: #fca5a5;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-card {
    background: linear-gradient(180deg, #121f33 0%, #0f1b2d 100%);
    border-color: #314867;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-card-title {
    color: #ecf3ff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-card-summary {
    color: #9ab1d2;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-card {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-detail-info-card {
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.18) 0%, rgba(15, 23, 42, 0.3) 100%);
    border-color: rgba(87, 120, 183, 0.62);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-shell {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 24rem),
        linear-gradient(180deg, #071424 0%, #0b1522 100%);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-card {
    background: rgba(10, 22, 40, 0.84);
    border-color: rgba(64, 88, 126, 0.66);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-note.is-free {
    background: rgba(6, 78, 59, 0.24);
    border-color: rgba(52, 211, 153, 0.34);
    color: #a7f3d0;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-note.is-paid {
    background: rgba(124, 45, 18, 0.28);
    border-color: rgba(251, 146, 60, 0.38);
    color: #fdba74;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-field {
    background: rgba(15, 23, 42, 0.54);
    border-color: rgba(64, 88, 126, 0.66);
    color: #e5efff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-picker,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-selected,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-group {
    background: rgba(15, 23, 42, 0.58);
    border-color: rgba(64, 88, 126, 0.66);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-count,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-chip.is-primary {
    background: rgba(148, 163, 184, 0.12);
    color: #e5efff;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-chip,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-media-badge {
    background: rgba(148, 163, 184, 0.12);
    color: #e5efff;
    border-color: rgba(64, 88, 126, 0.66);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-option:hover,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-category-option.is-active {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.36);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-field[readonly] {
    background: rgba(15, 23, 42, 0.68);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-submit-step-index {
    background: rgba(30, 64, 175, 0.24);
    color: #bfdbfe;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-seo-link-card {
    background: rgba(10, 22, 40, 0.84);
    border-color: rgba(64, 88, 126, 0.66);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-seo-link-chip {
    background: rgba(15, 23, 42, 0.54);
    border-color: rgba(64, 88, 126, 0.66);
    color: #d4e3f8;
}

/* nav001 cate pages dark-mode fixes */
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new {
    background: var(--theme-bg-primary) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new h1,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new h2,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new h3,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner h1,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner h2,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner h3 {
    color: var(--theme-text-primary) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new .text-gray-600,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new .text-gray-700,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new .text-gray-500,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner .text-gray-600,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner .text-gray-500 {
    color: var(--theme-text-muted) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-filterbar {
    background: rgba(10, 19, 34, 0.86) !important;
    border-top: 1px solid rgba(56, 77, 108, 0.45);
    border-bottom: 1px solid rgba(56, 77, 108, 0.45);
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-chip,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-filter-btn {
    background: var(--theme-bg-elevated) !important;
    color: var(--theme-text-secondary) !important;
    border-color: var(--theme-border-primary) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-chip.bg-gray-900,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-filter-btn.bg-blue-600 {
    color: #ffffff !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-search-input {
    background: #0c1729 !important;
    color: #e5eeff !important;
    border-color: #304563 !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-search-input::placeholder {
    color: #88a3c7 !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-card,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-card {
    background: #121f33 !important;
    border-color: #2b3f5f !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-card .hover-bg,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-card .hover-bg {
    color: var(--theme-text-secondary) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-new-tag,
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-nav-tag {
    background: rgba(30, 64, 175, 0.2) !important;
    color: #b8cfff !important;
    border: 1px solid rgba(82, 127, 210, 0.5);
}

/* Fix white/low-contrast pills from rich content blocks */
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-new .nav001-new-card span.rounded-full:not(.tm-badge),
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-main .nav001-nav-card span.rounded-full:not(.tm-badge) {
    background: rgba(24, 40, 64, 0.92) !important;
    color: #c8ddff !important;
    border-color: rgba(70, 101, 145, 0.7) !important;
}

/* Normalize bright utility blocks embedded in category summary content */
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner .prose :where(.bg-white, .bg-gray-50, .bg-gray-100),
:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner .prose :where([class*='bg-gray-50'], [class*='bg-gray-100']) {
    background: rgba(13, 23, 40, 0.88) !important;
    border-color: rgba(56, 79, 114, 0.55) !important;
}

:is(body.dark-theme, html.dark, html[data-theme='dark']) .nav001-cate-nav-banner .prose :where(.text-gray-400, .text-gray-500, .text-gray-600, .text-gray-700) {
    color: #a9bfdc !important;
}
