/* GaaaiShow main styles. Cleaned and formatted. */
:root {
    --gaaai-show-primary: #2563eb;
    --gaaai-show-primary-dark: #1d4ed8;
    --gaaai-show-bg: #f6f8fc;
    --gaaai-show-bg-soft: #eef4ff;
    --gaaai-show-card: #ffffff;
    --gaaai-show-text: #334155;
    --gaaai-show-muted: #64748b;
    --gaaai-show-border: rgba(15,23,42,.09);
    --gaaai-show-border-strong: rgba(15,23,42,.15);
    --gaaai-show-shadow: 0 30px 90px rgba(15,23,42,.12);
    --gaaai-show-shadow-soft: 0 18px 46px rgba(15,23,42,.075);
    --gaaai-show-radius: 12px;
    --gaaai-show-container: 1200px;
    --gaaai-show-accent: #f97316;
    --gaaai-show-accent-soft: rgba(249,115,22,.12);
    --gaaai-show-market-shadow: 0 22px 60px rgba(15,23,42,.10);
    --gaaai-show-header-offset: 96px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: .22s ease;
}

a:hover {
    color: var(--gaaai-show-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text, .gaaai-show-skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.gaaai-show-skip-link:focus {
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    background: #fff;
    color: #111827;
    padding: 10px 14px;
    border-radius: var(--gaaai-show-radius);
    z-index: 9999;
    box-shadow: var(--gaaai-show-shadow);
}

.gaaai-show-container {
    width: min(var(--gaaai-show-container),calc(100% - 30px));
    margin: 0 auto;
}

.gaaai-show-narrow {
    max-width: 880px;
}

.gaaai-show-header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gaaai-show-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.gaaai-show-site-title {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.035em;
    color: var(--gaaai-show-text);
}

.gaaai-show-site-desc {
    display: block;
    color: var(--gaaai-show-muted);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

.gaaai-show-primary-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gaaai-show-primary-nav a {
    display: block;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--gaaai-show-text);
    font-weight: 500;
}

.gaaai-show-primary-nav a:hover, .gaaai-show-primary-nav .current-menu-item>a {
    background: rgba(37,99,235,.10);
    color: var(--gaaai-show-primary);
}

.gaaai-show-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.gaaai-show-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: #0f172a;
    transition: transform .2s ease, opacity .2s ease;
}

.gaaai-show-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(37,99,235,.14), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(124,58,237,.12), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,0) 58%);
    pointer-events: none;
}

.gaaai-show-hero h1, .gaaai-show-page-hero h1, .gaaai-show-product-hero h1 {
    margin: 0;
    font-size: clamp(21px,2vw,36px);
    line-height: 1.5;
}

.gaaai-show-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.gaaai-show-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: .22s ease;
}

.gaaai-show-btn-primary {
    background: linear-gradient(135deg, var(--gaaai-show-primary), #4f46e5 54%, #7c3aed);
    color: #fff;
    box-shadow: 0 18px 34px rgba(37, 99, 235, .26);
}

.gaaai-show-btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(37, 99, 235, .30);
}


.gaaai-show-btn-light {
    background: #fff;
    color: var(--gaaai-show-text);
}


.gaaai-show-section {
    padding: 26px 0 36px;
    background: #f6f7fb;
}

.gaaai-show-muted-section {
    background: #f6f7fb;
    border-block: 1px solid rgba(15,23,42,.06);
}

.gaaai-show-article-section {
    background: #f6f7fb;
}

.gaaai-show-home-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.gaaai-show-home-group:first-of-type {
    margin-top: 0;
}

.gaaai-show-home-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.gaaai-show-home-group-head h3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--gaaai-show-text);
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: -.035em;
}

.gaaai-show-home-group-head h3:before {
    display: inline-block;
    flex: 0 0 auto;
    width: 6px;
    height: 18px;
    border-radius: 999px;
    background: var(--gaaai-show-primary);
    content: '';
}

.gaaai-show-home-group-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    background: #fff;
    color: var(--gaaai-show-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(15,23,42,.045);
    transition: .18s ease;
}

.gaaai-show-home-group-head a:hover {
    border-color: rgba(37,99,235,.22);
    background: rgba(37,99,235,.08);
    color: var(--gaaai-show-primary);
    transform: translateY(-1px);
}

.gaaai-show-home-post-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 20px;
}

.gaaai-show-home-post-list .gaaai-show-post-card {
    overflow: hidden;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,23,42,.07);
    border-radius: var(--gaaai-show-radius);
    box-shadow: 0 12px 32px rgba(15,23,42,.045);
}

.gaaai-show-home-post-list .gaaai-show-post-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37,99,235,.18);
    box-shadow: 0 20px 48px rgba(15,23,42,.085);
}

.gaaai-show-home-post-list .gaaai-show-post-card-link {
    display: grid;
    grid-template-columns: 132px minmax(0,1fr);
    align-items: center;
    min-height: 100px;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.gaaai-show-home-post-list .gaaai-show-post-card .gaaai-show-card-thumb {
    width: 120px;
    height: 80px;
    min-height: 0;
    margin-left: 8px;
    border-radius: 12px;
    background: linear-gradient(135deg,#f8fafc,#eef4ff);
}

.gaaai-show-home-post-list .gaaai-show-post-card .gaaai-show-card-thumb img {
    transition: transform .26s ease;
}

.gaaai-show-home-post-list .gaaai-show-post-card:hover .gaaai-show-card-thumb img {
    transform: scale(1.035);
}

.gaaai-show-home-post-list .gaaai-show-post-card .gaaai-show-card-body {
    justify-content: center;
    min-width: 0;
    padding: 12px 14px 12px 10px;
}

.gaaai-show-home-post-list .gaaai-show-post-card .gaaai-show-card-meta,
.gaaai-show-home-post-list .gaaai-show-post-card p {
    display: none;
}

.gaaai-show-home-post-list .gaaai-show-post-card h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 0;
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gaaai-show-home-post-list .gaaai-show-post-card .gaaai-show-card-product-type {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    max-width: 100%;
    padding: 3px 9px;
    border: 1px solid rgba(37,99,235,.10);
    border-radius: var(--gaaai-show-radius);
    background: rgba(37,99,235,.055);
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
}


.gaaai-show-home-post-list .gaaai-show-card-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    align-self: flex-start;
    gap: 4px;
    margin: 2px 0 0;
    color: var(--gaaai-show-accent);
    line-height: 1.4;
    text-align: left;
}

.gaaai-show-home-post-list .gaaai-show-card-price .gaaai-show-price-number,
.gaaai-show-home-post-list .gaaai-show-card-price .gaaai-show-price-free {
    font-size: 21px;
    font-weight: 700;
}

.gaaai-show-home-post-list .gaaai-show-card-price small {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    -webkit-text-fill-color: #94a3b8;
}

.gaaai-show-home-post-list.is-style-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}

.gaaai-show-home-post-list.is-style-grid .gaaai-show-post-card {
    box-shadow: 0 16px 46px rgba(15,23,42,.06);
}

.gaaai-show-home-post-list.is-style-grid .gaaai-show-post-card-link {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.gaaai-show-home-post-list.is-style-grid .gaaai-show-post-card .gaaai-show-card-thumb {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-left: 0;
    border-radius: 0;
    aspect-ratio: 1.5 / 1;
}

.gaaai-show-home-post-list.is-style-grid .gaaai-show-post-card .gaaai-show-card-body {
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding: 10px 15px 20px;
    text-align: left;
}

.gaaai-show-home-post-list.is-style-grid .gaaai-show-post-card h3 {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    text-align: left;
}

.gaaai-show-home-post-list.is-style-grid .gaaai-show-card-price {
    align-self: center;
    justify-content: center;
    margin: 3px auto 7px;
    text-align: center;
}

.gaaai-show-home-post-list.is-style-simple {
    grid-template-columns: 1fr;
    gap: 12px;
}

.gaaai-show-home-post-list.is-style-simple .gaaai-show-post-card {
    border-radius: var(--gaaai-show-radius);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .045);
}

.gaaai-show-home-post-list.is-style-simple .gaaai-show-post-card-link {
    display: block;
    min-height: 0;
}

.gaaai-show-home-post-list.is-style-simple .gaaai-show-card-thumb {
    display: none;
}

.gaaai-show-home-post-list.is-style-simple .gaaai-show-post-card .gaaai-show-card-body {
    padding: 18px 22px;
}

.gaaai-show-home-post-list.is-style-simple .gaaai-show-post-card h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
}

.gaaai-show-filter-bar {
    display: grid;
    gap: 12px;
    margin: 0 0 26px;
    padding: 14px;
    border: 1px solid rgba(15,23,42,.07);
    border-radius: var(--gaaai-show-radius);
    background: rgba(255,255,255,.78);
}

.gaaai-show-filter-group {
    display: grid;
    grid-template-columns: 92px minmax(0,1fr);
    align-items: start;
    gap: 10px;
}

.gaaai-show-filter-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    min-height: 36px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.gaaai-show-filter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.gaaai-show-filter-bar a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 15px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: .18s ease;
}

.gaaai-show-filter-group.is-child {
    padding-top: 12px;
    border-top: 1px solid rgba(15,23,42,.06);
}

.gaaai-show-filter-group.is-child .gaaai-show-filter-label {
    min-height: 32px;
    font-size: 14px;
}

.gaaai-show-filter-group.is-child .gaaai-show-filter-list {
    gap: 8px;
}

.gaaai-show-filter-group.is-child a {
    min-height: 32px;
    padding: 0 12px;
    background: rgba(248,250,252,.92);
    font-size: 14px;
    font-weight: 400;
}

.gaaai-show-filter-bar a:hover, .gaaai-show-filter-bar a.is-active {
    border-color: rgba(37,99,235,.20);
    background: rgba(37,99,235,.08);
    color: var(--gaaai-show-primary);
}

.gaaai-show-section-head {
    max-width: 760px;
    margin: 20px auto;
    text-align: center;
}

.gaaai-show-section-head h2 {
    margin: 0;
    font-size: clamp(21px,2vw,36px);
    line-height: 1.5;
    letter-spacing: -.035em;
}

.gaaai-show-section-head p {
    margin: 10px 0 0;
    color: var(--gaaai-show-muted);
    font-size: 16px;
    line-height: 1.5;
}

.gaaai-show-section-head-row {
    max-width: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


.gaaai-show-feature-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 20px;
}


.gaaai-show-feature-card h3, .gaaai-show-card h3 {
    margin: 0 0 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gaaai-show-text);
    line-height: 1.5;
    letter-spacing: -.035em;
}

.gaaai-show-card h3 {
    font-weight: 400;
}

.gaaai-show-feature-card h3 {
    font-size: 21px;
    font-weight: 700;
}

.gaaai-show-feature-card h3:before {
    display: inline-block;
    flex: 0 0 auto;
    width: 6px;
    height: 18px;
    border-radius: var(--gaaai-show-radius);
    background: var(--gaaai-show-primary);
    content: '';
}

.gaaai-show-feature-card p, .gaaai-show-card p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: var(--gaaai-show-muted);
}

.gaaai-show-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37,99,235,.16);
    box-shadow: 0 20px 54px rgba(15,23,42,.09);
}

.gaaai-show-card-thumb:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent,rgba(15,23,42,.04));
}

.gaaai-show-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaaai-show-thumb-placeholder {
    font-size: 28px;
    font-weight: 700;
    color: rgba(37,99,235,.24);
}

.gaaai-show-card-body {
    padding: 23px;
}

.gaaai-show-empty {
    grid-column: 1/-1;
    padding: 26px;
    border: 1px dashed var(--gaaai-show-border-strong);
    border-radius: var(--gaaai-show-radius);
    background: #fff;
    color: var(--gaaai-show-muted);
}

.gaaai-show-page-hero p {
    max-width: 800px;
    margin: 17px 0 0;
    color: #475569;
    font-size: 16px;
}


.gaaai-show-entry-cover {
    margin: -20px -20px 24px;
    max-height: 480px;
    overflow: hidden;
    border-radius: var(--gaaai-show-radius) var(--gaaai-show-radius) 0 0;
}

.gaaai-show-entry-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.gaaai-show-entry a:not(.gaaai-show-btn) {
    color: var(--gaaai-show-primary);
    font-weight: 700;
}

.gaaai-show-entry ul, .gaaai-show-entry ol {
    padding-left: 1.25em;
}

.gaaai-show-entry blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--gaaai-show-primary);
    background: #f8fafc;
    border-radius: var(--gaaai-show-radius);
    color: #475569;
}

.gaaai-show-entry pre {
    overflow: auto;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--gaaai-show-radius);
    padding: 18px;
}

.gaaai-show-entry code {
    background: #f1f5f9;
    border-radius: 6px;
    padding: 2px 6px;
}

.gaaai-show-entry pre code {
    background: transparent;
    padding: 0;
}

.gaaai-show-side-card {
    padding: 24px;
}

.gaaai-show-side-card > h2 {
    position: relative;
    margin: 0 0 16px;
    padding-left: 14px;
    color: #0f172a;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

.gaaai-show-side-card > h2:before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 18px;
    border-radius: var(--gaaai-show-radius);
    background: var(--gaaai-show-primary);
    transform: translateY(-50%);
    content: "";
}


.gaaai-show-side-list li {
    border-bottom: 1px solid rgba(15,23,42,.07);
}

.gaaai-show-side-list li:last-child {
    border-bottom: 0;
}

.gaaai-show-side-list a {
    display: block;
    padding: 10px 0;
    color: var(--gaaai-show-text);
    font-weight: 400;
    line-height: 1.8;
}

.gaaai-show-side-list a:hover {
    color: var(--gaaai-show-primary);
}

.gaaai-show-side-post-list {
display: grid;
    gap: 0;
    list-style: none;
    padding-left: 0;
}

.gaaai-show-side-post-list li {
margin: 0;
    list-style: none;
}

.gaaai-show-side-post {
    display: grid;
    grid-template-columns: 86px minmax(0,1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(15,23,42,.07);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: color .2s ease;
}

.gaaai-show-side-post-list li:last-child .gaaai-show-side-post {
    border-bottom: 0;
}

.gaaai-show-side-post:hover {
    color: var(--gaaai-show-primary);
    background: transparent;
    box-shadow: none;
    transform: none;
}

.gaaai-show-side-post-thumb {
    overflow: hidden;
    display: block;
    aspect-ratio: 1.5 / 1;
    border-radius: 6px;
    background: linear-gradient(135deg,#eef2ff,#eff6ff);
}

.gaaai-show-side-post-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaaai-show-side-post-thumb > span {
display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: rgba(37, 99, 235, .24);
    font-size: 16px;
    font-weight: 700;
}

.gaaai-show-side-post-body {
    min-width: 0;
}

.gaaai-show-side-post-body strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gaaai-show-side-post-body em {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.gaaai-show-side-post-list.is-list .gaaai-show-side-post,
.gaaai-show-side-post-list.is-simple .gaaai-show-side-post {
    display: block;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid rgba(15,23,42,.07);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.gaaai-show-side-post-list.is-list li:last-child .gaaai-show-side-post,
.gaaai-show-side-post-list.is-simple li:last-child .gaaai-show-side-post {
    border-bottom: 0;
}

.gaaai-show-side-post-list.is-simple .gaaai-show-side-post-body strong {
    -webkit-line-clamp: 1;
}

.gaaai-show-auto-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gaaai-show-entry-footer {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--gaaai-show-border);
}

.navigation.pagination {
    margin-top: 34px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid var(--gaaai-show-border);
    border-radius: 13px;
    font-weight: 700;
}

.page-numbers.current {
    background: var(--gaaai-show-primary);
    color: #fff;
    border-color: var(--gaaai-show-primary);
}

.gaaai-show-site-footer {
    background: #0f172a;
    color: #cbd5e1;
}

.gaaai-show-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.gaaai-show-footer-cta p {
    margin: 8px 0 0;
    color: #94a3b8;
}

.gaaai-show-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0;
}

.gaaai-show-footer-bottom p {
    margin: 0;
}

.gaaai-show-footer-bottom ul {
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gaaai-show-footer-bottom a {
    color: #cbd5e1;
}

.gaaai-show-footer-bottom a:hover {
    color: #fff;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 560px;
}

.search-field {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--gaaai-show-border);
    border-radius: 13px;
    padding: 0 14px;
}

.search-submit {
    border: 0;
    border-radius: 13px;
    background: var(--gaaai-show-primary);
    color: #fff;
    font-weight: 700;
    padding: 0 18px;
    cursor: pointer;
}

.gaaai-show-wide-page-hero {
    padding: 70px 0 54px;
}

.gaaai-show-wide-page-head {
    max-width: 980px;
}

.gaaai-show-wide-container {
    max-width: 1180px;
}

.gaaai-show-wide-page-section {
    padding-top: 52px;
}

.gaaai-show-wide-entry {
    padding: 52px;
    border-radius: 32px;
}

.gaaai-show-wide-entry-content {
    max-width: 1080px;
    margin: 0 auto;
}

.gaaai-show-wide-entry-cover {
    margin: -52px -52px 40px;
    max-height: 560px;
}

.gaaai-show-wide-entry .alignwide {
    max-width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
}

.gaaai-show-wide-entry .alignfull {
    max-width: none;
    margin-left: -52px;
    margin-right: -52px;
}

.gaaai-show-wide-entry img {
    height: auto;
}

.gaaai-show-wide-entry table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--gaaai-show-radius);
}

.gaaai-show-wide-entry th, .gaaai-show-wide-entry td {
    padding: 14px 16px;
    border: 1px solid var(--gaaai-show-border);
}

.gaaai-show-wide-entry th {
    background: #f8fafc;
    text-align: left;
}

.gaaai-show-frameless-page-section {
    padding-top: 46px;
}

.gaaai-show-frameless-entry {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
}

.gaaai-show-frameless-entry-content {
    width: 100%;
    max-width: none;
    margin: 0;
}

.gaaai-show-frameless-page-section .gaaai-show-wide-container {
    width: min(var(--gaaai-show-container),calc(100% - 30px));
    max-width: none;
    margin: 0 auto;
}

.gaaai-show-frameless-entry-cover {
    margin: 0 0 38px;
    max-height: 620px;
    overflow: hidden;
    border-radius: var(--gaaai-show-radius);
    box-shadow: var(--gaaai-show-shadow-soft);
}

.gaaai-show-frameless-entry-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaaai-show-frameless-entry h2 {
    position: relative;
    margin: 42px 0 18px;
    padding: 0 0 13px;
    border-bottom: 1px solid rgba(148,163,184,.22);
    color: #0f172a;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.35;
    letter-spacing: -.035em;
}

.gaaai-show-frameless-entry h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 76px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--gaaai-show-primary),var(--gaaai-show-primary));
}

.gaaai-show-frameless-entry h3 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 32px 0 13px;
    padding: 0;
    color: #1e293b;
    font-size: clamp(20px, 1.6vw, 23px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.gaaai-show-frameless-entry h3::before {
    content: "";
    flex: 0 0 4px;
    width: 6px;
    height: 16px;
    border-radius: 10px;
    background: var(--gaaai-show-primary);
}

.gaaai-show-frameless-entry p {
    margin: 0 0 18px;
}

.gaaai-show-frameless-entry a:not(.gaaai-show-btn) {
    color: var(--gaaai-show-primary);
    font-weight: 700;
}

.gaaai-show-frameless-entry ul, .gaaai-show-frameless-entry ol {
    padding-left: 1.25em;
}

.gaaai-show-frameless-entry blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--gaaai-show-primary);
    background: rgba(255,255,255,.68);
    border-radius: var(--gaaai-show-radius);
    color: #475569;
}

.gaaai-show-frameless-entry pre {
    overflow: auto;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--gaaai-show-radius);
    padding: 18px;
}

.gaaai-show-frameless-entry code {
    background: rgba(15,23,42,.08);
    border-radius: 6px;
    padding: 2px 6px;
}

.gaaai-show-frameless-entry pre code {
    background: transparent;
    padding: 0;
}

.gaaai-show-frameless-entry .alignwide {
    max-width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
}

.gaaai-show-frameless-entry .alignfull {
    max-width: none;
    margin-left: calc((1120px - 100vw)/2);
    margin-right: calc((1120px - 100vw)/2);
}

.gaaai-show-frameless-entry img {
    height: auto;
}

.gaaai-show-frameless-entry table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--gaaai-show-radius);
}

.gaaai-show-frameless-entry th, .gaaai-show-frameless-entry td {
    padding: 14px 16px;
    border: 1px solid var(--gaaai-show-border);
}

.gaaai-show-frameless-entry th {
    background: rgba(255,255,255,.72);
    text-align: left;
}

.gaaai-show-hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(15,23,42,.07);
    pointer-events: none;
}

.gaaai-show-hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--gaaai-show-radius);
    padding: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: none;
    box-sizing: border-box;
}

.gaaai-show-hero-slider:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: var(--gaaai-show-radius);
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
}

.gaaai-show-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .65s ease,transform 1.2s ease;
    color: #fff;
}

.gaaai-show-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.gaaai-show-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaaai-show-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(2,6,23,0) 0%,rgba(2,6,23,.08) 52%,rgba(2,6,23,.58) 100%);
}

.gaaai-show-slide-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: block;
    z-index: 3;
}

.gaaai-show-slide-content strong {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15,23,42,.38);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -.035em;
    backdrop-filter: blur(8px);
}

.gaaai-show-slide-content em {
    display: none;
}

.gaaai-show-slider-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 4px 0;
}

.gaaai-show-hero .gaaai-show-slider-toolbar {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    pointer-events: none;
}

.gaaai-show-hero .gaaai-show-slider-dots,
.gaaai-show-hero .gaaai-show-slider-arrows {
    pointer-events: auto;
}

.gaaai-show-slider-dots {
    display: flex;
    gap: 8px;
}

.gaaai-show-slider-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(15,23,42,.18);
    padding: 0;
    cursor: pointer;
    transition: .22s ease;
}

.gaaai-show-slider-dots button.is-active {
    width: 30px;
    background: var(--gaaai-show-primary);
}

.gaaai-show-slider-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gaaai-show-slider-arrows button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(15,23,42,.46);
    border-radius: var(--gaaai-show-radius);
    color: #fff;
    font-size: 26px;
    line-height: 1.5;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15,23,42,.12);
    backdrop-filter: blur(8px);
    transition: .22s ease;
}

.gaaai-show-slider-arrows button:hover {
    background: rgba(37,99,235,.86);
    color: #fff;
    border-color: rgba(255,255,255,.38);
}

.gaaai-show-slide-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(135deg,#0f172a,#1d4ed8);
}

.gaaai-show-slide-art-2 {
    background: linear-gradient(135deg,#111827,#7c3aed);
}

.gaaai-show-slide-art-3 {
    background: linear-gradient(135deg,#0f172a,#0f766e);
}

.gaaai-show-slide-art i, .gaaai-show-slide-art b {
    position: absolute;
    display: block;
    border-radius: var(--gaaai-show-radius);
    background: rgba(255,255,255,.16);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.gaaai-show-slide-art i:nth-child(1) {
    left: 46px;
    top: 48px;
    width: 220px;
    height: 120px;
}

.gaaai-show-slide-art i:nth-child(2) {
    right: 42px;
    top: 72px;
    width: 180px;
    height: 230px;
}

.gaaai-show-slide-art i:nth-child(3) {
    left: 58px;
    bottom: 118px;
    width: 260px;
    height: 70px;
}

.gaaai-show-slide-art b:nth-of-type(1) {
    left: 96px;
    top: 210px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,.11);
}

.gaaai-show-slide-art b:nth-of-type(2) {
    right: 146px;
    bottom: 92px;
    width: 190px;
    height: 44px;
}


.gaaai-show-premium-section {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(37,99,235,.08), transparent 34%), #f6f7fb;
    overflow: hidden;
}


.gaaai-show-feature-card {
    min-height: 160px;
    padding: 30px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: .22s ease;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--gaaai-show-radius);
    box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
}

.gaaai-show-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .18);
    box-shadow: 0 22px 58px rgba(15, 23, 42, .09);
}

.gaaai-show-card {
    overflow: hidden;
    transition: .22s ease;
}

.gaaai-show-card-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg,#eef4ff,#ffffff);
}

.gaaai-show-slider-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    border-radius: var(--gaaai-show-radius);
    background: #0f172a;
    aspect-ratio: 1.5 / 1;
    touch-action: pan-y;
    box-sizing: border-box;
}

.gaaai-show-hero h1 {
    max-width: 720px;
    text-shadow: none;
    letter-spacing: -.035em;
}

.gaaai-show-hero p {
    margin: 20px 0 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    max-width: 640px;
}

.gaaai-show-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f9fbff 0%, #f6f7fb 42%, #eef2ff 100%);
    padding: 24px 0 56px;
}

.gaaai-show-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 22px;
    gap: 11px;
}

.gaaai-show-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.gaaai-show-tags span, .gaaai-show-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 9px 15px;
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 999px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.gaaai-show-tags span {
    background: rgba(37,99,235,.09);
    color: var(--gaaai-show-primary);
}

.gaaai-show-card-meta span {
    background: #f8fafc;
    color: #475569;
    border-color: rgba(15,23,42,.08);
}

.gaaai-show-hero h1 br {
    display: block;
    content: "";
    margin-top: 4px;
}

.gaaai-show-header-account {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.gaaai-show-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--gaaai-show-primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 12px 28px rgba(37,99,235,.22);
    text-decoration: none;
}

.gaaai-show-account-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.gaaai-show-account-link-ghost {
    background: rgba(255,255,255,.72);
    color: #0f172a;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
}

.gaaai-show-account-link-ghost:hover {
    color: var(--gaaai-show-primary);
}

.gaaai-show-auth-page, .gaaai-show-user-page {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#f8fbff 0%,#eef4ff 48%,#f8fafc 100%);
}

.gaaai-show-auth-page {
    padding: 72px 0;
}

.gaaai-show-auth-bg, .gaaai-show-user-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 18%,rgba(37,99,235,.16),transparent 34%),radial-gradient(circle at 82% 12%,rgba(14,165,233,.14),transparent 30%),linear-gradient(rgba(37,99,235,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(37,99,235,.045) 1px,transparent 1px);
    background-size: auto,auto,44px 44px,44px 44px;
    pointer-events: none;
}

.gaaai-show-auth-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(380px,.75fr);
    gap: 44px;
    align-items: center;
    min-height: 560px;
}

.gaaai-show-auth-intro h1 {
    margin: 14px 0 18px;
    font-size: clamp(28px,2vw,36px);
    line-height: 1.5;
    letter-spacing: -.035em;
    color: #0f172a;
}

.gaaai-show-auth-intro p {
    max-width: 620px;
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}


.gaaai-show-auth-card {
    position: relative;
    padding: 34px;
    border-radius: var(--gaaai-show-radius);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: 0 30px 80px rgba(15,23,42,.12);
    backdrop-filter: blur(18px);
}

.gaaai-show-auth-card h2 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: -.035em;
}

.gaaai-show-auth-card>p {
    margin: 0 0 24px;
    color: #64748b;
}

.gaaai-show-auth-form {
    display: grid;
    gap: 16px;
}

.gaaai-show-auth-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: var(--gaaai-show-text);
}

.gaaai-show-auth-form input[type=text], .gaaai-show-auth-form input[type=email], .gaaai-show-auth-form input[type=password] {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(15,23,42,.12);
    border-radius: var(--gaaai-show-radius);
    padding: 0 16px;
    background: #fff;
    font-size: 15px;
    outline: none;
}

.gaaai-show-auth-form input:focus {
    border-color: var(--gaaai-show-primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}


.gaaai-show-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
}

.gaaai-show-check input {
    width: auto;
}

.gaaai-show-btn-block {
    display: flex;
    margin-top: 12px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.gaaai-show-auth-switch {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(15,23,42,.08);
    text-align: center;
    color: #64748b;
}

.gaaai-show-auth-switch a, .gaaai-show-auth-row a, .gaaai-show-auth-mini-link {
    font-weight: 700;
    color: var(--gaaai-show-primary);
    text-decoration: none;
}

.gaaai-show-account-notice {
    margin: 0 0 18px;
    padding: 13px 15px;
    border-radius: var(--gaaai-show-radius);
    font-weight: 700;
    line-height: 1.8;
}

.gaaai-show-account-error {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid rgba(225,29,72,.18);
}

.gaaai-show-account-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid rgba(5,150,105,.2);
}

.gaaai-show-user-page {
    padding: 56px 0 84px;
}

.gaaai-show-user-guest {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 34px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.86);
    text-align: center;
    box-shadow: 0 32px 90px rgba(15,23,42,.12);
    backdrop-filter: blur(18px);
}

.gaaai-show-user-guest h1 {
    margin: 14px 0 16px;
    font-size: clamp(21px,2vw,36px);
    line-height: 1.5;
    letter-spacing: -.035em;
    color: #0f172a;
}

.gaaai-show-user-guest p {
    max-width: 660px;
    margin: 0 auto 28px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.gaaai-show-user-guest-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.gaaai-show-user-layout {
    position: relative;
    display: grid;
    grid-template-columns: 280px minmax(0,1fr);
    gap: 20px;
    align-items: start;
}


.gaaai-show-user-sidebar {
    position: sticky;
    top: 24px;
    border-radius: var(--gaaai-show-radius);
    padding: 22px;
}

.gaaai-show-user-profile-card {
    text-align: center;
    padding: 12px 8px 20px;
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.gaaai-show-user-profile-card img {
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(15,23,42,.16);
}

.gaaai-show-user-profile-card h2 {
    margin: 14px 0 5px;
    font-size: 22px;
}

.gaaai-show-user-profile-card p {
    margin: 0;
    font-size: 14px;
    word-break: break-all;
}

.gaaai-show-user-nav {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.gaaai-show-user-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 15px;
    border-radius: var(--gaaai-show-radius);
    color: var(--gaaai-show-text);
    text-decoration: none;
    font-weight: 700;
}

.gaaai-show-user-nav a:hover, .gaaai-show-user-nav a.is-active {
    background: linear-gradient(135deg,var(--gaaai-show-primary),var(--gaaai-show-primary-dark));
    color: #fff;
    box-shadow: 0 16px 34px rgba(37,99,235,.2);
}

.gaaai-show-user-main {
    border-radius: 34px;
    padding: 30px;
    min-width: 0;
}

.gaaai-show-user-heading {
    margin-bottom: 22px;
}

.gaaai-show-user-heading h1 {
    margin: 8px 0 0;
    font-size: clamp(21px,2vw,36px);
    line-height: 1.5;
    letter-spacing: -.035em;
}


.gaaai-show-user-panel {
    border-radius: var(--gaaai-show-radius);
    padding: 24px;
    min-width: 0;
}

.gaaai-show-user-panel h2 {
    margin: 0 0 16px;
    font-size: 22px;
    letter-spacing: -.035em;
}


.gaaai-show-profile-panel dl {
    display: grid;
    grid-template-columns: 120px minmax(0,1fr);
    gap: 14px 18px;
    margin: 0 0 24px;
}

.gaaai-show-profile-panel dt {
    color: #64748b;
    font-weight: 700;
}

.gaaai-show-profile-panel dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
    word-break: break-all;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

video, iframe, embed, object {
    max-width: 100%;
}

.gaaai-show-mobile-account {
    display: none;
}

.gaaai-show-user-layout-simple .gaaai-show-user-profile-card-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gaaai-show-user-layout-simple .gaaai-show-user-profile-card-center img {
    display: block;
    margin: 0 auto;
}

.gaaai-show-user-layout-simple .gaaai-show-user-nav a {
    justify-content: center;
    text-align: center;
}

.gaaai-show-user-nav a:focus, .gaaai-show-user-nav a:active {
    outline: none;
    color: #fff;
    background: linear-gradient(135deg,var(--gaaai-show-primary),var(--gaaai-show-primary-dark));
    box-shadow: 0 16px 34px rgba(37,99,235,.2);
}

.gaaai-show-user-nav .gaaai-show-user-nav-logout {
    color: #b91c1c;
    background: rgba(239,68,68,.08);
}

.gaaai-show-user-nav .gaaai-show-user-nav-logout:hover, .gaaai-show-user-nav .gaaai-show-user-nav-logout:focus, .gaaai-show-user-nav .gaaai-show-user-nav-logout:active {
    color: #fff;
    background: linear-gradient(135deg,#ef4444,#dc2626);
    box-shadow: 0 16px 34px rgba(220,38,38,.18);
}

.gaaai-show-primary-nav {
    flex: 1 1 auto;
}

.gaaai-show-primary-nav > ul, .gaaai-show-primary-nav .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gaaai-show-primary-nav > ul > li > a, .gaaai-show-primary-nav .menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 8px 24px;
    border-radius: 999px;
    color: var(--gaaai-show-text);
    font-weight: 500;
    line-height: 1.5;
}

.gaaai-show-primary-nav li:hover > .sub-menu, .gaaai-show-primary-nav li:focus-within > .sub-menu, .gaaai-show-primary-nav li:hover > .children, .gaaai-show-primary-nav li:focus-within > .children {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.gaaai-show-primary-nav .sub-menu li + li, .gaaai-show-primary-nav .children li + li {
    margin-top: 2px;
}

.gaaai-show-primary-nav .sub-menu a:hover, .gaaai-show-primary-nav .sub-menu .current-menu-item > a, .gaaai-show-primary-nav .children a:hover, .gaaai-show-primary-nav .children .current-menu-item > a {
    background: rgba(37,99,235,.09);
    color: var(--gaaai-show-primary);
}

.gaaai-show-primary-nav .menu-item-has-children > a::after, .gaaai-show-primary-nav .page_item_has_children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: .62;
    flex: 0 0 auto;
}

.gaaai-show-primary-nav .sub-menu .menu-item-has-children > a::after, .gaaai-show-primary-nav .children .page_item_has_children > a::after {
    transform: rotate(-45deg);
}

.gaaai-show-auth-form .gaaai-show-btn, .gaaai-show-user-guest-actions .gaaai-show-btn, .gaaai-show-hero-actions .gaaai-show-btn {
    font-size: 16px;
}

.gaaai-show-footer-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    letter-spacing: -.035em;
    line-height: 1.5;
}

.gaaai-show-primary-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.gaaai-show-submenu-toggle {
    display: none;
}

.gaaai-show-brand .gaaai-show-option-logo {
    display: block;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.gaaai-show-primary-nav .sub-menu a, .gaaai-show-primary-nav .children a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: var(--gaaai-show-radius);
    color: var(--gaaai-show-text);
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    font-size: 15px;
}


.gaaai-show-card-meta a {
    color: inherit;
    text-decoration: none;
}


.gaaai-show-auto-toc .toc-h3 {
    padding-left: 14px;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

.gaaai-show-site-header {
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15,23,42,.07);
    background: rgba(255,255,255,.86);
    box-shadow: 0 12px 40px rgba(15,23,42,.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.admin-bar .gaaai-show-site-header {
    top: 32px;
}

body {
    margin: 0;
    color: var(--gaaai-show-text);
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans SC","Noto Sans",sans-serif;
    line-height: 1.8;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-top: 78px;
    background: radial-gradient(circle at 8% 8%, rgba(37,99,235,.12), transparent 30%),
        radial-gradient(circle at 92% 16%, rgba(249,115,22,.09), transparent 28%),
        linear-gradient(180deg,#f8fbff 0%,#f3f7ff 45%,#f8fafc 100%);
}

.gaaai-show-page-hero {
    padding: 74px 0;
    border-bottom: 1px solid var(--gaaai-show-border);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 16% 10%, rgba(37,99,235,.18), transparent 34%),
        radial-gradient(circle at 86% 8%, rgba(249,115,22,.15), transparent 28%),
        linear-gradient(135deg,#ffffff 0%,#eef4ff 48%,#fff7ed 100%);
}

.gaaai-show-page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg,rgba(0,0,0,.72),transparent 82%);
    pointer-events: none;
}

.gaaai-show-page-hero .gaaai-show-container {
    position: relative;
}

.gaaai-show-post-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.gaaai-show-post-card-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.gaaai-show-post-card-link:focus-visible {
    outline: 3px solid rgba(37,99,235,.26);
    outline-offset: -3px;
}

.gaaai-show-post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37,99,235,.18);
    box-shadow: 0 22px 60px rgba(15,23,42,.10);
}

.gaaai-show-post-card .gaaai-show-card-thumb {
    background: linear-gradient(135deg,#f8fafc,#ffffff);
}

.gaaai-show-post-card .gaaai-show-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}


.gaaai-show-post-card .gaaai-show-card-meta {
    justify-content: flex-start;
    margin: auto 0 0;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
}

.gaaai-show-post-card .gaaai-show-card-meta span {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}


.gaaai-show-toc-card {
    background: rgba(255,255,255,.92);
}

.gaaai-show-auto-toc a {
    display: block;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--gaaai-show-radius);
    padding: 8px 10px;
}

.gaaai-show-auto-toc a:hover {
    color: var(--gaaai-show-primary);
    background: rgba(37,99,235,.08);
}

.gaaai-show-entry {
    padding: 25px;
    min-width: 0;
}

.gaaai-show-entry h2 {
    position: relative;
    margin: 42px 0 18px;
    padding: 0 0 13px;
    border-left: 0;
    border-bottom: 1px solid rgba(148,163,184,.22);
    color: #0f172a;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.35;
    letter-spacing: -.035em;
}

.gaaai-show-entry h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 76px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--gaaai-show-primary),var(--gaaai-show-primary));
}

.gaaai-show-entry h3 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 32px 0 13px;
    padding: 0;
    color: #1e293b;
    font-size: clamp(20px, 1.6vw, 23px);
    line-height: 1.45;
    letter-spacing: -.02em;
}

.gaaai-show-entry h3::before {
    content: "";
    flex: 0 0 4px;
    width: 6px;
    height: 16px;
    border-radius: 10px;
    background: var(--gaaai-show-primary);
}


.gaaai-show-card, .gaaai-show-post-card, .gaaai-show-side-card, .gaaai-show-entry {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--gaaai-show-radius);
    box-shadow: var(--gaaai-show-shadow-soft);
}


.gaaai-show-hero-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 18px;
    margin-top: 22px;
    color: var(--gaaai-show-accent);
}

.gaaai-show-hero-price > span {
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.gaaai-show-hero-price strong {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: var(--gaaai-show-accent);
    font-size: 0;
    line-height: 1.5;
}

.gaaai-show-hero-price .gaaai-show-price-number, .gaaai-show-hero-price .gaaai-show-price-free {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -.035em;
}

.gaaai-show-hero-price small {
    color: var(--gaaai-show-accent);
    font-size: 15px;
    font-weight: 700;
}

.admin-bar {
    --gaaai-show-header-offset: 128px;
}

.gaaai-show-section, .gaaai-show-card, .gaaai-show-post-card, .gaaai-show-side-card, .gaaai-show-entry, .gaaai-show-page-hero, .gaaai-show-entry h2, .gaaai-show-entry h3, .gaaai-show-auto-toc a {
    scroll-margin-top: var(--gaaai-show-header-offset);
}


.gaaai-show-hero-panel {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    align-self: stretch;
    overflow: hidden;
}

.gaaai-show-primary-nav .sub-menu, .gaaai-show-primary-nav .children {
    position: absolute;
    left: 0;
    z-index: 1000;
    display: block;
    min-width: 210px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--gaaai-show-radius);
    box-shadow: 0 22px 54px rgba(15,23,42,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    top: 100%;
    margin-top: 0;
}

.gaaai-show-primary-nav .sub-menu .sub-menu, .gaaai-show-primary-nav .children .children {
    left: 100%;
    top: 0;
    margin-left: 0;
}

.gaaai-show-hero-grid {
    position: relative;
    display: grid;
    z-index: 1;
    grid-template-columns: minmax(0, 900fr) minmax(0, 460fr);
    align-items: stretch;
    column-gap: 20px;
    row-gap: 20px;
}

.gaaai-show-hero-grid > * {
    min-width: 0;
    max-width: 100%;
}

.gaaai-show-hero-side-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2,minmax(0,1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 460 / 600;
    height: auto;
    overflow: hidden;
}

.gaaai-show-hero-side-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 0;
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(135deg,#111827,#312e81);
    color: rgba(255,255,255,.72);
    text-align: center;
    text-decoration: none;
    isolation: isolate;
}

.gaaai-show-hero-side-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaaai-show-hero-side-card.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.08);
}

.gaaai-show-hero-side-card.is-placeholder span {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    font-weight: 400;
}

.gaaai-show-hero-side-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(15,23,42,.16));
    pointer-events: none;
}

.gaaai-show-hero-side-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--gaaai-show-radius);
    pointer-events: none;
}

.gaaai-show-hero-side-card span {
    position: relative;
    z-index: 3;
}

.gaaai-show-hero-side-card:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(15,23,42,.10);
}

.gaaai-show-content-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    gap: 20px;
    align-items: start;
    overflow: visible;
}

.gaaai-show-sidebar {
    display: grid;
    gap: 18px;
    position: relative;
    align-self: start;
    height: auto;
}

.gaaai-show-sticky-area-placeholder {
    display: none;
}

.gaaai-show-sticky-area-placeholder.is-active {
    display: block;
    width: 100%;
}

.gaaai-show-sticky-area.is-screen-fixed {
    position: fixed;
    z-index: 90;
}

.gaaai-show-sticky-area.is-footer-stop {
    position: absolute;
    z-index: 20;
}

/* 产品文章模板：大图产品样式 */
.gaaai-show-product-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(37,99,235,.10);
    isolation: isolate;
    padding: 78px 0 86px;
    background: radial-gradient(circle at 8% 18%,rgba(37,99,235,.16),transparent 30%), radial-gradient(circle at 90% 6%,rgba(249,115,22,.12),transparent 26%), linear-gradient(135deg,#ffffff 0%,#f3f7ff 54%,#fff7ed 100%);
}

.gaaai-show-product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    align-items: center;
    gap: 20px;
}

.gaaai-show-product-hero-main {
    min-width: 0;
    padding: 6px 0;
}

.gaaai-show-product-hero h1 {
    max-width: 760px;
    margin-top: 18px;
    letter-spacing: -.035em;
}

.gaaai-show-product-hero p {
    max-width: 660px;
    margin-top: 16px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.gaaai-show-product-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.5 / 1;
    min-height: 360px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(135deg,#f8fafc,#eff6ff);
    box-shadow: 0 28px 80px rgba(15,23,42,.14);
}

.gaaai-show-product-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.gaaai-show-product-cover:hover img {
    transform: scale(1.03);
}

.gaaai-show-product-cover span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: rgba(37,99,235,.28);
    font-size: 28px;
    font-weight: 700;
}


.gaaai-show-product-hero .gaaai-show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 620px;
    margin-top: 18px;
}

.gaaai-show-product-hero .gaaai-show-tags span {
    padding: 7px 11px;
    border: 1px solid rgba(37,99,235,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.76);
    color: var(--gaaai-show-text);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15,23,42,.045);
}

.gaaai-show-product-hero .gaaai-show-hero-actions {
    gap: 12px;
    margin-top: 26px;
}

.gaaai-show-product-hero .gaaai-show-btn-primary,
.gaaai-show-product-actions .gaaai-show-btn-primary {
    min-width: 180px;
}

.gaaai-show-product-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gaaai-show-border);
}

.gaaai-show-product-tabs-nav button {
    position: relative;
    min-height: 46px;
    padding: 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #64748b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: color .2s ease;
}

.gaaai-show-product-tabs-nav button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--gaaai-show-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.gaaai-show-product-tabs-nav button.is-active,
.gaaai-show-product-tabs-nav button:hover {
    color: var(--gaaai-show-primary);
}

.gaaai-show-product-tabs-nav button.is-active::after,
.gaaai-show-product-tabs-nav button:hover::after {
    transform: scaleX(1);
}


.gaaai-show-product-detail-section {
    padding-top: 42px;
    background: #f6f7fb;
}

.gaaai-show-product-layout {
    grid-template-columns: minmax(0,1fr) 340px;
}

.gaaai-show-product-detail-sidebar {
    min-width: 0;
}

.gaaai-show-product-entry {
    border: 1px solid rgba(15,23,42,.07);
    border-radius: var(--gaaai-show-radius);
    background: #fff;
    box-shadow: 0 18px 54px rgba(15,23,42,.055);
}


.gaaai-show-product-tab-panel:not(.is-active) {
    display: none;
}

.gaaai-show-product-entry .gaaai-show-product-tabs {
    padding: 0;
}

.gaaai-show-product-entry .gaaai-show-product-tab-panel {
    padding-top: 2px;
}

/* 升级日志栏：隐藏 GaaaiBuy 自动底部购买框，避免遮挡空提示或日志内容 */
body.gaaai-show-upgrade-log-active .gaaaibuy-box[data-post-id],
body.gaaai-show-upgrade-log-active .gaaaibuy-bottom-buy-box,
body.gaaai-show-upgrade-log-active .gaaaibuy-bottom-bar,
body.gaaai-show-upgrade-log-active .gaaaibuy-fixed-buy,
body.gaaai-show-upgrade-log-active .gaaaibuy-sticky-buy,
body.gaaai-show-upgrade-log-active .gaaaibuy-floating-buy,
body.gaaai-show-upgrade-log-active .gaaaibuy-product-buy-box {
    display: none;
}

.gaaai-show-product-actions .gaaai-show-btn-demo {
    border-color: rgba(249,115,22,.22);
    background: rgba(249,115,22,.10);
    color: #c2410c;
}

.gaaai-show-product-actions .gaaai-show-btn-demo:hover {
    background: rgba(249,115,22,.16);
    color: #9a3412;
}


.gaaai-show-product-actions {
    margin-top: 18px;
}


.gaaai-show-related-card {
    display: grid;
    gap: 14px;
}

.gaaai-show-side-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gaaai-show-side-card-head h2 {
    position: relative;
    margin: 0;
    padding-left: 14px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.5;
}

.gaaai-show-side-card-head h2:before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 18px;
    border-radius: var(--gaaai-show-radius);
    background: var(--gaaai-show-primary);
    transform: translateY(-50%);
    content: '';
}

.gaaai-show-side-card-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--gaaai-show-radius);
    background: #fff;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.gaaai-show-side-card-head a:hover {
    border-color: rgba(37,99,235,.18);
    background: rgba(37,99,235,.06);
    color: var(--gaaai-show-primary);
}

.gaaai-show-related-list {
    display: grid;
    gap: 16px;
}

.gaaai-show-related-item {
    overflow: hidden;
    display: block;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--gaaai-show-radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(15,23,42,.06);
    transition: .2s ease;
}

.gaaai-show-related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(15,23,42,.09);
}

.gaaai-show-related-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 1.5 / 1;
    background: #f8fafc;
}

.gaaai-show-related-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaaai-show-related-thumb > span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #94a3b8;
    font-weight: 700;
}

.gaaai-show-related-body {
    display: grid;
    gap: 7px;
    padding: 14px;
}

.gaaai-show-related-body strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #0f172a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.gaaai-show-related-body em {
    color: #64748b;
    font-size: 14px;
    font-style: normal;
}

.gaaai-show-related-price {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: var(--gaaai-show-accent);
    font-size: 0;
    font-weight: 700;
}

.gaaai-show-related-price .gaaai-show-price-number,
.gaaai-show-related-price .gaaai-show-price-free {
    font-size: 21px;
}

.gaaai-show-related-price small {
    font-size: 14px;
}

.gaaai-show-archive-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 310px;
    gap: 20px;
    align-items: start;
}

.gaaai-show-archive-main {
    min-width: 0;
}

.gaaai-show-archive-sidebar {
    position: relative;
}

@media (max-width: 1024px) {
    .gaaai-show-product-hero-grid, .gaaai-show-archive-layout, .gaaai-show-product-layout {
        grid-template-columns: 1fr;
    }

    .gaaai-show-product-hero:not(.gaaai-show-product-detail-hero) .gaaai-show-product-cover {
        order: -1;
        width: min(100%, 760px);
        margin: 0 auto;
        min-height: 0;
    }

    .gaaai-show-home-post-list {
        grid-template-columns: 1fr;
    }

    .gaaai-show-home-post-list.is-style-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .gaaai-show-feature-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .gaaai-show-content-layout {
        grid-template-columns: 1fr;
    }

    .gaaai-show-hero-panel {
        min-height: 0;
        max-width: none;
    }

    .gaaai-show-hero-grid {
        grid-template-columns: minmax(0,900fr) minmax(0,460fr);
        column-gap: 20px;
        row-gap: 20px;
    }

    .gaaai-show-slider-viewport {
        width: 100%;
        max-width: 100%;
        min-height: 0;
    }

    .gaaai-show-hero-side-grid {
        gap: 20px;
        aspect-ratio: 460 / 600;
        height: auto;
    }


    .gaaai-show-auth-shell {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
    }

    .gaaai-show-auth-intro {
        text-align: center;
    }

    .gaaai-show-auth-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .gaaai-show-user-layout {
        grid-template-columns: 1fr;
    }

    .gaaai-show-user-sidebar {
        position: relative;
        top: auto;
    }

    .gaaai-show-user-nav {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }


    .gaaai-show-sticky-area-placeholder {
        display: none;
    }

    .gaaai-show-sticky-area.is-screen-fixed, .gaaai-show-sticky-area.is-footer-stop {
        position: static;
        width: auto;
        left: auto;
        top: auto;
    }

    .gaaai-show-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }


}

@media (max-width: 768px) {
.gaaai-show-product-hero {
        padding: 0 0 48px;
    }

    .gaaai-show-product-hero h1 {
        font-size: 20px;
    }

    .gaaai-show-product-hero-main {
        padding-top: 24px;
    }

    .gaaai-show-product-hero:not(.gaaai-show-product-detail-hero) .gaaai-show-product-cover {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .gaaai-show-product-tabs-nav {
        gap: 20px;
    }

    .gaaai-show-product-tabs-nav button {
        flex: 0 0 auto;
        min-height: 42px;
        padding-bottom: 12px;
        font-size: 16px;
    }

    .gaaai-show-container {
        width: min(100% - 28px,var(--gaaai-show-container));
    }

    .gaaai-show-section-head-row {
        flex-direction: column;
        gap: 12px;
    }


    .gaaai-show-feature-grid, .gaaai-show-sidebar, .gaaai-show-home-post-list, .gaaai-show-home-post-list.is-style-grid {
        grid-template-columns: 1fr;
    }
.gaaai-show-feature-card {
        min-height: 0;
        padding: 26px;
    }
    .gaaai-show-feature-card h3{
        font-size: 18px;
    }

    .gaaai-show-home-group-head {
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }

    .gaaai-show-home-group-head h3 {
        min-width: 0;
        font-size: 21px;
    }

    .gaaai-show-home-group-head a {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 13px;
        white-space: nowrap;
    }
.gaaai-show-filter-bar {
        gap: 10px;
        padding: 12px;
        border-radius: var(--gaaai-show-radius);
    }

    .gaaai-show-filter-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gaaai-show-filter-label {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .gaaai-show-filter-list {
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
    }

    .gaaai-show-filter-bar a {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .gaaai-show-entry {
        padding: 20px;
    }

    .gaaai-show-entry-cover {
        margin: -20px -20px 22px;
    }

    .gaaai-show-footer-cta, .gaaai-show-footer-bottom {
        display: block;
    }

    .gaaai-show-footer-cta .gaaai-show-btn {
        margin-top: 18px;
    }

    .gaaai-show-footer-bottom nav {
        margin-top: 12px;
    }

    .gaaai-show-footer-bottom ul {
        display: block;
    }

    .gaaai-show-hero-actions {
        display: grid;
    }

    .gaaai-show-entry h2,
    .gaaai-show-frameless-entry h2 {
        margin-top: 32px;
        font-size: 24px;
    }

    .gaaai-show-entry h3,
    .gaaai-show-frameless-entry h3 {
        margin-top: 26px;
        font-size: 20px;
    }


    .gaaai-show-slide-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .gaaai-show-slide-content strong {
        min-height: 30px;
        font-size: 14px;
    }


    .gaaai-show-hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gaaai-show-hero > .gaaai-show-container {
        width: 100%;
        max-width: none;
        padding-right: 0;
        padding-left: 0;
        background: #ffffff;
        padding-bottom: 15px;
    }

    .gaaai-show-hero-panel {
        display: block;
        width: 100%;
        max-width: none;
    }

    .gaaai-show-hero-slider {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .gaaai-show-hero-slider:before {
        border-radius: 0;
    }

    .gaaai-show-slider-viewport {
        min-height: 0;
        height: auto;
        border-radius: 0;
        aspect-ratio: 1.5 / 1;
    }

    .gaaai-show-hero-side-grid {
        min-height: 0;
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-template-rows: none;
        gap: 14px;
        aspect-ratio: auto;
        height: auto;
        padding-right: 14px;
        padding-left: 14px;
        box-sizing: border-box;
    }

    .gaaai-show-hero-side-card {
        aspect-ratio: 1.5 / 1;
    }

    .gaaai-show-hero {
        padding: 0;
    }

    .gaaai-show-hero h1 {
        font-size: clamp(21px,2vw,36px);
        line-height: 1.5;
        letter-spacing: -.035em;
    }

    .gaaai-show-hero p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.8;
    }


    .gaaai-show-tags {
        gap: 8px;
    }

    .gaaai-show-card-meta {
        gap: 8px;
    }

    .gaaai-show-tags span, .gaaai-show-card-meta span {
        min-height: 32px;
        padding: 8px 13px;
        font-size: 14px;
    }

    .gaaai-show-hero h1 br {
        margin-top: 2px;
    }

    .gaaai-show-auth-page, .gaaai-show-user-page {
        padding: 34px 0 56px;
    }

    .gaaai-show-auth-card, .gaaai-show-user-main {
        padding: 22px;
        border-radius: var(--gaaai-show-radius);
    }

    .gaaai-show-auth-intro h1, .gaaai-show-user-guest h1 {
        font-size: 28px;
    }

    .gaaai-show-auth-intro p, .gaaai-show-user-guest p {
        font-size: 15px;
    }

    .gaaai-show-auth-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .gaaai-show-auth-row .gaaai-show-check,
    .gaaai-show-auth-row a {
        flex: 0 0 auto;
        white-space: nowrap;
    }
.gaaai-show-user-guest {
        padding: 34px 22px;
        border-radius: var(--gaaai-show-radius);
    }

    .gaaai-show-user-guest-actions {
        flex-direction: column;
    }

    .gaaai-show-user-guest-actions .gaaai-show-btn {
        width: 100%;
    }

    .gaaai-show-user-nav {
        grid-template-columns: 1fr;
    }


    .gaaai-show-profile-panel dl {
        grid-template-columns: 1fr;
        gap: 5px 0;
    }
.gaaai-show-account-link {
        min-height: 34px;
        padding: 0 11px;
        font-size: 14px;
    }

    .gaaai-show-account-link-ghost {
        display: none;
    }

    .gaaai-show-wide-page-hero {
        padding: 42px 0 34px;
    }

    .gaaai-show-wide-page-section {
        padding-top: 34px;
    }

    .gaaai-show-wide-entry {
        padding: 24px;
        border-radius: var(--gaaai-show-radius);
    }

    .gaaai-show-wide-entry-cover {
        margin: -24px -24px 24px;
        max-height: 360px;
    }

    .gaaai-show-wide-entry .alignwide, .gaaai-show-wide-entry .alignfull {
        max-width: none;
        margin-left: -24px;
        margin-right: -24px;
    }

    .gaaai-show-frameless-page-section {
        padding-top: 30px;
    }

    .gaaai-show-frameless-page-section .gaaai-show-wide-container {
        width: min(100% - 28px,var(--gaaai-show-container));
    }

    .gaaai-show-frameless-entry-cover {
        margin: 0 0 24px;
        max-height: 360px;
        border-radius: var(--gaaai-show-radius);
    }


    .gaaai-show-frameless-entry .alignwide, .gaaai-show-frameless-entry .alignfull {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .gaaai-show-auth-form .gaaai-show-btn {
        min-height: 52px;
        padding: 13px 18px;
        border-radius: var(--gaaai-show-radius);
        font-size: 16px;
        letter-spacing: -.035em;
    }

    .gaaai-show-auth-switch {
        font-size: 15px;
    }

    .gaaai-show-auth-switch a, .gaaai-show-auth-row a {
        font-size: 15px;
    }

    .gaaai-show-user-guest-actions .gaaai-show-btn, .gaaai-show-hero-actions .gaaai-show-btn {
        min-height: 50px;
        font-size: 16px;
    }

    .gaaai-show-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 8px;
        right: 0;
        width: 32px;
        height: 32px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #64748b;
        cursor: pointer;
        z-index: 2;
    }

    .gaaai-show-submenu-toggle::before {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translate(-1px,-1px);
        transition: transform .2s ease;
    }

    .gaaai-show-page-hero {
        padding: 46px 0;
        padding-top: 38px;
    }


    .gaaai-show-hero-price {
        margin-top: 18px;
    }

    .gaaai-show-hero-price .gaaai-show-price-number, .gaaai-show-hero-price .gaaai-show-price-free {
        font-size: 32px;
    }

    .gaaai-show-hero-price small {
        font-size: 14px;
    }

    :root {
        --gaaai-show-header-offset: 82px;
    }

    /* Sidebar mobile refinements */
    .gaaai-show-side-card-head {
        align-items: center;
    }

    .gaaai-show-side-card {
        padding: 20px;
        border-radius: var(--gaaai-show-radius);
    }

    .gaaai-show-side-post {
        grid-template-columns: 92px minmax(0,1fr);
        padding: 12px 0;
    }
}
/* v1.10.1：查看演示按钮不使用白色底 */


.gaaai-show-empty-tip {
    margin: 0;
    padding: 22px;
    border-radius: var(--gaaai-show-radius);
    background: #f8fafc;
    color: #64748b;
    text-align: center;
}
/* v1.10.4：演示按钮浅橙色，详情切换菜单字体优化 */

/* 产品详情页首屏：资源售卖风格 */
.gaaai-show-product-detail-hero {
    padding: 50px 0 50px;
    border-bottom: 1px solid var(--gaaai-show-border);
    background: radial-gradient(circle at 4% 8%, rgba(37,99,235,.08), transparent 30%), radial-gradient(circle at 96% 42%, rgba(249,115,22,.10), transparent 36%), linear-gradient(115deg, #fbfaf8 0%, #f8fbff 52%, #fffaf6 100%);
}

.gaaai-show-product-detail-hero::before,
.gaaai-show-product-detail-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.gaaai-show-product-detail-hero::before {
    right: -120px;
    bottom: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, rgba(249,115,22,.07) 0 1px, transparent 1px 16px);
    opacity: .45;
}

.gaaai-show-product-detail-hero::after {
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.82), transparent 42%, rgba(255,247,237,.22));
}

.gaaai-show-product-detail-hero .gaaai-show-container {
    width: min(var(--gaaai-show-container), calc(100% - 30px));
}

.gaaai-show-product-detail-hero .gaaai-show-product-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    gap: 28px;
}

.gaaai-show-product-cover-card {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 12px;
    border: 1px solid rgba(148,163,184,.28);
    border-radius: var(--gaaai-show-radius);
    background: rgba(255,255,255,.82);
    box-shadow: 0 20px 60px rgba(15,23,42,.12);
    backdrop-filter: blur(12px);
}

.gaaai-show-product-detail-hero .gaaai-show-product-cover {
    min-height: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1.5 / 1;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
    box-shadow: none;
}



.gaaai-show-product-detail-hero .gaaai-show-product-hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 8px 0;
}

.gaaai-show-product-detail-hero .gaaai-show-product-hero-main h1 {
    max-width: none;
    margin: 0;
    color: #0f172a;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.25;
    letter-spacing: -.035em;
}

.gaaai-show-product-detail-hero .gaaai-show-product-subtitle {
    max-width: none;
    margin: 14px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.gaaai-show-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.gaaai-show-product-badges span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 0 10px;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #475569;
    font-size: 14px;
    font-weight: 400;
}

.gaaai-show-product-badges span::before {
    content: "☆";
    font-size: 14px;
    line-height: 1;
}

.gaaai-show-product-badges .is-badge-green {
    background: rgba(16,185,129,.10);
    color: #047857;
}

.gaaai-show-product-badges .is-badge-blue {
    background: rgba(37,99,235,.10);
    color: #2563eb;
}

.gaaai-show-product-badges .is-badge-purple {
    background: rgba(124,58,237,.10);
    color: #7c3aed;
}

.gaaai-show-product-badges .is-badge-orange {
    background: rgba(249,115,22,.11);
    color: #ea580c;
}

.gaaai-show-product-badges .is-badge-red {
    background: rgba(225,29,72,.10);
    color: #e11d48;
}

.gaaai-show-product-badges .is-badge-gray {
    background: rgba(100,116,139,.10);
    color: #475569;
}

.gaaai-show-product-buy-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 18px 20px;
    overflow: hidden;
    margin-top: 24px;
    padding: 24px;
    border: 1px solid rgba(249,115,22,.12);
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,250,245,.58));
    box-shadow: 0 18px 46px rgba(15,23,42,.06), inset 0 1px 0 rgba(255,255,255,.72);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.gaaai-show-product-buy-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7a18, rgba(255,122,24,.12));
}

.gaaai-show-product-detail-hero .gaaai-show-hero-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.gaaai-show-product-detail-hero .gaaai-show-hero-price-main {
    display: inline-flex;
    flex: 1 1 260px;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 10px;
    min-width: 0;
}

.gaaai-show-product-detail-hero .gaaai-show-hero-price strong {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    color: #ff4d00;
    font-weight: 800;
    line-height: 1;
}

.gaaai-show-product-detail-hero .gaaai-show-hero-price .gaaai-show-price-number,
.gaaai-show-product-detail-hero .gaaai-show-hero-price .gaaai-show-price-free {
    display: inline-block;
    color: #ff4d00;
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1;
    letter-spacing: -.035em;
}

.gaaai-show-product-detail-hero .gaaai-show-hero-price small {
    display: inline-block;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.gaaai-show-product-detail-hero .gaaai-show-original-price {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1;
}

.gaaai-show-product-detail-hero .gaaai-show-original-price-label {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
}

.gaaai-show-product-detail-hero .gaaai-show-original-price-number {
    display: inline-block;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-decoration-thickness: 1px;
}

.gaaai-show-product-vip-link {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(249,115,22,.14);
    border-radius: 999px;
    background: rgba(255,247,237,.62);
    color: #b45309;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.gaaai-show-product-vip-link::after {
    content: "›";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 16px;
}

.gaaai-show-product-vip-link:hover {
    border-color: rgba(249,115,22,.30);
    background: rgba(255,237,213,.82);
    color: #9a3412;
}

.gaaai-show-product-detail-hero .gaaai-show-hero-actions {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 0;
}

.gaaai-show-product-detail-hero .gaaai-show-btn {
    min-height: 46px;
    min-width: 174px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}

.gaaai-show-product-detail-hero .gaaai-show-btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, #ff7a18, #ff4d00);
    color: #fff;
    box-shadow: none;
}

.gaaai-show-product-detail-hero .gaaai-show-btn-demo {
    border-color: rgba(15,23,42,.08);
    background: rgba(255,255,255,.86);
    color: #0f172a;
}

.gaaai-show-product-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.gaaai-show-product-benefits div {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    column-gap: 5px;
    align-items: start;
}

.gaaai-show-product-benefits img {
    grid-row: span 2;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    object-fit: contain;
    object-position: center;
}

.gaaai-show-product-benefits strong {
    color: #64748b;
    font-size: 15px;
    line-height: 1.25;
}

.gaaai-show-product-benefits span {
    align-self: start;
    margin-top: 5px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.35;
    vertical-align: top;
}

.gaaai-show-product-hero-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gaaai-show-product-sidebar-widgets {
    margin-bottom: 18px;
}

.gaaai-show-product-service-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(14,165,233,.14);
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(240,249,255,.86));
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
    backdrop-filter: blur(12px);
}

.gaaai-show-product-service-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: var(--gaaai-show-radius);
    background: rgba(14,165,233,.10);
}

.gaaai-show-product-service-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gaaai-show-product-service-icon img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
    object-position: center;
}

.gaaai-show-product-service-body {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.gaaai-show-product-service-card strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.35;
}

.gaaai-show-product-service-card span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}


.gaaai-show-product-service-action {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px dashed rgba(14,165,233,.22);
}

.gaaai-show-product-service-ticket {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: var(--gaaai-show-radius);
    background: rgba(255,255,255,.86);
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.gaaai-show-product-service-ticket:hover {
    border-color: rgba(249,115,22,.22);
    background: rgba(255,247,237,.96);
    color: #ea580c;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .gaaai-show-product-detail-hero .gaaai-show-container {
        width: min(var(--gaaai-show-container), calc(100% - 30px));
    }

    .gaaai-show-product-detail-hero .gaaai-show-product-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gaaai-show-product-hero-aside {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gaaai-show-product-detail-hero .gaaai-show-product-cover-card {
        order: -1;
    }

    .gaaai-show-product-detail-hero .gaaai-show-product-cover {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .gaaai-show-product-detail-hero {
        padding: 18px 0 38px;
    }

    .gaaai-show-product-detail-hero .gaaai-show-container {
        width: min(var(--gaaai-show-container), calc(100% - 30px));
    }

    .gaaai-show-product-detail-hero .gaaai-show-product-cover-card {
        padding: 10px;
        border-radius: var(--gaaai-show-radius);
    }

    .gaaai-show-product-detail-hero .gaaai-show-product-cover {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 10px;
    }


    .gaaai-show-product-detail-hero .gaaai-show-product-hero-main h1 {
        line-height: 1.25;
    }

    .gaaai-show-product-buy-panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        margin-top: 22px;
        padding: 20px 16px;
    }

    .gaaai-show-product-detail-hero .gaaai-show-hero-price {
        grid-column: 1;
        grid-row: 1;
        flex-direction: column;
        justify-content: flex-start;
        gap: 12px;
    }

    .gaaai-show-product-detail-hero .gaaai-show-hero-price-main {
        flex: 0 1 auto;
        width: 100%;
    }

    .gaaai-show-product-vip-link {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }


    .gaaai-show-product-detail-hero .gaaai-show-hero-actions,
    .gaaai-show-product-badges {
        gap: 10px;
    }

    .gaaai-show-product-detail-hero .gaaai-show-btn {
        flex: 1 1 150px;
        min-width: 0;
    }

    .gaaai-show-product-benefits,
    .gaaai-show-product-hero-aside {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .gaaai-show-product-hero-aside {
        display: grid;
    }

    .gaaai-show-product-service-card {
        grid-template-columns: 48px minmax(0, 1fr);
        min-height: 0;
        padding: 18px;
    }
}


/* Tutorial article page */
.gaaai-show-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    align-items: start;
}

.gaaai-show-article-main {
    min-width: 0;
}

.gaaai-show-article-entry {
    padding: 24px 24px 34px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
    box-shadow: 0 20px 56px rgba(15,23,42,.06);
}

.gaaai-show-article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 18px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.gaaai-show-article-breadcrumb a:hover {
    color: var(--gaaai-show-accent);
}

.gaaai-show-article-breadcrumb > span:last-child {
    color: #64748b;
}

.gaaai-show-article-breadcrumb-sep {
    color: #cbd5e1;
}

.gaaai-show-article-hero-head {
    position: relative;
    padding-bottom: 18px;
}

.gaaai-show-article-hero-head:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(37,99,235,.12), rgba(249,115,22,.12), transparent);
}

.gaaai-show-article-hero-head h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.2;
    letter-spacing: -.04em;
}

.gaaai-show-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-top: 18px;
    color: #64748b;
    font-size: 15px;
}

.gaaai-show-article-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    color: var(--gaaai-show-primary);
    font-weight: 400;
}

.gaaai-show-article-meta span:not(.gaaai-show-article-chip) {
    position: relative;
    padding-left: 18px;
}

.gaaai-show-article-meta span:not(.gaaai-show-article-chip):before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(148,163,184,.7);
    transform: translateY(-50%);
}

.gaaai-show-article-content {
    margin-top: 24px;
}

.gaaai-show-article-content > :first-child {
    margin-top: 0;
}

.gaaai-show-article-content p {
    margin: 16px 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
}

.gaaai-show-article-content ul,
.gaaai-show-article-content ol {
    margin: 16px 0 16px 1.4em;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
}

.gaaai-show-article-content li + li {
    margin-top: 8px;
}

.gaaai-show-article-content img {
    margin: 22px auto;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(15,23,42,.08);
}

.gaaai-show-article-content blockquote {
    margin: 24px 0;
    padding: 18px 20px 18px 22px;
    border-left: 4px solid var(--gaaai-show-accent);
    border-radius: 0 18px 18px 0;
    background: linear-gradient(180deg, #fff7ed, rgba(255,247,237,.5));
    color: #475569;
}

.gaaai-show-article-content pre,
.gaaai-show-article-content code {
    font-family: Consolas, Monaco, monospace;
}

.gaaai-show-article-content pre {
    overflow: auto;
    margin: 22px 0;
    padding: 18px;
    border-radius: 18px;
    background: #0f172a;
    color: #e2e8f0;
    box-shadow: 0 18px 42px rgba(15,23,42,.14);
}

.gaaai-show-article-content code {
    padding: .16em .45em;
    border-radius: 6px;
    background: rgba(15,23,42,.06);
    color: #0f172a;
    font-size: .92em;
}

.gaaai-show-article-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.gaaai-show-article-content table {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    border-collapse: collapse;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}

.gaaai-show-article-content th,
.gaaai-show-article-content td {
    padding: 12px 14px;
    border: 1px solid rgba(15,23,42,.08);
    text-align: left;
}

.gaaai-show-article-content thead th {
    background: #f8fafc;
    color: #0f172a;
}

.gaaai-show-article-author-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: 28px 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(180deg, #ffffff, #fbfcff);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.gaaai-show-article-author-avatar img {
    width: 72px;
    height: 72px;
    border: 3px solid rgba(255,255,255,.94);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15,23,42,.10);
}

.gaaai-show-article-author-body {
    min-width: 0;
}

.gaaai-show-article-author-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.gaaai-show-article-author-top strong {
color: #0f172a;
    font-size: 16px;
    line-height: 1.15;
}

.gaaai-show-article-author-top span {
    display: inline-flex;
    align-items: center;
padding: 0 10px;
    border-radius: 999px;
    background: rgba(249,115,22,.12);
    color: var(--gaaai-show-accent);
    font-size: 12px;
    font-weight: 700;
}

.gaaai-show-article-author-body p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.gaaai-show-article-author-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
}

.gaaai-show-article-follow-btn {
display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.gaaai-show-article-follow-btn:hover {
border-color: rgba(37,99,235,.18);
    background: rgba(37,99,235,.08);
    color: var(--gaaai-show-primary);
    transform: translateY(-1px);
}

.gaaai-show-article-copyright {
    margin: 18px 0 0;
    color: #94a3b8;
    font-size: 14px;
}

.gaaai-show-article-sidebar {
    display: grid;
    gap: 16px;
    align-content: start;
}

.gaaai-show-article-sidebar .gaaai-show-side-card,
.gaaai-show-article-related-card {
    padding: 18px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
    box-shadow: 0 16px 40px rgba(15,23,42,.05);
}

.gaaai-show-article-sidebar .gaaai-show-side-card-head {
    margin-bottom: 14px;
}

.gaaai-show-article-sidebar .gaaai-show-side-card-head h2 {
    font-size: 16px;
}

.gaaai-show-article-sidebar .gaaai-show-toc-card > h2 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 14px;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.5;
}

.gaaai-show-article-sidebar .gaaai-show-toc-card > h2:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 18px;
    border-radius: var(--gaaai-show-radius);
    background: var(--gaaai-show-primary);
    content: '';
    transform: translateY(-50%);
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-h2-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc a {
    display: block;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 12px;
    color: #475569;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-h2-row > a {
    flex: 1 1 auto;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc a:hover,
.gaaai-show-article-sidebar .gaaai-show-auto-toc a.is-active {
    color: var(--gaaai-show-accent);
    background: rgba(249,115,22,.08);
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-toggle {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -5px 0 0 -4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform .2s ease;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-toggle:hover {
    border-color: rgba(249,115,22,.22);
    color: var(--gaaai-show-accent);
    background: rgba(249,115,22,.08);
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-h2-item:not(.is-open) .toc-h3-list {
    display: none;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-h2-item:not(.is-open) .toc-toggle::before {
    margin: -4px 0 0 -5px;
    transform: rotate(-45deg);
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-h3-list {
    margin-top: 2px;
    padding-left: 14px;
}

.gaaai-show-article-sidebar .gaaai-show-auto-toc .toc-h3 {
    padding: 7px 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.gaaai-show-article-resource-box {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 15px 10px;
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.gaaai-show-article-resource-icon {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
}


.gaaai-show-article-resource-body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.gaaai-show-article-resource-body strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.gaaai-show-article-resource-body span {
    display: -webkit-box;
    overflow: hidden;
    min-height: calc(1.55em * 3);
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
    margin: 5px 0;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.gaaai-show-article-resource-body em {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 22px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(249,115,22,.12);
    color: var(--gaaai-show-accent);
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
}


.gaaai-show-article-resource-btn {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: var(--gaaai-show-radius);
    background: linear-gradient(135deg, #ff7a18, #ff4d00);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
}

.gaaai-show-article-resource-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}


@media (max-width: 1024px) {
    .gaaai-show-article-layout {
        grid-template-columns: 1fr;
    }

    .gaaai-show-article-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gaaai-show-article-entry {
        padding: 18px 16px 26px;
        border-radius: 16px;
    }

    .gaaai-show-article-content p,
    .gaaai-show-article-content ul,
    .gaaai-show-article-content ol {
        font-size: 16px;
    }

    .gaaai-show-article-author-card {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        padding: 18px 16px;
        text-align: center;
    }

    .gaaai-show-article-author-avatar img {
        width: 64px;
        height: 64px;
    }

    .gaaai-show-article-author-body {
        width: 100%;
    }

    .gaaai-show-article-author-top,
    .gaaai-show-article-author-stats {
        justify-content: center;
    }

    .gaaai-show-article-follow-btn {
        width: 100%;
        max-width: 120px;
    }

    .gaaai-show-article-resource-btn {
        width: 100%;
    }

    .gaaai-show-article-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Tutorial article TOC height control */
.gaaai-show-article-sidebar .gaaai-show-toc-card {
    overflow: hidden;
    max-height: calc(100vh - 132px);
}

.gaaai-show-article-sidebar .gaaai-show-toc-card .gaaai-show-auto-toc {
    overflow-y: auto;
    max-height: calc(100vh - 196px);
    padding-right: 4px;
    overscroll-behavior: contain;
}

.gaaai-show-article-sidebar .gaaai-show-toc-card .gaaai-show-auto-toc::-webkit-scrollbar {
    width: 6px;
}

.gaaai-show-article-sidebar .gaaai-show-toc-card .gaaai-show-auto-toc::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(148,163,184,.38);
}

.gaaai-show-article-sidebar .gaaai-show-toc-card .gaaai-show-auto-toc::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 1024px) {
    .gaaai-show-article-sidebar .gaaai-show-toc-card,
    .gaaai-show-article-sidebar .gaaai-show-toc-card .gaaai-show-auto-toc {
        max-height: none;
        overflow: visible;
    }
}

/* Tutorial article final refinements */
.gaaai-show-entry p {
    margin: 10px 0 18px;
}

.gaaai-show-article-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(15,23,42,.08);
}

.gaaai-show-article-post-nav-item a {
    display: grid;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: inherit;
}

.gaaai-show-article-post-nav-item span {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
}

.gaaai-show-article-post-nav-item strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #334155;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.gaaai-show-article-post-nav-item.is-next a {
    text-align: right;
}

.gaaai-show-article-post-nav-item a:hover strong,
.gaaai-show-article-post-nav-item a:hover span {
    color: var(--gaaai-show-accent);
}

.gaaai-show-product-sidebar-widgets.gaaai-show-product-hero-aside,
.gaaai-show-product-sidebar-widgets .gaaai-show-product-service-card {
    width: 100%;
}

.gaaai-show-product-sidebar-widgets.gaaai-show-product-hero-aside {
    display: block;
}

/* Header actions, search modal, 404 and shared search forms */
.gaaai-show-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.gaaai-show-search-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.gaaai-show-search-toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 999px;
    transform: translate(-58%, -58%);
}

.gaaai-show-search-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(4px, 5px) rotate(45deg);
    transform-origin: center;
}

.gaaai-show-search-toggle:hover {
    color: var(--gaaai-show-primary);
    background: #fff;
}

.gaaai-show-search-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 128px 22px 32px;
}

.gaaai-show-search-modal.is-open {
    display: flex;
}

.gaaai-show-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.38);
    backdrop-filter: blur(12px);
}

.gaaai-show-search-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    padding: 30px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: var(--gaaai-show-radius);
    background: rgba(255,255,255,.96);
    box-shadow: 0 34px 90px rgba(15,23,42,.20);
}

.gaaai-show-search-dialog h2 {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.3;
}

.gaaai-show-search-dialog p {
    margin: 8px 0 20px;
    color: #64748b;
    font-size: 15px;
}

.gaaai-show-search-dialog .search-form,
.gaaai-show-404-search .search-form,
.gaaai-show-no-results-search .search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    max-width: none;
    gap: 10px;
}

.gaaai-show-search-dialog .search-field,
.gaaai-show-search-dialog .search-submit,
.gaaai-show-404-search .search-field,
.gaaai-show-404-search .search-submit,
.gaaai-show-no-results-search .search-field,
.gaaai-show-no-results-search .search-submit {
    font-size: 16px;
    line-height: 1.5;
}

.gaaai-show-search-dialog .search-field,
.gaaai-show-404-search .search-field,
.gaaai-show-no-results-search .search-field {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: var(--gaaai-show-radius);
    background: #fff;
    color: #0f172a;
    outline: none;
    box-shadow: none;
}

.gaaai-show-search-dialog .search-field::placeholder,
.gaaai-show-404-search .search-field::placeholder,
.gaaai-show-no-results-search .search-field::placeholder {
    color: #94a3b8;
    font-size: 16px;
}

.gaaai-show-no-results-search .search-field:focus {
    border-color: rgba(37,99,235,.36);
    box-shadow: 0 0 0 4px rgba(37,99,235,.08);
}

.gaaai-show-search-dialog .search-submit,
.gaaai-show-404-search .search-submit,
.gaaai-show-no-results-search .search-submit {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--gaaai-show-radius);
    background: var(--gaaai-show-primary);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.gaaai-show-search-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(15,23,42,.06);
    cursor: pointer;
}

.gaaai-show-search-close::before,
.gaaai-show-search-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.gaaai-show-search-close::before {
    transform: translate(-50%,-50%) rotate(45deg);
}

.gaaai-show-search-close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

/* 404 page and no-results page */
.gaaai-show-404-section {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: flex-start;
    padding: min(10vh, 96px) 0 72px;
}

.gaaai-show-404-card,
.gaaai-show-no-results-card {
    position: relative;
    overflow: hidden;
    width: min(760px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--gaaai-show-radius);
    background:
        radial-gradient(circle at 16% 16%, rgba(37,99,235,.10), transparent 34%),
        radial-gradient(circle at 86% 20%, rgba(249,115,22,.12), transparent 32%),
        rgba(255,255,255,.95);
    text-align: center;
}

.gaaai-show-404-card {
    padding: 56px 34px;
    box-shadow: 0 28px 80px rgba(15,23,42,.10);
}

.gaaai-show-no-results-card {
    padding: 48px 34px;
    box-shadow: 0 24px 72px rgba(15,23,42,.08);
}

.gaaai-show-404-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 0 30px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    color: var(--gaaai-show-primary);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.gaaai-show-no-results-icon {
    position: relative;
    display: inline-flex;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: var(--gaaai-show-radius);
    background: rgba(37,99,235,.08);
}

.gaaai-show-no-results-icon::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 19px;
    width: 24px;
    height: 24px;
    border: 3px solid var(--gaaai-show-primary);
    border-radius: 999px;
}

.gaaai-show-no-results-icon::after {
    content: "";
    position: absolute;
    left: 43px;
    top: 44px;
    width: 15px;
    height: 3px;
    border-radius: 999px;
    background: var(--gaaai-show-primary);
    transform: rotate(45deg);
}

.gaaai-show-404-card h1,
.gaaai-show-no-results-card h2 {
    margin: 24px 0 10px;
    color: #0f172a;
    line-height: 1.25;
}

.gaaai-show-404-card h1 {
    font-size: clamp(30px, 4vw, 46px);
}

.gaaai-show-no-results-card h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.gaaai-show-404-card p,
.gaaai-show-no-results-card p {
    width: min(560px, 100%);
    margin: 0 auto 24px;
    color: #64748b;
    line-height: 1.8;
}

.gaaai-show-404-card p {
    font-size: 16px;
}

.gaaai-show-no-results-card p {
    margin-top: 12px;
    font-size: 16px;
}

.gaaai-show-404-search,
.gaaai-show-no-results-search {
    width: min(560px, 100%);
    margin: 0 auto;
}

.gaaai-show-404-actions,
.gaaai-show-no-results-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.gaaai-show-404-actions .gaaai-show-btn,
.gaaai-show-no-results-actions .gaaai-show-btn {
    width: auto;
    min-width: 132px;
    flex: 0 0 auto;
}


/* Product sidebar price alignment */
.gaaai-show-product-detail-sidebar .gaaai-show-related-price {
    justify-content: center;
    width: 100%;
    text-align: center;
}

.gaaai-show-product-detail-sidebar .gaaai-show-related-price small {
    color: #94a3b8;
    font-weight: 400;
    -webkit-text-fill-color: #94a3b8;
}


.gaaai-show-product-service-icon::before,
.gaaai-show-product-service-icon::after {
    display: none;
}


/* Auth, home group and section refinements */
.gaaai-show-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.gaaai-show-auth-row .gaaai-show-check {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.gaaai-show-auth-form input[type="checkbox"],
.gaaai-show-auth-form .login-remember input[type="checkbox"],
.gaaai-show-auth-form label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 0 8px 0 0;
    accent-color: var(--gaaai-show-primary);
}


/* Auth social login */
.gaaai-show-auth-social {
    margin-top: 22px;
}

.gaaai-show-auth-social-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.gaaai-show-auth-social-divider::before,
.gaaai-show-auth-social-divider::after {
    content: "";
    flex: 1 1 0;
    height: 1px;
    background: rgba(148,163,184,.28);
}

.gaaai-show-auth-social-divider span {
    flex: 0 0 auto;
    white-space: nowrap;
}

#gaaailogin-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    justify-self: center;
}

#gaaailogin-box a{
    border-radius: 999px;
    max-width: 120px;
}

#gaaailogin-box .gaaailoginfont {
    font-size: 18px;
}

/* Responsive refinements */
@media (max-width: 1024px) {
    body {
        padding-top: 66px;
    }

    html {
        scroll-padding-top: 82px;
    }
    
    .gaaai-show-site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        min-height: calc(66px + env(safe-area-inset-top, 0px));
        padding-top: env(safe-area-inset-top, 0px);
        overflow: visible;
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .admin-bar .gaaai-show-site-header {
        top: 46px;
    }

    .gaaai-show-header-inner {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr) auto;
        grid-template-areas: "menu brand actions";
        align-items: center;
        grid-auto-rows: 1fr;
        gap: 8px;
        height: 66px;
    }

    .gaaai-show-site-desc {
        display: none;
    }

    .gaaai-show-menu-toggle {
        grid-area: menu;
        align-self: center;
        justify-self: start;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        line-height: 1;
        transform: none;
    }

    .gaaai-show-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .gaaai-show-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(2) {
        opacity: 0;
    }

    .gaaai-show-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .gaaai-show-brand {
        grid-area: brand;
        align-self: center;
        justify-self: center;
        min-width: 0;
        overflow: hidden;
        text-align: center;
    }

    .gaaai-show-brand .custom-logo-link,
    .gaaai-show-brand .gaaai-show-option-logo-link,
    .gaaai-show-brand .gaaai-show-site-title {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .gaaai-show-brand img,
    .gaaai-show-option-logo {
        max-width: 150px;
        max-height: 42px;
        height: auto;
        object-fit: contain;
    }

    .gaaai-show-header-actions {
        grid-area: actions;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        min-width: 0;
        margin-left: 0;
    }

    .gaaai-show-header-account {
        display: flex;
        align-items: center;
        gap: 6px;
        min-width: 0;
    }

    .gaaai-show-header-account .gaaai-show-account-link:not(:first-child) {
        display: none;
    }

    .gaaai-show-search-toggle,
    .gaaai-show-header-account .gaaai-show-account-link {
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        flex: 0 0 36px;
        width: 36px;
        min-width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0;
        border: 1px solid rgba(15,23,42,.08);
        border-radius: 999px;
        background: rgba(255,255,255,.92);
        color: #0f172a;
        font-size: 0;
        line-height: 1;
        white-space: nowrap;
        box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }

    .gaaai-show-header-account .gaaai-show-account-link:hover,
    .gaaai-show-search-toggle:hover {
        background: #fff;
        box-shadow: 0 12px 26px rgba(15,23,42,.08);
        transform: translateY(-1px);
    }

    .gaaai-show-header-account .gaaai-show-account-link::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 9px;
        box-sizing: border-box;
        width: 12px;
        height: 12px;
        border: 2px solid #0f172a;
        border-radius: 999px;
        transform: translateX(-50%);
    }

    .gaaai-show-header-account .gaaai-show-account-link::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 22px;
        box-sizing: border-box;
        width: 18px;
        height: 9px;
        border: 2px solid #0f172a;
        border-bottom: 0;
        border-radius: 999px 999px 0 0;
        transform: translateX(-50%);
    }

    .gaaai-show-primary-nav.is-open {
        display: block;
    }

    .gaaai-show-primary-nav {
        grid-column: 1 / -1;
        order: initial;
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: calc(66px + env(safe-area-inset-top, 0px));
        width: 100vw;
        max-width: none;
        max-height: calc(100vh - 66px - env(safe-area-inset-top, 0px));
        margin: 0;
        padding: 14px 18px 18px;
        overflow-y: auto;
        overflow-x: hidden;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: 0 18px 36px rgba(15,23,42,.12);
    }

    .gaaai-show-primary-nav ul,
    .gaaai-show-primary-nav li {
        max-width: 100%;
    }

    .gaaai-show-primary-nav ul,
    .gaaai-show-primary-nav > ul,
    .gaaai-show-primary-nav .menu {
        display: block;
        width: min(var(--gaaai-show-container), calc(100vw - 36px));
        margin: 0 auto;
        padding: 0;
    }

    .gaaai-show-primary-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 11px 12px;
        border-radius: var(--gaaai-show-radius);
    }

    .gaaai-show-primary-nav li + li {
        margin-top: 0;
    }

    .gaaai-show-primary-nav > ul > li {
        border-bottom: 1px solid rgba(148,163,184,.18);
    }

    .gaaai-show-primary-nav > ul > li:last-child {
        border-bottom: 0;
    }

    .gaaai-show-primary-nav > ul > li > a,
    .gaaai-show-primary-nav .menu > li > a {
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 12px 4px;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-size: 16px;
    }

    .gaaai-show-primary-nav > ul > li:hover > a,
    .gaaai-show-primary-nav > ul > li:focus-within > a,
    .gaaai-show-primary-nav .menu > li:hover > a,
    .gaaai-show-primary-nav .menu > li:focus-within > a,
    .gaaai-show-primary-nav .current-menu-item > a,
    .gaaai-show-primary-nav .current-menu-ancestor > a,
    .gaaai-show-primary-nav .sub-menu a:hover,
    .gaaai-show-primary-nav .children a:hover,
    .gaaai-show-primary-nav .sub-menu .current-menu-item > a,
    .gaaai-show-primary-nav .children .current-menu-item > a {
        background: transparent;
        color: var(--gaaai-show-primary);
    }

    .gaaai-show-primary-nav .sub-menu .menu-item-has-children > a::after,
    .gaaai-show-primary-nav .children .page_item_has_children > a::after {
        transform: rotate(45deg) translateY(-1px);
    }

    .gaaai-show-primary-nav .menu-item-has-children,
    .gaaai-show-primary-nav .page_item_has_children {
        position: relative;
    }

    .gaaai-show-primary-nav .menu-item-has-children > a,
    .gaaai-show-primary-nav .page_item_has_children > a {
        padding-right: 52px;
    }

    .gaaai-show-primary-nav .menu-item-has-children > a::after,
    .gaaai-show-primary-nav .page_item_has_children > a::after {
        display: none;
    }

    .gaaai-show-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 8px;
        right: 0;
        z-index: 2;
        width: 32px;
        height: 32px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #64748b;
        cursor: pointer;
    }

    .gaaai-show-submenu-toggle::before {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translate(-1px,-1px);
        transition: transform .2s ease;
    }

    .gaaai-show-primary-nav li.is-submenu-open > .gaaai-show-submenu-toggle::before {
        transform: rotate(225deg) translate(-1px,-1px);
    }

    .gaaai-show-primary-nav .sub-menu,
    .gaaai-show-primary-nav .children,
    .gaaai-show-primary-nav .sub-menu .sub-menu,
    .gaaai-show-primary-nav .children .children {
        position: static;
        display: none;
        width: auto;
        min-width: 0;
        padding: 0 0 4px 14px;
        background: transparent;
        border: 0;
        border-left: 1px solid rgba(148,163,184,.24);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .gaaai-show-primary-nav .sub-menu,
    .gaaai-show-primary-nav .children {
        margin: 0 0 10px;
    }

    .gaaai-show-primary-nav .sub-menu .sub-menu,
    .gaaai-show-primary-nav .children .children {
        margin: 2px 0 0;
        padding-left: 12px;
    }

    .gaaai-show-primary-nav .sub-menu a,
    .gaaai-show-primary-nav .children a {
        min-height: 38px;
        margin: 0;
        padding: 8px 4px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #64748b;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.45;
        white-space: normal;
    }

    .gaaai-show-primary-nav .sub-menu .sub-menu a,
    .gaaai-show-primary-nav .children .children a {
        padding-left: 4px;
        background: transparent;
        font-size: 14px;
        font-weight: 500;
    }

    .gaaai-show-primary-nav .sub-menu[hidden],
    .gaaai-show-primary-nav .children[hidden],
    .gaaai-show-primary-nav .sub-menu .sub-menu[hidden],
    .gaaai-show-primary-nav .children .children[hidden],
    .gaaai-show-primary-nav li:not(.is-submenu-open) > .sub-menu,
    .gaaai-show-primary-nav li:not(.is-submenu-open) > .children {
        display: none;
    }

    .gaaai-show-primary-nav li.is-submenu-open > .sub-menu,
    .gaaai-show-primary-nav li.is-submenu-open > .children {
        display: block;
    }

    .gaaai-show-mobile-account {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 10px;
        width: min(var(--gaaai-show-container), calc(100vw - 36px));
        margin: 12px auto 0;
        padding: 14px 0 0;
        border-top: 1px solid rgba(15,23,42,.08);
    }

    .gaaai-show-mobile-account.is-logged-in {
        grid-template-columns: 1fr;
    }

    .gaaai-show-mobile-account .gaaai-show-account-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        padding: 0 14px;
        border-radius: var(--gaaai-show-radius);
        font-size: 15px;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: .01em;
        text-align: center;
        white-space: nowrap;
        box-shadow: none;
    }

    .gaaai-show-mobile-account .gaaai-show-account-link:not(.gaaai-show-account-link-ghost) {
        background: linear-gradient(135deg,var(--gaaai-show-primary),#0ea5e9);
        color: #fff;
        border: 1px solid rgba(255,255,255,.25);
        box-shadow: 0 12px 24px rgba(37,99,235,.22);
    }

    .gaaai-show-mobile-account .gaaai-show-account-link-ghost {
        background: rgba(248,250,252,.92);
        color: #0f172a;
        border: 1px solid rgba(15,23,42,.1);
    }

    .gaaai-show-mobile-account .gaaai-show-account-link:hover,
    .gaaai-show-mobile-account .gaaai-show-account-link:focus {
        transform: none;
    }

    .gaaai-show-search-modal {
        padding-top: 96px;
    }
}

@media (max-width: 768px) {
    .gaaai-show-article-resource-box {
        grid-template-columns: auto minmax(0, 1fr);
        text-align: left;
    }
.gaaai-show-article-post-nav {
        grid-template-columns: 1fr;
    }

    .gaaai-show-article-post-nav-item.is-next a {
        text-align: left;
    }

    .gaaai-show-site-title {
        overflow: hidden;
        display: block;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .gaaai-show-search-dialog {
        padding: 24px 18px;
    }

    .gaaai-show-search-dialog .search-form,
    .gaaai-show-404-search .search-form,
    .gaaai-show-no-results-search .search-form {
        grid-template-columns: 1fr;
    }

    .gaaai-show-search-dialog .search-submit,
    .gaaai-show-404-search .search-submit,
    .gaaai-show-no-results-search .search-submit {
        width: 100%;
    }

    .gaaai-show-404-card,
    .gaaai-show-no-results-card {
        padding: 42px 18px;
    }

    .gaaai-show-404-actions,
    .gaaai-show-no-results-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* Archive page title marker */
.gaaai-show-page-hero .gaaai-show-container > h1,
.gaaai-show-wide-page-head > h1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gaaai-show-page-hero .gaaai-show-container > h1::before,
.gaaai-show-wide-page-head > h1::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 18px;
    border-radius: 999px;
    background: var(--gaaai-show-primary);
    box-shadow: 0 8px 18px rgba(37,99,235,.20);
}


.gaaai-show-btn.is-disabled {
    cursor: not-allowed;
    opacity: .72;
    pointer-events: none;
}

/* v1.17.4：产品详情页会员价展示 */
.gaaai-show-product-detail-hero .gaaai-show-member-price-label {
    display: inline-block;
    padding: 6px 10px 5px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .10);
    color: #c2410c;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}