:root {
  --bg: #ffffff;
  --surface: #fbfcfd;
  --surface-2: #e8edf2;
  --surface-3: #d9e0e8;
  --text: #111820;
  --muted: #5d6875;
  --faint: #7b8794;
  --line: #d7dee6;
  --accent: #1267e8;
  --accent-strong: #0b55c7;
  --accent-soft: #dce9ff;
  --ai-amber: #ff9500;
  --ai-rose: #ff2d55;
  --ai-violet: #a855f7;
  --ai-cyan: #06b6d4;
  --ai-gradient: linear-gradient(135deg, #ff9500 0%, #ff2d55 33%, #a855f7 66%, #06b6d4 100%);
  --ai-glow: 0 0 24px rgba(255, 45, 85, .2), 0 0 36px rgba(6, 182, 212, .18);
  --warning: #a8671d;
  --shadow: 0 18px 60px rgba(17, 31, 48, .1);
  --glass: rgba(255, 255, 255, .62);
  --glass-strong: rgba(252, 253, 255, .82);
  --glass-border: rgba(255, 255, 255, .78);
  --glass-shadow: 0 20px 56px rgba(30, 56, 87, .10), inset 0 1px 0 rgba(255, 255, 255, .95), inset 0 -1px 0 rgba(120, 140, 180, .06);
  --card-radius: 16px;
  --control-radius: 10px;
  --header-height: 70px;
  /* WordPress places its admin toolbar above the front-end when signed in. */
  --srcx-admin-bar-height: 0px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #101412;
  --surface: #171c19;
  --surface-2: #202723;
  --surface-3: #2a332e;
  --text: #edf3ef;
  --muted: #a5b1aa;
  --faint: #78847d;
  --line: #2b342f;
  --accent: #5c9dff;
  --accent-strong: #83b5ff;
  --accent-soft: #172d4f;
  --ai-amber: #ffa726;
  --ai-rose: #ff3b68;
  --ai-violet: #b366f9;
  --ai-cyan: #22d3ee;
  --ai-gradient: linear-gradient(135deg, #ffa726 0%, #ff3b68 33%, #b366f9 66%, #22d3ee 100%);
  --ai-glow: 0 0 28px rgba(255, 45, 85, .28), 0 0 40px rgba(34, 211, 238, .24);
  --warning: #e7b56e;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --glass: rgba(25, 33, 29, .63);
  --glass-strong: rgba(27, 36, 31, .82);
  --glass-border: rgba(255, 255, 255, .11);
  --glass-shadow: 0 22px 58px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .08);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #101412;
    --surface: #171c19;
    --surface-2: #202723;
    --surface-3: #2a332e;
    --text: #edf3ef;
    --muted: #a5b1aa;
    --faint: #78847d;
    --line: #2b342f;
    --accent: #5c9dff;
    --accent-strong: #83b5ff;
    --accent-soft: #172d4f;
    --ai-amber: #ffa726;
    --ai-rose: #ff3b68;
    --ai-violet: #b366f9;
    --ai-cyan: #22d3ee;
    --ai-gradient: linear-gradient(135deg, #ffa726 0%, #ff3b68 33%, #b366f9 66%, #22d3ee 100%);
    --ai-glow: 0 0 28px rgba(255, 45, 85, .28), 0 0 40px rgba(34, 211, 238, .24);
    --warning: #e7b56e;
    --shadow: 0 24px 70px rgba(0, 0, 0, .28);
    --glass: rgba(25, 33, 29, .63);
    --glass-strong: rgba(27, 36, 31, .82);
    --glass-border: rgba(255, 255, 255, .11);
    --glass-shadow: 0 22px 58px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .08);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-family: "Avenir Next", Avenir, "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.srcx-aurora-bg { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.srcx-skip { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; border-radius: var(--control-radius); background: var(--text); color: var(--bg); }
.srcx-skip:focus { top: calc(12px + var(--srcx-admin-bar-height)); }

.srcx-header { position: sticky; top: var(--srcx-admin-bar-height); z-index: 40; height: var(--header-height); border-bottom: 1px solid var(--glass-border); background: rgba(255, 255, 255, 0.96); box-shadow: 0 8px 32px rgba(36, 50, 80, .08), inset 0 -1px 0 color-mix(in srgb, var(--text) 5%, transparent); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); }
[data-theme="dark"] .srcx-header { background: rgba(16, 20, 18, 0.96); }
.srcx-header__inner { width: min(1480px, 100%); height: 100%; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 28px; }
.srcx-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 760; letter-spacing: -.04em; }
.srcx-brand__logo { width: auto; height: 34px; border-radius: 0; box-shadow: none; }
.srcx-brand__logo--dark { display: none; }
[data-theme="dark"] .srcx-brand__logo--light { display: none; }
[data-theme="dark"] .srcx-brand__logo--dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .srcx-brand__logo--light { display: none; }
  :root:not([data-theme="light"]) .srcx-brand__logo--dark { display: block; }
}
.srcx-primary-nav { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.srcx-primary-nav a { padding: 8px 11px; border-radius: 9px; color: var(--muted); font-size: 14px; font-weight: 650; transition: background .2s ease, color .2s ease; }
.srcx-primary-nav a:hover, .srcx-primary-nav a.is-active { background: var(--surface-2); color: var(--text); }
.srcx-header-search { min-width: 0; height: 42px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid #d9e1ec; border-radius: 12px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9); justify-self: center; width: min(620px, 100%); position: relative; transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease; }
.srcx-header-search:hover { border-color: #94a3b8; background: #ffffff; box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08); }
.srcx-header-search:focus-within { border-color: var(--accent); background: #ffffff; box-shadow: 0 0 0 3px rgba(18, 103, 232, 0.16), 0 2px 10px rgba(18, 103, 232, 0.08); }
.srcx-header-search .dashicons { color: #64748b; font-size: 18px; }
.srcx-header-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-size: 14.5px; color: var(--text); }
.srcx-header-search input::placeholder { color: #94a3b8; opacity: 1; }
[data-theme="dark"] .srcx-header-search { border-color: rgba(255, 255, 255, 0.13); background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); }
[data-theme="dark"] .srcx-header-search:hover { border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.08); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }
[data-theme="dark"] .srcx-header-search:focus-within { border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 3px rgba(92, 157, 255, 0.25); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .srcx-header-search { border-color: rgba(255, 255, 255, 0.13); background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); }
  :root:not([data-theme="light"]) .srcx-header-search:hover { border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.08); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }
  :root:not([data-theme="light"]) .srcx-header-search:focus-within { border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 3px rgba(92, 157, 255, 0.25); }
}
.srcx-search-panel { position: absolute; top: calc(100% + 8px); left: 0; right: 0; min-width: 300px; z-index: 60; padding: 14px 14px 10px; border: 1px solid var(--glass-border); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.srcx-search-panel[hidden] { display: none; }
.srcx-search-panel__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 2px 2px 8px; font-size: 13px; }
.srcx-search-panel__row strong { font-weight: 750; }
.srcx-search-panel__row + .srcx-search-panel__row { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.srcx-search-panel__refresh { display: inline-flex; align-items: center; gap: 5px; border: 0; background: transparent; color: var(--muted); font-size: 12.5px; font-weight: 650; cursor: pointer; }
.srcx-search-panel__refresh:hover { color: var(--accent-strong); }
.srcx-search-panel__refresh .dashicons { font-size: 15px; }
.srcx-search-panel__refresh.is-spinning .dashicons { animation: srcx-spin .7s linear infinite; }
@keyframes srcx-spin { to { transform: rotate(360deg); } }
.srcx-auth-tabs { display: flex; gap: 8px; margin: 0 0 20px; }
.srcx-auth-tabs a { flex: 1; padding: 10px 12px; border-radius: 10px; background: var(--surface-2); text-align: center; font-size: 14px; font-weight: 700; color: var(--muted); }
.srcx-auth-tabs a.is-active { background: var(--accent); color: #fff; }
.srcx-code-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: center; }
.srcx-code-row .srcx-button { white-space: nowrap; }
.srcx-code-row .srcx-button:disabled { opacity: .55; cursor: default; }
[data-code-error]:not([hidden]) { display: block; margin-top: 6px; color: #c0392b; font-size: 12.5px; }
.srcx-search-panel__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.srcx-search-panel__chips button { padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-2); font-size: 13px; cursor: pointer; }
.srcx-search-panel__chips button:hover { border-color: var(--accent); color: var(--accent-strong); }
.srcx-search-panel__hot { margin: 0; padding: 0; list-style: none; display: grid; max-height: 320px; overflow-y: auto; }
.srcx-search-panel__hot a { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 9px; font-size: 13.5px; }
.srcx-search-panel__hot a:hover { background: var(--surface-2); }
.srcx-search-panel__rank { width: 20px; color: var(--faint); font-size: 12.5px; font-weight: 800; }
.srcx-search-panel__hot li:nth-child(-n+3) .srcx-search-panel__rank { color: var(--accent-strong); }
.srcx-search-panel__name { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.srcx-search-panel__views { color: var(--faint); font-size: 12px; white-space: nowrap; }
.srcx-search-panel__empty { color: var(--faint); font-size: 13px; }
.srcx-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.srcx-icon-button, .srcx-account-button, .srcx-mobile-menu, .srcx-icon-action { display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--glass-border); border-radius: var(--control-radius); background: var(--glass); box-shadow: inset 0 1px 0 color-mix(in srgb, white 44%, transparent); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.srcx-icon-button:hover, .srcx-account-button:hover, .srcx-icon-action:hover { border-color: var(--accent); background: var(--accent-soft); }
.srcx-account-button { display: inline-flex; align-items: center; gap: 8px; width: auto; padding: 0 14px; font-size: 14px; font-weight: 650; white-space: nowrap; }
.srcx-account-button .dashicons { font-size: 20px; }
.srcx-account-button__label { overflow: hidden; max-width: 132px; text-overflow: ellipsis; }
.srcx-icon-button:active, .srcx-account-button:active, .srcx-icon-action:active, .srcx-submit-button:active, .srcx-button:active { transform: translateY(1px) scale(.98); }
.srcx-submit-button, .srcx-button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 16px; border: 1px solid var(--accent); border-radius: 999px; background: var(--accent); color: #f7fffb; font-weight: 720; white-space: nowrap; cursor: pointer; transition: background .18s ease, transform .18s ease; }
.srcx-submit-button:hover, .srcx-button:hover { background: var(--accent-strong); }
.srcx-button--secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.srcx-button--secondary:hover { background: var(--surface-2); }
.srcx-button--small { min-height: 34px; padding: 0 13px; font-size: 13px; }
.srcx-language { position: relative; }
.srcx-language-toggle { width: auto; min-width: 40px; padding: 0 10px; gap: 6px; }
.srcx-language__current { font-size: 12px; font-weight: 760; line-height: 1; }
.srcx-popover { position: absolute; right: 0; top: calc(100% + 8px); width: 170px; padding: 7px; border: 1px solid var(--glass-border); border-radius: 12px; background: var(--glass-strong); box-shadow: var(--glass-shadow); backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%); }
.srcx-popover a { display: block; padding: 9px 11px; border-radius: 8px; font-size: 14px; }
.srcx-popover a:hover, .srcx-popover a.is-current { background: var(--surface-2); }
.srcx-popover a.is-current { color: var(--accent-strong); font-weight: 750; }
.srcx-mobile-menu, .srcx-mobile-drawer { display: none; }

.srcx-main { position: relative; min-height: calc(100dvh - var(--header-height)); }
.srcx-shell { position: relative; z-index: 1; width: min(1420px, 100%); margin: 0 auto; padding: 28px; display: grid; grid-template-columns: 196px minmax(0, 1fr); gap: 32px; }
.srcx-sidebar { position: sticky; top: 98px; align-self: start; max-height: calc(100dvh - 122px); overflow-y: auto; padding: 8px 4px 24px; box-sizing: border-box; }
.srcx-side-nav { display: grid; gap: 4px; }
.srcx-side-nav__title { margin: 18px 12px 7px; color: var(--faint); font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.srcx-side-nav a, .srcx-side-community { position: relative; display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 14px; border-radius: 12px; color: var(--muted); font-size: 15.5px; font-weight: 600; border: 1px solid transparent; transition: all .2s cubic-bezier(.16, 1, .3, 1); }
.srcx-side-nav a .dashicons, .srcx-side-community .dashicons { width: 22px; font-size: 20px; color: var(--faint); transition: color .2s ease, transform .2s ease; }
.srcx-side-nav a:hover:not(.is-active), .srcx-side-community:hover:not(.is-active) { color: var(--text); background: rgba(15, 23, 42, 0.04); }
.srcx-side-nav a:hover:not(.is-active) .dashicons, .srcx-side-community:hover:not(.is-active) .dashicons { color: var(--text); transform: translateX(2px); }
.srcx-side-nav a.is-active, .srcx-side-community.is-active { color: var(--accent-strong, #0b55c7); background: linear-gradient(135deg, rgba(18, 103, 232, 0.10) 0%, rgba(18, 103, 232, 0.05) 100%); border: 1px solid rgba(18, 103, 232, 0.16); box-shadow: 0 2px 6px rgba(18, 103, 232, 0.06); font-weight: 700; }
.srcx-side-nav a.is-active::before, .srcx-side-community.is-active::before { content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 3.5px; border-radius: 0 3px 3px 0; background: var(--accent); }
.srcx-side-nav a.is-active .dashicons, .srcx-side-community.is-active .dashicons { color: var(--accent); transform: scale(1.06); }
[data-theme="dark"] .srcx-side-nav a:hover:not(.is-active), [data-theme="dark"] .srcx-side-community:hover:not(.is-active) { background: rgba(255, 255, 255, 0.06); color: var(--text); }
[data-theme="dark"] .srcx-side-nav a.is-active, [data-theme="dark"] .srcx-side-community.is-active { color: var(--accent); background: linear-gradient(135deg, rgba(92, 157, 255, 0.16) 0%, rgba(92, 157, 255, 0.08) 100%); border-color: rgba(92, 157, 255, 0.24); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22); }
[data-theme="dark"] .srcx-side-nav a.is-active::before, [data-theme="dark"] .srcx-side-community.is-active::before { background: var(--accent); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .srcx-side-nav a:hover:not(.is-active), :root:not([data-theme="light"]) .srcx-side-community:hover:not(.is-active) { background: rgba(255, 255, 255, 0.06); color: var(--text); }
  :root:not([data-theme="light"]) .srcx-side-nav a.is-active, :root:not([data-theme="light"]) .srcx-side-community.is-active { color: var(--accent); background: linear-gradient(135deg, rgba(92, 157, 255, 0.16) 0%, rgba(92, 157, 255, 0.08) 100%); border-color: rgba(92, 157, 255, 0.24); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22); }
  :root:not([data-theme="light"]) .srcx-side-nav a.is-active::before, :root:not([data-theme="light"]) .srcx-side-community.is-active::before { background: var(--accent); }
}
.srcx-side-divider { margin: 14px 4px; border: 0; border-top: 1px solid var(--line); }
.srcx-side-divider--secondary { margin-top: 18px; }
.srcx-side-nav--developer a { color: var(--text); }
.srcx-side-modules { display: grid; gap: 8px; margin-top: 12px; }
.srcx-side-module__title { display: block; margin: 4px 14px 2px; color: var(--faint); font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.srcx-side-app-link { position: relative; display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 14px; border-radius: 12px; color: var(--muted); font-size: 15.5px; font-weight: 600; border: 1px solid transparent; text-decoration: none; transition: all .2s cubic-bezier(.16, 1, .3, 1); box-sizing: border-box; }
.srcx-side-app-link:hover { color: var(--text); background: rgba(15, 23, 42, 0.04); }
.srcx-side-app-link:hover .srcx-side-app-link__icon { transform: translateX(2px); }
[data-theme="dark"] .srcx-side-app-link:hover,
:root:not([data-theme="light"]) .srcx-side-app-link:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.srcx-side-app-link__icon { width: 22px; height: 22px; border-radius: 6px; overflow: hidden; display: grid; place-items: center; flex: none; background: var(--surface-2); font-size: 11px; font-weight: 800; color: var(--text); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); transition: transform .2s ease; }
.srcx-side-app-link__icon img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 6px; }
.srcx-side-app-link__title { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15.5px; font-weight: 600; line-height: 1.3; }
.srcx-content { min-width: 0; }
#srcx-view { transition: opacity .16s ease; }
.srcx-page-progress { position: fixed; top: 0; left: 0; z-index: 200; width: 0; height: 2px; border-radius: 0 2px 2px 0; background: var(--accent); opacity: 0; pointer-events: none; }
.srcx-page-progress.is-active { opacity: 1; animation: srcx-progress-fill 1.1s ease-out forwards; }
.srcx-page-progress.is-done { width: 100%; opacity: 0; transition: opacity .25s ease; animation: none; }
@keyframes srcx-progress-fill { from { width: 0; } to { width: 86%; } }
@media (prefers-reduced-motion: reduce) { #srcx-view { transition: none; } .srcx-page-progress.is-active { animation: none; width: 40%; } }
.srcx-home-intro { max-width: 820px; margin: 2px 0 24px; }
.srcx-home-intro .srcx-eyebrow { margin: 0 0 8px; display: inline-flex; align-items: center; }
.srcx-home-intro h1 { margin: 0; font-size: clamp(34px, 4.1vw, 58px); line-height: 1.04; letter-spacing: -.06em; }
.srcx-home-intro > p:last-child { max-width: 700px; margin: 12px 0 0; color: var(--muted); font-size: 17px; }

.srcx-ai-sparkle {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(135deg, #ff2d55 0%, #a855f7 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, .4));
  vertical-align: middle;
  animation: srcx-sparkle-float 4s ease-in-out infinite alternate;
}

@keyframes srcx-sparkle-float {
  0%   { transform: rotate(0deg) scale(0.92); opacity: 0.85; }
  100% { transform: rotate(20deg) scale(1.15); opacity: 1; filter: drop-shadow(0 0 8px rgba(6, 182, 212, .45)); }
}

.srcx-ai-shimmer {
  display: inline-block;
  background: linear-gradient(112deg, #0d5ee8 0%, #7c3aed 28%, #e11d48 52%, #9333ea 76%, #06b6d4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: srcx-shimmer-pass 8s ease-in-out infinite alternate;
}

[data-theme="dark"] .srcx-ai-shimmer {
  background: linear-gradient(112deg, #60a5fa 0%, #a78bfa 28%, #fb7185 52%, #c084fc 76%, #38bdf8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@keyframes srcx-shimmer-pass {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}

@media (prefers-reduced-motion: reduce) {
  .srcx-ai-sparkle, .srcx-ai-shimmer {
    animation: none !important;
  }
}

.srcx-hero { position: relative; min-height: min(590px, calc(100dvh - 126px)); overflow: hidden; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.2fr); align-items: stretch; border: 1px solid var(--glass-border); border-radius: 24px; background: color-mix(in srgb, var(--glass-strong) 88%, #dfe3e1); box-shadow: var(--glass-shadow); backdrop-filter: blur(32px) saturate(145%); -webkit-backdrop-filter: blur(32px) saturate(145%); isolation: isolate; }
.srcx-hero__copy { align-self: center; z-index: 2; padding: clamp(44px, 7vw, 92px) 24px clamp(44px, 7vw, 92px) clamp(36px, 6vw, 82px); color: #17201b; }
.srcx-hero__copy h1 { max-width: 600px; margin: 0 0 20px; font-size: clamp(44px, 5.2vw, 76px); line-height: .98; letter-spacing: -.065em; font-weight: 780; }
html[lang^="zh"] .srcx-hero__copy h1 { font-size: clamp(42px, 4.25vw, 61px); line-height: 1.04; }
.srcx-hero__copy p { max-width: 520px; margin: 0 0 28px; color: #47534c; font-size: 18px; line-height: 1.55; }
.srcx-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.srcx-hero__visual { min-width: 0; }
.srcx-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }
.srcx-hero__note { position: absolute; right: 22px; bottom: 22px; z-index: 3; max-width: 250px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.38); border-radius: 13px; background: rgba(20, 30, 25, .74); color: #f0f5f2; backdrop-filter: blur(16px); font-size: 13px; box-shadow: inset 0 1px rgba(255,255,255,.08); }
.srcx-hero__note strong { display: block; margin-bottom: 2px; font-size: 14px; }

.srcx-carousel { position: relative; width: 100%; margin-bottom: 24px; }
.srcx-carousel__viewport { position: relative; width: 100%; height: 440px; border-radius: 24px; overflow: hidden; isolation: isolate; border: 1px solid rgba(226, 232, 240, 0.8); box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.03); background: #0f172a; }
.srcx-carousel-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); transform: scale(0.985); z-index: 1; }
.srcx-carousel-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: scale(1); z-index: 2; }
.srcx-carousel-slide__ambient { position: absolute; inset: -24px; z-index: 0; background-size: cover; background-position: center; filter: blur(50px) saturate(160%) brightness(0.65); opacity: 0.85; transform: scale(1.1); pointer-events: none; }
.srcx-carousel-slide__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.82) 45%, rgba(15, 23, 42, 0.65) 100%); pointer-events: none; }
.srcx-carousel-slide__body { position: relative; z-index: 3; width: 100%; height: 100%; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: center; gap: 32px; padding: 36px 44px; box-sizing: border-box; }
.srcx-carousel-slide__info { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; color: #ffffff; }
.srcx-carousel-slide__badge-row { display: flex; align-items: center; gap: 8px; }
.srcx-carousel-slide__badge { display: inline-flex; align-items: center; gap: 7px; padding: 4px 13px; border-radius: 999px; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.25); font-size: 12px; font-weight: 700; color: #ffffff; letter-spacing: 0.02em; }
.srcx-platform-tag { display: inline-flex; align-items: center; font-weight: 800; color: #38bdf8; }
.srcx-badge-text { color: rgba(255, 255, 255, 0.9); }
.srcx-carousel-slide__header { display: flex; align-items: center; gap: 16px; width: 100%; }
.srcx-carousel-slide__logo { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 18px; overflow: hidden; background: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35); display: grid; place-items: center; }
.srcx-carousel-slide__logo img { width: 80%; height: 80%; object-fit: contain; }
.srcx-carousel-slide__logo.is-broken { background: var(--accent); color: #f7fffb; font-size: 24px; font-weight: 800; }
.srcx-carousel-slide__logo.is-broken::before { content: attr(data-initial); }
.srcx-carousel-slide__logo.is-broken img { display: none; }
.srcx-carousel-slide__meta { min-width: 0; flex: 1; }
.srcx-carousel-slide__title { margin: 0; font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; color: #ffffff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.srcx-carousel-slide__title a { color: #ffffff; text-decoration: none; }
.srcx-carousel-slide__title a:hover { text-decoration: underline; }
.srcx-carousel-slide__subline { display: flex; align-items: center; gap: 8px; margin-top: 5px; font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.srcx-carousel-slide__rating { color: #fbbf24; font-weight: 700; }
.srcx-carousel-slide__dev { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.srcx-carousel-slide__summary { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; max-width: 520px; }
.srcx-carousel-slide__actions { margin-top: 6px; }
.srcx-carousel-slide__cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 999px; background: #2563eb; color: #ffffff !important; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; }
.srcx-carousel-slide__cta:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.55); }
.srcx-carousel-slide__cta .dashicons { font-size: 17px; width: 17px; height: 17px; line-height: 17px; }
.srcx-carousel-slide__stage { height: 100%; display: flex; align-items: center; justify-content: center; position: relative; perspective: 1000px; }
.srcx-carousel-slide__link-cover { position: absolute; inset: 0; z-index: 2; }

/* macOS Window Showcase */
.srcx-showcase-mac { width: 100%; max-width: 470px; background: rgba(30, 41, 59, 0.95); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 14px; overflow: hidden; box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08); transition: transform 0.4s ease; transform: rotateY(-3deg) rotateX(1.5deg); }
.srcx-showcase-mac:hover { transform: rotateY(0) rotateX(0); }
.srcx-showcase-mac__bar { height: 32px; padding: 0 12px; display: flex; align-items: center; gap: 7px; background: rgba(15, 23, 42, 0.9); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.srcx-mac-dot { width: 10px; height: 10px; border-radius: 999px; }
.srcx-mac-dot--close { background: #ff5f56; }
.srcx-mac-dot--min { background: #ffbd2e; }
.srcx-mac-dot--max { background: #27c93f; }
.srcx-showcase-mac__title { margin-left: 10px; font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.6); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.srcx-showcase-mac__screen { position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.srcx-showcase-mac__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* iPhone Showcase */
.srcx-showcase-phone-cluster { position: relative; height: 360px; width: 100%; max-width: 380px; display: flex; align-items: center; justify-content: center; }
.srcx-showcase-phone { position: relative; border-radius: 36px; padding: 7px; background: #1e293b; border: 2px solid rgba(255, 255, 255, 0.22); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 0, 0, 0.5); transition: transform 0.4s ease; }
.srcx-showcase-phone--front { z-index: 3; width: 182px; height: 350px; transform: rotate(-2deg); }
.srcx-showcase-phone--front:hover { transform: rotate(0) scale(1.02); }
.srcx-showcase-phone--back { position: absolute; right: 28px; z-index: 2; width: 170px; height: 330px; transform: rotate(8deg) translateY(10px); opacity: 0.85; filter: brightness(0.82); }
.srcx-showcase-phone__bezel { position: relative; width: 100%; height: 100%; border-radius: 28px; overflow: hidden; background: #000; }
.srcx-showcase-phone__island { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 44px; height: 12px; border-radius: 999px; background: #000; z-index: 10; border: 1px solid rgba(255, 255, 255, 0.08); }
.srcx-showcase-phone__screen { width: 100%; height: 100%; overflow: hidden; }
.srcx-showcase-phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* Carousel Controls & Dynamic Progress Bar */
.srcx-carousel__controls { min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 10px; }
.srcx-carousel__button { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid var(--glass-border); border-radius: 999px; background: var(--glass); box-shadow: inset 0 1px 0 rgba(255,255,255,.48); cursor: pointer; color: var(--fg); transition: all 0.2s ease; }
.srcx-carousel__button:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.srcx-carousel__button:active { transform: scale(.96); }
.srcx-carousel__dots { height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 14px; border: 1px solid var(--glass-border); border-radius: 999px; background: var(--glass); }
.srcx-carousel__dots button { position: relative; width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(148, 163, 184, 0.35); cursor: pointer; transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease; overflow: hidden; }
.srcx-carousel__dots button.is-active { width: 36px; background: rgba(37, 99, 235, 0.25); }
.srcx-carousel-dot__progress { position: absolute; inset: 0; border-radius: 999px; background: #2563eb; transform: scaleX(0); transform-origin: left center; }
.srcx-carousel__dots button.is-active .srcx-carousel-dot__progress { animation: srcx-carousel-progress 5s linear forwards; }
.srcx-carousel.is-paused .srcx-carousel-dot__progress { animation-play-state: paused; }
@keyframes srcx-carousel-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.srcx-editor-bar { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; margin-bottom: 20px; }
.srcx-editor-bar h2 { margin: 0; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.08; letter-spacing: -.045em; white-space: nowrap; }
.srcx-category-strip { min-width: 0; display: flex; gap: 7px; overflow-x: auto; padding: 3px 2px; scrollbar-width: none; }
.srcx-category-strip::-webkit-scrollbar { display: none; }
.srcx-category-strip a { flex: 0 0 auto; min-height: 34px; display: inline-flex; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--glass) 80%, transparent); color: var(--muted); font-size: 13px; font-weight: 680; }
.srcx-category-strip a:hover, .srcx-category-strip a.is-active { border-color: var(--text); background: var(--text); color: var(--bg); }

.srcx-section { padding: 52px 0 0; }
.srcx-section--tight { padding-top: 30px; }
.srcx-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.srcx-section-head h2, .srcx-page-head h1 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -.045em; }
.srcx-section-head p { max-width: 580px; margin: 8px 0 0; color: var(--muted); }
.srcx-text-link { color: var(--accent-strong); font-size: 14px; font-weight: 720; white-space: nowrap; }
.srcx-text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.srcx-featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.srcx-feature-card { position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; overflow: hidden; border: 1px solid var(--glass-border); border-radius: var(--card-radius); background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(24px) saturate(155%); -webkit-backdrop-filter: blur(24px) saturate(155%); transition: transform .22s ease, box-shadow .22s ease; }
.srcx-feature-card::before, .srcx-app-card::before, .srcx-chart::before, .srcx-facts::before, .srcx-form::before, .srcx-detail-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.24), transparent 38%); opacity: .72; }
.srcx-feature-card > *, .srcx-chart > * { position: relative; z-index: 1; }
.srcx-feature-card:nth-child(3n+1) { background: color-mix(in srgb, var(--glass) 78%, var(--accent-soft)); }
.srcx-feature-card:hover { border-color: rgba(255, 45, 85, .32); transform: translateY(-3px); box-shadow: 0 20px 48px rgba(30, 50, 90, .14), 0 0 24px -2px rgba(255, 45, 85, .18), inset 0 1px 0 rgba(255, 255, 255, .96); }
.srcx-feature-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.srcx-feature-card h3 { margin: 24px 0 8px; font-size: 25px; line-height: 1.1; letter-spacing: -.035em; }
.srcx-feature-card:first-child h3 { margin-top: 24px; font-size: 25px; }
.srcx-feature-card p { margin: 0 0 18px; color: var(--muted); }
.srcx-feature-card:first-child p { max-width: none; font-size: inherit; }
.srcx-feature-card .srcx-platforms { margin-top: auto; }

.srcx-app-logo { flex: 0 0 auto; display: grid; place-items: center; width: 58px; height: 58px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--line) 82%, transparent); border-radius: 15px; background: #f8faf9; box-shadow: 0 8px 22px rgba(28, 52, 40, .08); }
.srcx-app-logo img { width: 68%; height: 68%; object-fit: contain; }
.srcx-app-logo--lg { width: 92px; height: 92px; border-radius: 22px; }
.srcx-app-logo--sm { width: 44px; height: 44px; border-radius: 12px; }
.srcx-app-logo--fallback { background: var(--accent); color: #f7fffb; font-size: 24px; font-weight: 800; }
.srcx-app-logo.is-broken { background: var(--accent); color: #f7fffb; font-size: 24px; font-weight: 800; }
.srcx-app-logo.is-broken::before { content: attr(data-initial); }
.srcx-app-logo.is-broken img { display: none; }

.srcx-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.srcx-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.srcx-app-card { position: relative; min-width: 0; padding: 18px; border: 1px solid var(--glass-border); border-radius: var(--card-radius); background: var(--glass); box-shadow: 0 12px 34px rgba(45, 60, 95, .09), inset 0 1px 0 rgba(255,255,255,.86); backdrop-filter: blur(24px) saturate(165%); -webkit-backdrop-filter: blur(24px) saturate(165%); transition: border-color .25s ease, transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s cubic-bezier(.16, 1, .3, 1); }
.srcx-app-card > * { position: relative; z-index: 1; }
.srcx-app-card:hover { border-color: rgba(168, 85, 247, .35); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(35, 55, 95, .13), 0 0 20px -2px rgba(6, 182, 212, .16), inset 0 1px 0 rgba(255, 255, 255, .96); }
.srcx-card-main { min-width: 0; display: flex; align-items: flex-start; gap: 14px; }
.srcx-card-copy { min-width: 0; display: grid; gap: 5px; }
.srcx-card-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 17px; letter-spacing: -.02em; }
.srcx-card-copy > span:not(.srcx-card-meta) { min-height: 42px; display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 13px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.srcx-card-meta { display: flex; align-items: center; gap: 8px; color: var(--faint); font-size: 12px; }
.srcx-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line); }
.srcx-platforms { display: flex; flex-wrap: wrap; gap: 6px; }
.srcx-platform { display: inline-flex; align-items: center; gap: 3px; min-height: 26px; padding: 3px 8px; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: 11px; font-weight: 700; }
.srcx-platform .dashicons { width: 14px; height: 14px; font-size: 14px; }
.srcx-platform[href]:hover { color: var(--accent-strong); background: var(--accent-soft); }
.srcx-rating { display: inline-flex; align-items: center; gap: 3px; color: var(--warning); font-weight: 750; }
.srcx-rating small { color: var(--faint); font-weight: 600; }
.srcx-icon-action { width: 32px; height: 32px; }
.srcx-icon-action .dashicons { font-size: 17px; }

.srcx-chart { position: relative; padding: 20px; border: 1px solid var(--glass-border); border-radius: var(--card-radius); background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); }
.srcx-chart__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.srcx-chart h3 { margin: 0; font-size: 18px; letter-spacing: -.02em; }
.srcx-chart ol { list-style: none; margin: 0; padding: 0; }
.srcx-chart li { display: grid; grid-template-columns: 26px 44px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.srcx-chart li:last-child { border-bottom: 0; }
.srcx-chart__rank { color: var(--faint); font-size: 13px; font-variant-numeric: tabular-nums; }
.srcx-chart__name { min-width: 0; }
.srcx-chart__name strong, .srcx-chart__name span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.srcx-chart__name strong { font-size: 14px; }
.srcx-chart__name span { color: var(--faint); font-size: 11px; }

.srcx-page { width: min(1210px, 100%); margin: 0 auto; padding: 48px 28px 90px; }
.srcx-page-head { margin-bottom: 28px; }
.srcx-page-head p { max-width: 680px; margin: 12px 0 0; color: var(--muted); font-size: 17px; }
.srcx-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.srcx-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.srcx-filter { min-height: 36px; display: inline-flex; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 13px; font-weight: 680; }
.srcx-filter:hover, .srcx-filter.is-active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-strong); }
.srcx-sort { min-height: 38px; padding: 0 32px 0 12px; border: 1px solid var(--line); border-radius: var(--control-radius); background: var(--surface); }
.srcx-pagination { margin-top: 30px; }
.srcx-pagination .nav-links, .srcx-pagination > ul.page-numbers { display: flex; gap: 7px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.srcx-pagination .nav-links .page-numbers, .srcx-pagination > ul.page-numbers > li > a, .srcx-pagination > ul.page-numbers > li > span { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); text-decoration: none; color: inherit; font-size: 14px; }
.srcx-pagination .current { border-color: var(--accent); background: var(--accent); color: #f7fffb; }

.srcx-ranking-list { overflow: hidden; border: 1px solid var(--glass-border); border-radius: var(--card-radius); background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); }
.srcx-ranking-list .srcx-app-card { display: flex; align-items: center; border: 0; border-radius: 0; border-bottom: 1px solid var(--line); }
.srcx-ranking-list .srcx-app-card:last-child { border-bottom: 0; }
.srcx-ranking-list .srcx-card-main { flex: 1; align-items: center; }
.srcx-ranking-list .srcx-card-foot { min-width: 250px; margin: 0; padding: 0 0 0 18px; border: 0; }
.srcx-rank { width: 36px; color: var(--faint); font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums; }
.srcx-rank--top { color: var(--accent); font-size: 21px; }

.srcx-detail { width: min(1210px, 100%); margin: 0 auto; padding: 32px 24px 80px; min-width: 0; max-width: 100%; box-sizing: border-box; }
.srcx-detail-hero { position: relative; display: block; padding: 26px 28px; border: 1px solid var(--glass-border); border-radius: 20px; background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(26px) saturate(155%); -webkit-backdrop-filter: blur(26px) saturate(155%); box-sizing: border-box; min-width: 0; max-width: 100%; }
.srcx-detail-hero > * { position: relative; z-index: 1; }
.srcx-detail-title { display: flex; align-items: center; gap: 20px; min-width: 0; flex: 1 1 auto; }
.srcx-detail-title__meta { min-width: 0; flex: 1 1 auto; }
.srcx-detail-title h1 { margin: 0 0 6px; font-size: clamp(24px, 3.5vw, 38px); line-height: 1.18; letter-spacing: -.035em; word-break: break-word; overflow-wrap: anywhere; }
.srcx-detail-title p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; word-break: break-word; overflow-wrap: anywhere; }
.srcx-detail-tabs { position: sticky; top: calc(var(--header-height) + var(--srcx-admin-bar-height)); z-index: 20; display: flex; flex-wrap: nowrap; gap: 24px; margin: 20px 0 0; padding: 0 8px; border-bottom: 1px solid var(--line); background: var(--bg); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
.srcx-detail-tabs::-webkit-scrollbar { display: none; }
.srcx-detail-tabs a { flex-shrink: 0; white-space: nowrap; padding: 14px 4px 12px; border-bottom: 2px solid transparent; color: var(--muted); font-size: 14px; font-weight: 700; }
.srcx-detail-tabs a:hover, .srcx-detail-tabs a:first-child { border-color: var(--accent); color: var(--text); }
.srcx-answer-summary { display: grid; grid-template-columns: minmax(230px, .8fr) minmax(0, 1.7fr); gap: 22px 32px; margin-top: 22px; padding: 24px 26px 18px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); box-shadow: var(--shadow); }
.srcx-answer-summary__intro h2 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.045em; }
.srcx-answer-summary__intro p:last-child { margin: 0; color: var(--muted); line-height: 1.58; }
.srcx-answer-summary__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; }
.srcx-answer-summary__facts > div { min-width: 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); }
.srcx-answer-summary__facts dt { color: var(--faint); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.srcx-answer-summary__facts dd { margin: 5px 0 0; color: var(--text); font-size: 13px; line-height: 1.4; }
.srcx-answer-summary__source { grid-column: 1 / -1; display: flex; align-items: center; gap: 7px; margin: 0; color: var(--faint); font-size: 11px; }
.srcx-answer-summary__source .dashicons { color: var(--accent); font-size: 16px; }
.srcx-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 32px; padding-top: 28px; min-width: 0; max-width: 100%; }
.srcx-detail-grid > div:first-child, .srcx-detail-main { min-width: 0; max-width: 100%; }
.srcx-detail-grid > aside { min-width: 0; max-width: 100%; }
.srcx-gallery, .srcx-prose, .srcx-verdict-panel, .srcx-release-section, .srcx-store-ratings, .srcx-comments, .srcx-recommendations, .srcx-facts {
  scroll-margin-top: calc(var(--header-height) + var(--srcx-admin-bar-height) + 54px);
}
.srcx-prose { color: var(--muted); font-size: 16px; line-height: 1.75; min-width: 0; max-width: 100%; word-break: break-word; overflow-wrap: anywhere; }
.srcx-prose h2, .srcx-comments h2 { margin: 36px 0 14px; color: var(--text); font-size: 24px; letter-spacing: -.03em; word-break: break-word; overflow-wrap: anywhere; }
.srcx-prose h2:first-child { margin-top: 0; }
.srcx-prose a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.srcx-prose img, .srcx-prose video, .srcx-prose iframe { max-width: 100% !important; height: auto; border-radius: 12px; }
.srcx-prose table, .srcx-prose pre { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.srcx-ad-banner { max-width: 100%; overflow: hidden; }
.srcx-ad-banner img, .srcx-ad-banner iframe { max-width: 100% !important; }
/* App Store Style Side-by-Side Screenshot Gallery */
.srcx-gallery { position: relative; width: 100%; max-width: 100%; min-width: 0; margin: 0 0 28px; }
.srcx-gallery__track { display: flex; gap: 14px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 4px 2px 14px; scrollbar-width: thin; scrollbar-color: rgba(148, 163, 184, 0.35) transparent; cursor: grab; }
.srcx-gallery__track.is-dragging { cursor: grabbing; user-select: none; scroll-snap-type: none; }
.srcx-gallery__track::-webkit-scrollbar { height: 6px; }
.srcx-gallery__track::-webkit-scrollbar-track { background: transparent; }
.srcx-gallery__track::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, 0.35); border-radius: 999px; }
.srcx-gallery__track::-webkit-scrollbar-thumb:hover { background: rgba(100, 116, 139, 0.6); }
.srcx-gallery__item { flex: 0 0 auto; scroll-snap-align: start; display: flex; align-items: center; justify-content: center; border-radius: 18px; overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07); transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1); appearance: none; -webkit-appearance: none; padding: 0; margin: 0; cursor: zoom-in; outline: none; }
.srcx-gallery__item:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12); }
.srcx-gallery__item:focus-visible { box-shadow: 0 0 0 3px var(--accent); }
.srcx-gallery__item img { display: block; height: 460px; width: auto; max-width: 85vw; object-fit: contain; border-radius: 17px; background: var(--surface); pointer-events: none; }
.srcx-gallery__nav { position: absolute; top: 50%; transform: translateY(-50%) scale(0.9); z-index: 10; width: 44px; height: 44px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0; border: 1px solid rgba(226, 232, 240, 0.9); background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15), 0 2px 6px rgba(15, 23, 42, 0.08); color: #1e293b; cursor: pointer; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
[data-theme="dark"] .srcx-gallery__nav { border-color: rgba(255, 255, 255, 0.15); background: rgba(30, 41, 59, 0.92); color: #f8fafc; box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45); }
.srcx-gallery__nav.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(-50%) scale(1); }
.srcx-gallery__nav:hover { background: #ffffff; border-color: var(--accent); color: var(--accent); box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22); transform: translateY(-50%) scale(1.08); }
[data-theme="dark"] .srcx-gallery__nav:hover { background: #1e293b; border-color: var(--accent); color: var(--accent); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); }
.srcx-gallery__nav:active { transform: translateY(-50%) scale(0.96); }
.srcx-gallery__nav--prev { left: 14px; }
.srcx-gallery__nav--next { right: 14px; }
.srcx-gallery__nav .dashicons { font-size: 22px; width: 22px; height: 22px; line-height: 22px; }
.srcx-screenshot { display: none; }
.srcx-screenshot-grid { display: none; }

/* Verdict Panel (AppRnk Editorial Review) */
.srcx-verdict-panel { background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05)); border: 1px solid rgba(99, 102, 241, 0.15); border-radius: 16px; padding: 24px; margin: 24px 0; }
.srcx-verdict-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.srcx-verdict-sparkle { font-size: 20px; color: #8b5cf6; }
.srcx-verdict-title { margin: 0; font-size: 18px; font-weight: 700; background: linear-gradient(120deg, #6366f1, #ec4899); -webkit-background-clip: text; color: transparent; display: inline-block; }
.srcx-verdict-lead { font-size: 15px; line-height: 1.6; color: var(--text); font-weight: 500; margin: 0 0 18px; }
.srcx-verdict-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 16px; }
.srcx-verdict-card { background: var(--surface); border-radius: 12px; padding: 14px; border: 1px solid rgba(34, 197, 94, 0.2); }
.srcx-verdict-card--cons { border-color: rgba(239, 68, 68, 0.2); }
.srcx-verdict-badge { font-weight: 700; font-size: 13px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.srcx-verdict-badge--pros { color: #16a34a; }
.srcx-verdict-badge--cons { color: #dc2626; }
.srcx-verdict-card ul { margin: 0; padding-left: 18px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.srcx-verdict-audience { font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; align-items: center; gap: 6px; background: var(--surface-2); padding: 8px 12px; border-radius: 8px; line-height: 1.45; }
.srcx-verdict-audience strong { color: var(--text); }

/* Screenshot Lightbox / Zoom Modal */
.srcx-lightbox { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 24px; }
.srcx-lightbox[hidden] { display: none !important; }
.srcx-lightbox__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); animation: srcx-fade-in 0.2s ease-out; cursor: zoom-out; }
.srcx-lightbox__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 92vw; max-height: 92vh; animation: srcx-scale-up 0.22s cubic-bezier(0.16, 1, 0.3, 1); }
.srcx-lightbox__img { max-width: 90vw; max-height: calc(90vh - 48px); width: auto; height: auto; object-fit: contain; border-radius: 16px; box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.12); }
.srcx-lightbox__counter { margin-top: 12px; padding: 4px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.16); color: #f8fafc; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; backdrop-filter: blur(8px); }
.srcx-lightbox__close { position: absolute; top: 20px; right: 20px; z-index: 3; display: grid; place-items: center; width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(255, 255, 255, 0.15); color: #ffffff; cursor: pointer; transition: background 0.15s ease, transform 0.15s ease; outline: none; }
.srcx-lightbox__close:hover { background: rgba(255, 255, 255, 0.28); transform: scale(1.08); }
.srcx-lightbox__close .dashicons { font-size: 24px; width: 24px; height: 24px; line-height: 24px; }
.srcx-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; display: grid; place-items: center; width: 48px; height: 48px; border: none; border-radius: 50%; background: rgba(255, 255, 255, 0.15); color: #ffffff; cursor: pointer; transition: background 0.15s ease, transform 0.15s ease; outline: none; }
.srcx-lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); transform: translateY(-50%) scale(1.08); }
.srcx-lightbox__nav--prev { left: 20px; }
.srcx-lightbox__nav--next { right: 20px; }
.srcx-lightbox__nav .dashicons { font-size: 26px; width: 26px; height: 26px; line-height: 26px; }
@media (max-width: 640px) {
  .srcx-lightbox { padding: 12px; }
  .srcx-lightbox__nav { width: 40px; height: 40px; }
  .srcx-lightbox__nav--prev { left: 8px; }
  .srcx-lightbox__nav--next { right: 8px; }
  .srcx-lightbox__close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .srcx-lightbox__img { max-height: calc(85vh - 44px); }
}
@keyframes srcx-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes srcx-scale-up { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }


.srcx-facts { position: relative; padding: 20px; border: 1px solid var(--glass-border); border-radius: var(--card-radius); background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); }
.srcx-facts > * { position: relative; z-index: 1; }
.srcx-facts h2 { margin: 0 0 13px; font-size: 18px; }
.srcx-fact { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px; padding: 10px 0; font-size: 13px; }
.srcx-fact + .srcx-fact { border-top: 1px solid var(--line); }
.srcx-fact span { color: var(--faint); }
.srcx-fact strong { overflow-wrap: anywhere; }
.srcx-fact--platforms { align-items: start; }
.srcx-fact__platform-links { min-width: 0; }
.srcx-fact__platform-links .srcx-platforms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.srcx-fact__platform-links .srcx-platform { min-width: 0; justify-content: center; }
.srcx-fact--listing { align-items: center; }
.srcx-claim-status { display: inline-flex; align-items: center; justify-content: flex-end; gap: 6px; min-width: 0; text-align: right; font-size: 12px; font-weight: 750; }
.srcx-claim-status--link { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.srcx-claim-status--verified { color: var(--accent-strong); }
.srcx-claim-status--verified .dashicons { width: 17px; height: 17px; font-size: 17px; }
.srcx-claim-status--pending { color: var(--faint); }
.srcx-facts__site-link { width: 100%; margin-top: 16px; }
.srcx-external-reviews { display: grid; gap: 12px; margin-top: 16px; }
.srcx-external-review { padding: 17px; border-radius: 12px; background: var(--surface-2); }
.srcx-external-review__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; vertical-align: middle; margin-right: 7px; }
.srcx-external-review blockquote { margin: 7px 0; color: var(--muted); }
.srcx-external-review small { color: var(--faint); }
.srcx-review-pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 18px 0 8px; color: var(--muted); font-size: 13px; }
.srcx-review-pagination a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); color: var(--text); font-size: 22px; line-height: 1; text-decoration: none; }
.srcx-review-pagination a:hover, .srcx-review-pagination a:focus-visible { border-color: var(--accent); color: var(--accent); }
.srcx-review-source { display: block; margin-top: 10px; text-align: right; }
.srcx-release-section, .srcx-store-ratings { margin-top: 36px; }
.srcx-release-list { display: grid; gap: 0; margin-top: 16px; }
.srcx-release-item { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 12px; position: relative; padding-bottom: 22px; }
.srcx-release-item:not(:last-child)::before { content: ""; position: absolute; left: 15px; top: 31px; bottom: 0; width: 2px; background: var(--line); }
.srcx-release-item__marker { position: relative; z-index: 1; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); border-radius: 999px; background: var(--accent-soft); color: var(--accent); }
.srcx-release-item__body { padding: 2px 0 0; }
.srcx-release-item__body h3 { margin: 0 0 6px; font-size: 17px; }
.srcx-release-item__body p { margin: 0 0 8px; color: var(--muted); white-space: pre-line; }
.srcx-release-item__body small { color: var(--faint); }
.srcx-release-item__body a { color: var(--accent-strong); }
.srcx-muted { color: var(--faint) !important; }
.srcx-store-rating-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.srcx-store-rating { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 12px; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-2); }
.srcx-store-rating > div { min-width: 0; }
.srcx-store-rating strong, .srcx-store-rating small, .srcx-store-rating span { display: block; }
.srcx-store-rating strong { font-size: 16px; }
.srcx-store-rating div small, .srcx-store-rating > small { color: var(--faint); font-size: 12px; }
.srcx-store-rating b { color: var(--warning); font-size: 18px; white-space: nowrap; }
.srcx-store-rating > span { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }
.srcx-store-rating > small { grid-column: 1 / -1; }
.srcx-score-card { display: grid; grid-template-columns: minmax(170px, .7fr) minmax(0, 1.3fr); gap: 18px; align-items: center; margin-top: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-2); }
.srcx-score-card__total { display: grid; gap: 4px; }
.srcx-score-card__total strong { color: var(--accent-strong); font-size: 34px; letter-spacing: -.04em; }
.srcx-score-card__total span { color: var(--muted); font-size: 13px; }
.srcx-score-card__note { display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 12px 14px; border-left: 2px solid var(--accent); background: color-mix(in srgb, var(--accent-soft) 72%, transparent); color: var(--muted); font-size: 13px; }
.srcx-score-card__note .dashicons { color: var(--accent); }
.srcx-score-card__platforms { display: grid; gap: 9px; }
.srcx-score-card__platforms span { display: flex; align-items: baseline; gap: 8px; color: var(--muted); font-size: 14px; }
.srcx-score-card__platforms b { min-width: 66px; color: var(--text); }
.srcx-score-card__platforms small { color: var(--faint); }
.srcx-score-reviews { margin-top: 28px; }
.srcx-score-reviews h3 { margin: 0 0 12px; font-size: 20px; }
.srcx-store-ratings .srcx-score-card__platforms, .srcx-store-ratings .srcx-score-reviews, .srcx-store-ratings > .srcx-muted { display: none; }
.srcx-insight-panel { margin-top: 28px; padding: 22px; border: 1px solid var(--glass-border); border-radius: var(--card-radius); background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); }
.srcx-insight-panel h2 { margin: 0 0 15px; font-size: 22px; }
.srcx-insight-panel p { color: var(--muted); }
.srcx-insight-panel small { color: var(--faint); }
.srcx-highlight-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.srcx-highlight-grid div { display: flex; align-items: flex-start; gap: 9px; padding: 12px; border-radius: 11px; background: color-mix(in srgb, var(--accent-soft) 62%, transparent); }
.srcx-highlight-grid .dashicons { color: var(--accent); }

.srcx-comments { margin-top: 48px; padding-top: 12px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.srcx-review-item { margin-bottom: 12px; padding: 19px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); }
.srcx-review-item > article > header { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; }
.srcx-review-item > article > header img { border-radius: 999px; }
.srcx-review-item > article > header time { color: var(--faint); font-size: 12px; }
.srcx-review-item > article > div { margin: 12px 0; color: var(--muted); }
.srcx-review-item > article > div p { margin: 0; }
.srcx-review-item > article > footer { display: flex; gap: 12px; font-size: 13px; font-weight: 700; }
.srcx-review-item .children { margin-top: 14px; padding-left: 24px; list-style: none; }
.comment-list .comment-body { margin-bottom: 12px; padding: 19px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author .avatar { border-radius: 999px; }
.comment-metadata { margin: 4px 0 12px 42px; color: var(--faint); font-size: 12px; }
.comment-content { color: var(--muted); }
.comment-content p { margin-bottom: 0; }
.srcx-review-stars { color: var(--warning); letter-spacing: 1px; }
.comment-respond { margin-top: 22px; padding: 24px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); }
.comment-reply-title { margin: 0 0 16px; font-size: 22px; }
.comment-form { display: grid; gap: 15px; }
.comment-form p { margin: 0; }
.comment-form label, .srcx-form label { display: block; margin-bottom: 7px; color: var(--text); font-size: 13px; font-weight: 700; }
.comment-form textarea, .comment-form input:not([type="submit"]), .srcx-form input, .srcx-form textarea, .srcx-form select { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--control-radius); outline: 0; background: var(--bg); color: var(--text); }
.comment-form textarea:focus, .comment-form input:focus, .srcx-form input:focus, .srcx-form textarea:focus, .srcx-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.comment-form .submit { min-height: 40px; padding: 0 17px; border: 1px solid var(--accent); border-radius: 999px; background: var(--accent); color: #f7fffb; font-weight: 720; cursor: pointer; }
.srcx-rating-field { margin: 0; padding: 0; border: 0; }
.srcx-rating-field legend { margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.srcx-star-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; }
.srcx-star-input input { position: absolute; width: 1px !important; height: 1px; margin: 0; opacity: 0; pointer-events: none; }
.srcx-star-input label { margin: 0; color: var(--surface-3); font-size: 30px; cursor: pointer; }
.srcx-star-input label:hover, .srcx-star-input label:hover ~ label, .srcx-star-input input:checked ~ label { color: var(--warning); }

.srcx-form { position: relative; max-width: 780px; padding: 28px; border: 1px solid var(--glass-border); border-radius: 20px; background: var(--glass); box-shadow: var(--glass-shadow); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%); }
.srcx-form > * { position: relative; z-index: 1; }
.srcx-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.srcx-form__full { grid-column: 1 / -1; }
.srcx-form__group { padding-top: 6px; border-top: 1px solid var(--line); }
.srcx-form__group h2 { margin: 0; font-size: 18px; }
.srcx-form__group p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.srcx-form small { display: block; margin-top: 6px; color: var(--faint); }
.srcx-form__actions { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.srcx-eyebrow { margin: 0 0 9px; color: var(--accent-strong); font-size: 11px; font-weight: 800; letter-spacing: .11em; line-height: 1.2; text-transform: uppercase; }
.srcx-claim-page .srcx-page-head, .srcx-auth-page .srcx-page-head { max-width: 760px; }
.srcx-claim-layout { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: 22px; align-items: start; }
.srcx-claim-app-card { position: relative; min-height: 100%; padding: 26px; overflow: hidden; border: 1px solid var(--glass-border); border-radius: var(--card-radius); background: linear-gradient(150deg, color-mix(in srgb, var(--accent-soft) 84%, var(--glass)), var(--glass)); box-shadow: var(--glass-shadow); }
.srcx-claim-app-card::after { content: ""; position: absolute; width: 210px; height: 210px; right: -80px; top: -90px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 12%, transparent); pointer-events: none; }
.srcx-claim-app-card > * { position: relative; z-index: 1; }
.srcx-claim-app-card .srcx-app-logo { width: 86px; height: 86px; margin: 28px 0 18px; border-radius: 22px; }
.srcx-claim-app-card h2 { margin: 0 0 5px; font-size: 28px; line-height: 1.08; letter-spacing: -.045em; }
.srcx-claim-app-card > p:last-of-type { margin: 0; color: var(--muted); }
.srcx-claim-benefits { display: grid; gap: 10px; margin-top: 30px; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line)); }
.srcx-claim-benefits strong { margin-bottom: 3px; font-size: 14px; }
.srcx-claim-benefits span { display: flex; gap: 9px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.srcx-claim-benefits span::before { content: ""; flex: 0 0 auto; width: 16px; height: 16px; margin-top: 1px; border-radius: 50%; background: var(--accent); box-shadow: inset 0 0 0 4px var(--accent-soft); }
.srcx-claim-form-card { max-width: none; }
.srcx-claim-form-card > h2, .srcx-auth-card h2 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.srcx-claim-form-card > p { margin: 7px 0 23px; }
.srcx-captcha { display: grid; grid-template-columns: minmax(0, 1fr) 140px; align-items: end; column-gap: 16px; }
.srcx-captcha label { grid-column: 1 / -1; }
.srcx-captcha input[type="hidden"] { display: none; }
.srcx-payment-card { max-width: 680px; padding: 34px; }
.srcx-payment-card h2 { margin: 16px 0 9px; font-size: clamp(26px, 3vw, 36px); letter-spacing: -.05em; }
.srcx-payment-card > p { margin: 0 0 17px; color: var(--muted); }
.srcx-payment-card form { margin-top: 22px; }
.srcx-payment-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line)); border-radius: 16px; background: var(--accent-soft); color: var(--accent); }
.srcx-payment-icon .dashicons { width: 25px; height: 25px; font-size: 25px; }
.srcx-payment-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 22px 0 0; padding: 15px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); }
.srcx-payment-summary span { color: var(--muted); font-size: 13px; }
.srcx-payment-summary strong { color: var(--text); font-size: 21px; letter-spacing: -.03em; }
.srcx-payment-footnote { margin: 20px 0 0 !important; color: var(--faint) !important; font-size: 12px; }
.srcx-manage-page { padding-top: 38px; }
.srcx-manage-head { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; margin-bottom: 28px; }
.srcx-manage-head h1 { margin: 0 0 5px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.055em; line-height: 1.02; }
.srcx-manage-head p:last-child { margin: 0; color: var(--muted); }
.srcx-manage-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: start; }
.srcx-manage-grid > .srcx-form { max-width: none; }
.srcx-aso-panel { max-width: none; margin-top: 24px; }
.srcx-aso-panel .srcx-section-head { align-items: flex-start; }
.srcx-aso-panel .srcx-section-head > div { min-width: 0; }
.srcx-aso-panel .srcx-section-head h2 { margin-bottom: 5px; }
.srcx-aso-languages { display: flex; flex-wrap: wrap; gap: 6px; margin: -4px 0 18px; }
.srcx-aso-languages a { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 700; }
.srcx-aso-languages a:hover, .srcx-aso-languages a.is-active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-strong); }
.srcx-aso-warning, .srcx-aso-keyword-status { margin: 0 0 12px; color: var(--warning); font-size: 12px; }
.srcx-aso-keyword-status { color: var(--muted); }
.srcx-aso-score { flex: 0 0 auto; padding: 9px 13px; border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line)); border-radius: 999px; background: var(--accent-soft); color: var(--accent-strong); font-size: 16px; }
.srcx-aso-report { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.srcx-aso-report h3 { margin: 0 0 12px; font-size: 17px; }
.srcx-aso-report__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.srcx-aso-report__grid > div { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); }
.srcx-aso-report__grid strong { font-size: 13px; }
.srcx-aso-report__grid span { color: var(--muted); font-size: 11px; }
.srcx-aso-report__grid small, .srcx-aso-guidance { color: var(--muted); font-size: 11px; line-height: 1.55; }
.srcx-aso-report__grid [data-status="needs_work"] { border-color: color-mix(in srgb, #c94b4b 45%, var(--line)); }
.srcx-aso-report__grid [data-status="polish"] { border-color: color-mix(in srgb, #b5792b 45%, var(--line)); }
.srcx-manage-side { display: grid; gap: 16px; }
.srcx-manage-side .srcx-account-panel { box-shadow: 0 10px 30px rgba(45, 60, 95, .06); }
.srcx-manage-side .srcx-account-panel h2 { margin-bottom: 8px; font-size: 19px; letter-spacing: -.025em; }
.srcx-manage-side .srcx-account-panel p { color: var(--muted); font-size: 13px; }
.srcx-manage-review { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--line); }
.srcx-manage-review > strong { display: block; font-size: 13px; }
.srcx-manage-review > p { margin: 4px 0 10px; color: var(--muted); font-size: 13px; }
.srcx-review-reply-form { display: grid; gap: 8px; }
.srcx-review-reply-form textarea { width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: 9px; outline: 0; background: var(--bg); color: var(--text); resize: vertical; font-size: 13px; }
.srcx-review-reply-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.srcx-review-reply-form > div { display: flex; flex-wrap: wrap; gap: 7px; }
.srcx-auth-page { max-width: 920px; }
.srcx-auth-card { max-width: 620px; }
.srcx-auth-card__brand { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.srcx-auth-form { display: grid; gap: 14px; }
.srcx-auth-options { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 2px; color: var(--muted); font-size: 13px; }
.srcx-auth-options label { display: inline-flex; align-items: center; gap: 7px; margin: 0; font-weight: 600; }
.srcx-auth-options input[type="checkbox"] { width: auto; min-height: 0; margin: 0; accent-color: var(--accent); }
.srcx-auth-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0 16px; color: var(--faint); font-size: 12px; }
.srcx-auth-divider::before, .srcx-auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.srcx-google-auth { display: grid; justify-items: center; gap: 4px; }
.srcx-google-auth > div { width: min(100%, 420px); min-height: 44px; }
.srcx-google-auth__form { display: none; }
.srcx-auth-footnote { margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.srcx-review-auth-cta { display: flex; align-items: flex-start; gap: 14px; margin-top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-2); }
.srcx-review-auth-cta > .dashicons { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent); font-size: 22px; }
.srcx-review-auth-cta h3 { margin: 0 0 5px; font-size: 17px; }
.srcx-review-auth-cta p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.srcx-review-auth-cta > div > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.srcx-brand--large { font-size: 25px; }
.srcx-brand--large .srcx-brand__logo { width: auto; height: 42px; border-radius: 0; }
.srcx-claim-history { margin-top: 36px; }
.srcx-claim-history__list { display: grid; gap: 10px; }
.srcx-claim-history__list article { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.srcx-claim-history__list article strong, .srcx-claim-history__list article span { display: block; }
.srcx-claim-history__list article strong { font-size: 14px; }
.srcx-claim-history__list article span { margin-top: 2px; color: var(--faint); font-size: 12px; }
.srcx-claim-history__list .srcx-muted { text-align: right; }
.srcx-claim-timeline { display: grid; gap: 12px; margin: 22px 0; padding: 0; list-style: none; }
.srcx-claim-timeline li { position: relative; display: grid; grid-template-columns: 14px minmax(0, 1fr); gap: 10px; align-items: start; }
.srcx-claim-timeline li:not(:last-child)::after { content: ""; position: absolute; left: 6px; top: 15px; bottom: -14px; width: 1px; background: var(--line); }
.srcx-claim-timeline__dot { position: relative; z-index: 1; display: block; width: 13px; height: 13px; margin-top: 3px; border: 3px solid var(--surface); border-radius: 50%; background: var(--line-strong, var(--line)); box-shadow: 0 0 0 1px var(--line); }
.srcx-claim-timeline li.is-current .srcx-claim-timeline__dot { background: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.srcx-claim-timeline strong { display: block; font-size: 13px; color: var(--text); }
.srcx-claim-timeline p { margin: 3px 0; color: var(--muted); font-size: 12px; }
.srcx-claim-timeline time { color: var(--faint); font-size: 11px; }
.srcx-claim-timeline--compact { gap: 4px; margin: 7px 0 0; }
.srcx-claim-timeline--compact li { grid-template-columns: 1fr auto; gap: 8px; }
.srcx-claim-timeline--compact li::after, .srcx-claim-timeline--compact .srcx-claim-timeline__dot { display: none; }
.srcx-claim-timeline--compact strong { font-size: 11px; font-weight: 650; }
.srcx-claim-timeline--compact time { font-size: 10px; }
.srcx-notice { margin-bottom: 20px; padding: 13px 15px; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); border-radius: 12px; background: var(--accent-soft); color: var(--accent-strong); }
.srcx-notice--error { border-color: color-mix(in srgb, #c44747 42%, var(--line)); background: color-mix(in srgb, #f7dede 72%, var(--surface)); color: #a22e2e; }
.srcx-claim-form { display: grid; gap: 10px; margin-top: 16px; }
.srcx-claim-form label { display: block; margin-bottom: 0; color: var(--text); font-size: 13px; font-weight: 700; }
.srcx-claim-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--control-radius); outline: 0; background: var(--bg); color: var(--text); resize: vertical; }
.srcx-claim-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.srcx-claim-form .srcx-button { justify-self: start; }
.srcx-empty { min-height: 340px; display: grid; place-items: center; padding: 48px; border: 1px dashed var(--line); border-radius: var(--card-radius); text-align: center; }
.srcx-empty h2 { margin: 12px 0 6px; }
.srcx-empty p { max-width: 440px; margin: 0 auto 18px; color: var(--muted); }
.srcx-empty .dashicons { width: 46px; height: 46px; color: var(--accent); font-size: 46px; }

.srcx-developer-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; }
.srcx-account-panel, .srcx-dev-panel { padding: 24px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); }
.srcx-account-panel h2, .srcx-dev-panel h2 { margin-top: 0; }
.srcx-mini-list { display: grid; gap: 10px; }
.srcx-mini-app { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; background: var(--surface-2); }
.srcx-mini-app strong, .srcx-mini-app span { display: block; }
.srcx-mini-app span { color: var(--faint); font-size: 12px; }

.srcx-library-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.srcx-library-actions form { margin: 0; }
.srcx-library-actions .srcx-button.is-active { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); background: var(--accent-soft); color: var(--accent-strong); }
.srcx-card-actions { display: flex; align-items: center; gap: 6px; }
.srcx-icon-action { width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--muted); cursor: pointer; }
.srcx-icon-action:hover, .srcx-icon-action.is-active { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); background: var(--accent-soft); color: var(--accent-strong); }
.srcx-icon-action .dashicons { width: 17px; height: 17px; font-size: 17px; }
.srcx-compare-tray { position: fixed; left: 50%; bottom: 22px; z-index: 45; width: min(760px, calc(100% - 32px)); display: grid; grid-template-columns: minmax(130px, .75fr) minmax(0, 1.25fr) auto auto; align-items: center; gap: 12px; padding: 12px 14px 12px 18px; border: 1px solid var(--glass-border); border-radius: 16px; background: var(--glass-strong, var(--surface)); box-shadow: 0 18px 54px rgba(35, 51, 78, .18); backdrop-filter: blur(22px) saturate(150%); transform: translateX(-50%); }
.srcx-compare-tray[hidden] { display: none; }
.srcx-compare-tray > div:first-child strong, .srcx-compare-tray > div:first-child span { display: block; }
.srcx-compare-tray > div:first-child span { margin-top: 2px; color: var(--faint); font-size: 11px; }
.srcx-compare-tray [data-compare-items] { display: flex; min-width: 0; gap: 6px; overflow: hidden; }
.srcx-compare-tray [data-compare-items] span { min-width: 0; padding: 6px 9px; overflow: hidden; border-radius: 8px; background: var(--surface-2); color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.srcx-scene-filter { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 24px; }
.srcx-scene-filter a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 12px; font-weight: 700; }
.srcx-scene-filter a:hover, .srcx-scene-filter a.is-active { border-color: color-mix(in srgb, var(--accent) 34%, var(--line)); background: var(--accent-soft); color: var(--accent-strong); }
.srcx-recommendations, .srcx-library, .srcx-analytics { margin-top: 34px; }
.srcx-recommendation-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.srcx-recommendation-grid article { min-width: 0; }
.srcx-recommendation-grid article > a { height: 100%; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease; text-decoration: none; }
.srcx-recommendation-grid article > a:hover { border-color: color-mix(in srgb, var(--accent) 34%, var(--line)); background: var(--accent-soft); transform: translateY(-1px); }
.srcx-recommendation-info { display: block; min-width: 0; flex: 1; }
.srcx-recommendation-info strong, .srcx-recommendation-grid article strong { display: block; min-width: 0; font-size: 15px; font-weight: 700; color: var(--fg); line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srcx-recommendation-info small, .srcx-recommendation-grid article small { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.srcx-recommendation-grid article span span { margin-top: 4px; color: var(--faint); font-size: 11px; line-height: 1.35; }

.srcx-library-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.srcx-library-grid > div { padding: 20px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); }
.srcx-library-grid h3 { margin: 0 0 14px; font-size: 17px; }
.srcx-analytics-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--card-radius); overflow: hidden; background: var(--surface); }
.srcx-analytics-grid > div { min-width: 0; padding: 18px; border-right: 1px solid var(--line); }
.srcx-analytics-grid > div:last-child { border-right: 0; }
.srcx-analytics-grid strong, .srcx-analytics-grid span { display: block; }
.srcx-analytics-grid strong { font-size: clamp(22px, 3vw, 32px); line-height: 1; letter-spacing: -.045em; }
.srcx-analytics-grid span { margin-top: 7px; color: var(--muted); font-size: 11px; }
.srcx-analytics-trend { min-height: 132px; display: flex; align-items: flex-end; gap: 5px; margin-top: 16px; padding: 14px 14px 10px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); overflow-x: auto; }
.srcx-analytics-trend > p { width: 100%; margin: 0; text-align: center; }
.srcx-analytics-day { flex: 0 0 22px; height: 104px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 5px; color: var(--faint); font-size: 9px; }
.srcx-analytics-day span { width: 100%; min-height: 8px; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 46%, var(--accent-soft))); box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 20%, transparent); }
.srcx-analytics-day small { font-size: 9px; white-space: nowrap; }
.srcx-manage-review.is-hidden { border: 1px dashed var(--line); border-radius: 11px; padding: 13px; background: var(--surface-2); opacity: .82; }
.srcx-compare-page { overflow-x: auto; }
.srcx-compare-grid { --compare-count: 2; min-width: calc(170px + (var(--compare-count) * 220px)); display: grid; grid-template-columns: 170px repeat(var(--compare-count), minmax(220px, 1fr)); border: 1px solid var(--line); border-radius: var(--card-radius); overflow: hidden; background: var(--surface); }
.srcx-compare-grid > * { min-width: 0; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.srcx-compare-grid > :nth-child(calc(var(--compare-count) + 1n)) { border-right: 0; }
.srcx-compare-grid > :nth-last-child(-n + calc(var(--compare-count) + 1)) { border-bottom: 0; }
.srcx-compare-grid__label { background: var(--surface-2); color: var(--muted); font-size: 12px; }
.srcx-compare-head { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 11px; }
.srcx-compare-head h2 { margin: 0; font-size: 17px; }
.srcx-compare-head p { margin: 3px 0 0; color: var(--faint); font-size: 11px; }
.srcx-compare-head > .srcx-text-link { grid-column: 1 / -1; justify-self: start; font-size: 11px; }
.srcx-compare-value { color: var(--text); font-size: 13px; line-height: 1.45; }
.srcx-compare-value--copy { color: var(--muted); }
.srcx-compare-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.srcx-compare-head-hero { margin-bottom: 24px; }
.srcx-compare-head-hero h1 { font-size: 26px; line-height: 1.25; margin: 0 0 8px; }
.srcx-compare-head-hero p { margin: 0; color: var(--muted); font-size: 14px; max-width: 680px; }

/* AI Comparison Verdict */
.srcx-compare-ai-verdict { background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(236, 72, 153, 0.04)); border: 1px solid rgba(99, 102, 241, 0.16); border-radius: var(--card-radius); padding: 24px; margin: 32px 0 20px; }
.srcx-compare-ai-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.srcx-compare-ai-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; background: linear-gradient(120deg, #6366f1, #ec4899); -webkit-background-clip: text; color: transparent; }
.srcx-compare-ai-badge .srcx-sparkle { color: #8b5cf6; font-size: 18px; -webkit-text-fill-color: #8b5cf6; }
.srcx-compare-ai-lead { font-size: 14.5px; line-height: 1.65; color: var(--text); margin: 0 0 18px; }
.srcx-compare-choose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
.srcx-compare-choose-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.srcx-compare-choose-card h3 { margin: 0 0 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.srcx-compare-choose-card ul { margin: 0; padding-left: 18px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.srcx-compare-choose-card li { margin-bottom: 6px; }
.srcx-compare-choose-card li:last-child { margin-bottom: 0; }
.srcx-compare-ai-takeaway { background: var(--surface-2); border-radius: 10px; padding: 12px 16px; font-size: 13.5px; line-height: 1.5; color: var(--text); margin-bottom: 12px; }
.srcx-compare-ai-takeaway strong { color: var(--accent); margin-right: 6px; }
.srcx-compare-ai-disclaimer { font-size: 11.5px; color: var(--faint); line-height: 1.4; }

/* Popular comparisons on compare page & category pages */
.srcx-compare-more, .srcx-category-comparisons { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.srcx-compare-more-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 18px; }
.srcx-compare-more-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); text-decoration: none; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.srcx-compare-more-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 6px 18px rgba(0, 0, 0, .05); }
.srcx-compare-more-logos { display: flex; align-items: center; position: relative; flex-shrink: 0; }
.srcx-compare-more-logos img, .srcx-compare-more-logos .srcx-app-logo { width: 36px; height: 36px; border-radius: 9px; }
.srcx-compare-more-logos > :nth-child(3) { margin-left: -10px; box-shadow: 0 0 0 2px var(--surface); }
.srcx-compare-vs-badge { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 8px; font-weight: 700; z-index: 2; margin: 0 -4px; box-shadow: 0 0 0 2px var(--surface); flex-shrink: 0; }
.srcx-compare-more-title { display: flex; flex-direction: column; min-width: 0; }
.srcx-compare-more-title strong { font-size: 13px; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.srcx-compare-more-title small { font-size: 11px; color: var(--faint); margin-top: 2px; }

/* Comparison Hub on default compare page */
.srcx-compare-hub { max-width: 100%; margin: 0 auto; }
.srcx-compare-hub-intro { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.srcx-compare-hub-intro h2 { font-size: 26px; line-height: 1.25; margin: 12px 0 10px; color: var(--text); }
.srcx-compare-hub-intro p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.srcx-compare-hub-cta { text-align: center; margin-top: 40px; padding: 24px; background: var(--surface-2); border-radius: 14px; }
.srcx-compare-hub-cta p { margin: 0 0 14px; font-size: 14px; color: var(--muted); }

/* Popular comparisons module on single app page */
.srcx-comparisons-module { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.srcx-compare-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-top: 16px; }
.srcx-compare-link-card { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--surface); text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.srcx-compare-link-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 6px 16px rgba(0, 0, 0, .05); }
.srcx-compare-link-card__apps { display: flex; align-items: center; gap: 8px; min-width: 0; }
.srcx-compare-link-card__app { display: flex; align-items: center; gap: 7px; min-width: 0; }
.srcx-compare-link-card__app span { font-size: 13px; font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 90px; }
.srcx-compare-link-card__vs { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; padding: 2px 6px; border-radius: 6px; background: var(--surface-2); flex-shrink: 0; }
.srcx-compare-link-card__meta { display: flex; align-items: center; gap: 4px; color: var(--accent); font-size: 12px; font-weight: 500; flex-shrink: 0; }

.srcx-footer { position: relative; z-index: 1; border-top: 1px solid var(--line); background: var(--surface); }
.srcx-footer__inner { width: min(1420px, 100%); margin: 0 auto; padding: 44px 28px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
.srcx-footer p { max-width: 420px; color: var(--muted); font-size: 13px; }
.srcx-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: var(--muted); font-size: 13px; }
.srcx-footer nav a:hover { color: var(--accent); }
.srcx-footer nav li { list-style: none; display: contents; }
.srcx-legal__intro { font-size: 18px; }
.srcx-footer__legal { grid-column: 1 / -1; margin: 16px 0 0; }

@keyframes srcx-enter { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
  .srcx-carousel { animation: srcx-enter .65s cubic-bezier(.16, 1, .3, 1) both; }
  .srcx-feature-card { animation: srcx-enter .55s cubic-bezier(.16, 1, .3, 1) both; animation-delay: calc(var(--srcx-index, 0) * 70ms); }
}

@media (max-width: 1180px) {
  .srcx-header__inner { grid-template-columns: auto 1fr auto; gap: 18px; }
  .srcx-primary-nav { display: none; }
  .srcx-shell { grid-template-columns: 1fr; }
  .srcx-sidebar { display: none; }
  .srcx-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .srcx-feature-card:nth-child(n+4) { min-height: 320px; }
}

@media (max-width: 820px) {
  :root { --header-height: 62px; }
  .srcx-header__inner { padding: 0 16px; grid-template-columns: auto 1fr auto; }
  .srcx-header-search { justify-self: end; width: 40px; padding: 0 9px; border-color: transparent; background: transparent; }
  .srcx-header-search input { display: none; }
  .srcx-header-search.is-open { width: min(72vw, 320px); padding: 0 12px; border-color: #d9e1ec; background: #ffffff; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08); }
  .srcx-header-search.is-open input { display: block; }
  .srcx-header-search .srcx-search-panel { left: auto; right: 0; width: min(86vw, 340px); }
  .srcx-header__inner.is-searching { grid-template-columns: minmax(0, 1fr) auto; }
  .srcx-header__inner.is-searching > a:first-child { display: none; }
  .srcx-header-actions > .srcx-icon-button, .srcx-submit-button, .srcx-account-button { display: none; }
  .srcx-mobile-menu { display: grid; }
  .srcx-mobile-drawer { position: fixed; inset: calc(var(--header-height) + var(--srcx-admin-bar-height)) 0 auto; z-index: 39; padding: 14px 16px 20px; border-bottom: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
  .srcx-mobile-drawer:not([hidden]) { display: grid; }
  .srcx-mobile-drawer a { padding: 12px; border-radius: 10px; font-weight: 700; }
  .srcx-mobile-drawer a:hover { background: var(--surface-2); }
  .srcx-mobile-drawer__submit { display: flex; align-items: center; gap: 9px; margin-top: 4px; padding-top: 16px !important; border-top: 1px solid var(--line); color: var(--accent-strong); }
  .srcx-mobile-drawer__submit .dashicons { width: 20px; }
  .srcx-mobile-drawer__language { display: grid; gap: 7px; margin-top: 4px; padding: 12px 12px 0; border-top: 1px solid var(--line); }
  .srcx-mobile-drawer__language > span { color: var(--faint); font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
  .srcx-mobile-drawer__language > div { display: flex; flex-wrap: wrap; gap: 6px; }
  .srcx-mobile-drawer__language a { padding: 8px 10px; background: var(--surface-2); font-size: 13px; }
  .srcx-mobile-drawer__language a.is-current { color: var(--accent-strong); background: var(--accent-soft); }
  .srcx-shell, .srcx-page { padding: 14px 16px 56px; max-width: 100vw; box-sizing: border-box; }
  .srcx-shell .srcx-detail { padding: 0 0 36px; width: 100%; max-width: 100%; box-sizing: border-box; }
  .srcx-carousel__viewport { height: auto; min-height: 480px; }
  .srcx-carousel-slide__body { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .srcx-carousel-slide__stage { height: 250px; }
  .srcx-showcase-phone-cluster { height: 240px; }
  .srcx-showcase-phone--front { width: 132px; height: 235px; transform: none; }
  .srcx-showcase-phone--back { display: none; }
  .srcx-showcase-mac { max-width: 360px; transform: none; }
  .srcx-editor-bar { grid-template-columns: 1fr auto; }
  .srcx-category-strip { grid-column: 1 / -1; grid-row: 2; }
  .srcx-featured-grid, .srcx-list, .srcx-content-grid, .srcx-developer-grid { grid-template-columns: 1fr; }
  .srcx-detail-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; padding-top: 16px; }
  .srcx-detail-grid > aside { order: -1; }
  .srcx-store-rating-grid, .srcx-score-card { grid-template-columns: 1fr; }
  .srcx-highlight-grid { grid-template-columns: 1fr; }
  .srcx-feature-card:first-child { grid-row: auto; min-height: 320px; }
  .srcx-feature-card:first-child h3 { font-size: 25px; }
  .srcx-chart { order: -1; }
  .srcx-detail-hero { padding: 16px 14px; border-radius: 16px; }
  .srcx-detail-title { align-items: flex-start; gap: 14px; }
  .srcx-detail-title .srcx-app-logo--lg { width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; }
  .srcx-detail-title h1 { font-size: clamp(19px, 4.8vw, 24px); line-height: 1.22; letter-spacing: -.025em; word-break: break-word; overflow-wrap: anywhere; }
  .srcx-detail-title p { font-size: 13px; line-height: 1.48; margin-top: 4px; word-break: break-word; overflow-wrap: anywhere; }
  .srcx-answer-summary { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .srcx-answer-summary__source { grid-column: auto; }
  .srcx-detail-actions { justify-items: start; }
  .srcx-detail-tabs { gap: 14px; padding: 0 2px; margin: 14px 0 0; }
  .srcx-detail-tabs a { padding: 10px 2px 8px; font-size: 13px; }
  .srcx-gallery { margin: 0 0 18px; }
  .srcx-gallery__track { gap: 10px; padding-bottom: 8px; }
  .srcx-gallery__item { border-radius: 14px; }
  .srcx-gallery__item img { height: auto; max-height: min(320px, 50vh); max-width: min(80vw, 380px); border-radius: 13px; }
  .srcx-gallery__nav { width: 32px; height: 32px; }
  .srcx-gallery__nav .dashicons { font-size: 16px; width: 16px; height: 16px; line-height: 16px; }
  .srcx-gallery__nav--prev { left: 6px; }
  .srcx-gallery__nav--next { right: 6px; }
  .srcx-section-head h2 { font-size: 18px; line-height: 1.25; letter-spacing: -.025em; }
  .srcx-section-head p { font-size: 12.5px; line-height: 1.45; margin-top: 4px; }
  .srcx-prose { font-size: 14.5px; line-height: 1.65; }
  .srcx-prose h2, .srcx-comments h2 { font-size: 18px; margin: 24px 0 10px; }
  .srcx-verdict-panel { padding: 16px 14px; border-radius: 14px; margin: 18px 0; }
  .srcx-verdict-title { font-size: 16px; }
  .srcx-verdict-lead { font-size: 13.5px; line-height: 1.5; margin-bottom: 12px; }
  .srcx-verdict-grid { grid-template-columns: 1fr; gap: 10px; }
  .srcx-compare-ai-verdict { padding: 16px 14px; border-radius: 14px; margin: 20px 0 14px; }
  .srcx-compare-ai-lead { font-size: 13.5px; line-height: 1.55; margin-bottom: 14px; }
  .srcx-compare-choose-grid { grid-template-columns: 1fr; gap: 10px; }
  .srcx-compare-hub-intro h2 { font-size: 20px; }
  .srcx-category-comparisons { margin-top: 32px; padding-top: 24px; }
  .srcx-facts { padding: 16px 14px; border-radius: 14px; }
  .srcx-facts h2 { font-size: 16px; margin-bottom: 8px; }
  .srcx-fact { grid-template-columns: 78px minmax(0, 1fr); gap: 10px; padding: 8px 0; font-size: 12.5px; }
  .srcx-fact--platforms { display: flex; flex-direction: column; gap: 6px; }
  .srcx-fact__platform-links .srcx-platforms { display: flex; flex-wrap: wrap; gap: 5px; }
  .srcx-fact__platform-links .srcx-platform { width: auto; flex: 0 0 auto; max-width: 100%; white-space: nowrap; font-size: 11.5px; padding: 4px 8px; }
  .srcx-library-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; width: 100%; margin-top: 14px; }
  .srcx-library-actions form { width: 100%; margin: 0; }
  .srcx-library-actions .srcx-button { width: 100%; justify-content: center; min-width: 0; padding: 8px 10px; font-size: 12.5px; }
  .srcx-library-actions button[data-compare-app] { grid-column: 1 / -1; }
  .srcx-facts__site-link { width: 100%; justify-content: center; min-height: 42px; font-size: 13.5px; margin-top: 14px; }
  .srcx-score-card { padding: 16px 14px; }
  .srcx-score-card__total strong { font-size: 26px; }
  .srcx-release-item__body h3 { font-size: 15px; }
  .srcx-release-item__body p { font-size: 13px; }
  .srcx-form__actions { align-items: flex-start; flex-wrap: wrap; }
  .srcx-claim-layout { grid-template-columns: 1fr; }
  .srcx-claim-app-card { min-height: auto; }
  .srcx-manage-head { grid-template-columns: auto minmax(0, 1fr); }
  .srcx-manage-head > .srcx-button { grid-column: 1 / -1; justify-self: start; }
  .srcx-manage-grid { grid-template-columns: 1fr; }
  .srcx-aso-report__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .srcx-recommendation-grid { grid-template-columns: 1fr; gap: 12px; }
  .srcx-recommendation-grid article:nth-child(n+4) { display: none; }
  .srcx-recommendation-grid article > a { padding: 14px 16px; gap: 14px; }
  .srcx-recommendation-info strong { font-size: 15px; }
  .srcx-recommendation-info small { font-size: 13px; line-height: 1.5; }
  .srcx-library-grid { grid-template-columns: 1fr; }
  .srcx-analytics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .srcx-analytics-grid > div { border-bottom: 1px solid var(--line); }
  .srcx-analytics-grid > div:nth-child(2n) { border-right: 0; }
  .srcx-analytics-grid > div:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .srcx-compare-tray { bottom: 12px; grid-template-columns: minmax(0, 1fr) auto auto; }
  .srcx-compare-tray > div:first-child { display: none; }
  .srcx-compare-tray [data-compare-items] { display: none; }
  .srcx-payment-card { padding: 26px; }
  .srcx-claim-history__list article { grid-template-columns: 44px minmax(0, 1fr); }
  .srcx-claim-history__list article > :last-child { grid-column: 2; justify-self: start; text-align: left; }
  .srcx-ranking-list .srcx-app-card { display: block; }
  .srcx-ranking-list .srcx-card-foot { min-width: 0; margin-top: 14px; padding: 12px 0 0; border-top: 1px solid var(--line); }
  .srcx-footer__inner { grid-template-columns: 1fr; padding: 38px 20px; }
  .srcx-footer nav { justify-content: flex-start; }
  .srcx-footer__legal { grid-column: auto; }
  .srcx-compare-links-grid { grid-template-columns: 1fr; }
  .srcx-compare-more-grid { grid-template-columns: 1fr; }
  .srcx-compare-head-hero h1 { font-size: 20px; }
}

/* The toolbar is 32px high on desktop and 46px high on compact WordPress
   layouts. Keep the public navigation and detail tabs below it while
   scrolling so signed-in previews remain usable. */
body.admin-bar { --srcx-admin-bar-height: 32px; }

@media screen and (max-width: 782px) {
  body.admin-bar { --srcx-admin-bar-height: 46px; }
  body.admin-bar #wpadminbar { position: fixed; }
}

@media (max-width: 520px) {
  .srcx-brand__logo { height: 28px; }
  .srcx-carousel__viewport { min-height: 490px; border-radius: 20px; }
  .srcx-carousel-slide__body { padding: 20px 18px; gap: 18px; }
  .srcx-carousel-slide__title { font-size: 20px; }
  .srcx-carousel-slide__summary { -webkit-line-clamp: 2; font-size: 13px; }
  .srcx-carousel-slide__stage { height: 210px; }
  .srcx-showcase-phone--front { width: 116px; height: 205px; border-radius: 26px; padding: 5px; }
  .srcx-showcase-phone__bezel { border-radius: 20px; }
  .srcx-showcase-mac { max-width: 300px; }
  .srcx-carousel__button[data-carousel-toggle] { display: none; }
  .srcx-section { padding-top: 38px; }
  .srcx-section-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .srcx-section-head h2 { font-size: 16.5px; }
  .srcx-section-head p { font-size: 11.5px; }
  .srcx-form { padding: 20px; }
  .srcx-form-grid { grid-template-columns: 1fr; }
  .srcx-aso-report__grid { grid-template-columns: 1fr; }
  .srcx-form__full { grid-column: auto; }
  .srcx-captcha { grid-template-columns: 1fr; }
  .srcx-captcha input:not([type="hidden"]) { grid-column: 1; }
  .srcx-auth-options { align-items: flex-start; flex-direction: column; }
  .srcx-review-auth-cta { padding: 15px; }
  .srcx-shell, .srcx-page { padding: 10px 12px 44px; }
  .srcx-detail-hero { padding: 14px 12px; border-radius: 14px; }
  .srcx-detail-title { gap: 12px; }
  .srcx-detail-title .srcx-app-logo--lg { width: 48px; height: 48px; border-radius: 12px; }
  .srcx-detail-title h1 { font-size: clamp(17px, 5.2vw, 21px); }
  .srcx-detail-title p { font-size: 12.5px; }
  .srcx-detail-tabs { gap: 12px; margin: 12px 0 0; }
  .srcx-detail-tabs a { font-size: 12.5px; padding: 8px 2px 6px; }
  .srcx-facts { padding: 14px 12px; border-radius: 14px; }
  .srcx-facts h2 { font-size: 15px; }
  .srcx-fact { grid-template-columns: 70px minmax(0, 1fr); gap: 8px; padding: 7px 0; font-size: 12px; }
  .srcx-score-card { padding: 14px 12px; }
  .srcx-score-card__total strong { font-size: 22px; }
  .srcx-prose { font-size: 13.5px; line-height: 1.6; }
  .srcx-prose h2, .srcx-comments h2 { font-size: 16.5px; margin: 20px 0 8px; }
  .srcx-gallery__item img { max-height: min(280px, 46vh); max-width: min(84vw, 320px); border-radius: 11px; }
  .srcx-external-review { padding: 14px 12px; }
  .srcx-library-actions { display: grid; grid-template-columns: 1fr; }
  .srcx-library-actions form, .srcx-library-actions .srcx-button { width: 100%; }
}

@media (max-width: 380px) {
  .srcx-shell, .srcx-page { padding: 8px 10px 36px; }
  .srcx-detail-hero { padding: 12px 10px; }
  .srcx-detail-title .srcx-app-logo--lg { width: 42px; height: 42px; border-radius: 10px; }
  .srcx-detail-title h1 { font-size: 16.5px; }
  .srcx-detail-title p { font-size: 12px; }
  .srcx-fact { grid-template-columns: 66px minmax(0, 1fr); gap: 6px; font-size: 11.5px; }
  .srcx-facts { padding: 12px 10px; }
  .srcx-prose { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .srcx-header, .srcx-popover, .srcx-carousel__button, .srcx-carousel__dots, .srcx-feature-card, .srcx-app-card, .srcx-chart, .srcx-ranking-list, .srcx-detail-hero, .srcx-facts, .srcx-form { background: var(--surface); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .srcx-carousel-card__label { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.srcx-social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; max-width: 380px; height: 42px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 600; border: 1px solid var(--line); transition: all .18s ease; cursor: pointer; }
.srcx-social-btn--github { background: #24292f; color: #ffffff; border-color: #24292f; }
.srcx-social-btn--github:hover { background: #1b1f23; color: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.srcx-social-btn--apple { background: #000000; color: #ffffff; border-color: #000000; }
.srcx-social-btn--apple:hover { background: #1c1c1e; color: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
:root[data-theme="dark"] .srcx-social-btn--github { background: #2d333b; color: #adbac7; border-color: #444c56; }
:root[data-theme="dark"] .srcx-social-btn--apple { background: #ffffff; color: #000000; border-color: #ffffff; }

/* ==========================================================================
   Community & Forums (Discourse / Flarum Modern Design)
   ========================================================================== */
.srcx-community-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.srcx-community-head__text { flex: 1; min-width: 260px; }
.srcx-community-head__actions { flex-shrink: 0; }

.srcx-community-nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.srcx-community-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.srcx-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--surface-2); color: var(--text-2); text-decoration: none; font-size: 13px; font-weight: 500; transition: all 0.15s ease; border: 1px solid transparent; }
.srcx-pill:hover { background: var(--surface); color: var(--text); border-color: var(--line); }
.srcx-pill.is-active { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }
.srcx-pill-count { font-size: 11px; padding: 1px 6px; border-radius: 999px; background: rgba(0,0,0,0.08); font-weight: 600; }
.srcx-pill.is-active .srcx-pill-count { background: rgba(255,255,255,0.25); color: #fff; }

.srcx-community-sort { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.srcx-sort-link { color: var(--faint); text-decoration: none; font-weight: 500; padding: 4px 6px; border-radius: 6px; transition: color 0.15s ease; }
.srcx-sort-link:hover { color: var(--text); }
.srcx-sort-link.is-active { color: var(--accent); font-weight: 700; }
.srcx-sort-sep { color: var(--line); }

.srcx-community-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 24px; align-items: start; }
@media (max-width: 960px) {
  .srcx-community-layout { grid-template-columns: 1fr; }
}

.srcx-topic-stream { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.srcx-discussion-row { display: flex; gap: 14px; padding: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; text-decoration: none; color: inherit; }
.srcx-discussion-row:hover { border-color: var(--accent); box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
.srcx-discussion-author { flex-shrink: 0; }
.srcx-discussion-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; display: block; }
.srcx-discussion-main { flex: 1; min-width: 0; }
.srcx-discussion-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.srcx-discussion-title { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.35; }
.srcx-discussion-title a { color: var(--text); text-decoration: none; transition: color 0.15s ease; }
.srcx-discussion-title a:hover { color: var(--accent); }
.srcx-board-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 6px; background: var(--surface-2); color: var(--text-2); text-decoration: none; }
.srcx-board-tag:hover { background: var(--accent); color: #fff; }
.srcx-discussion-excerpt { margin: 0 0 8px; font-size: 13px; color: var(--faint); line-height: 1.45; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.srcx-discussion-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--faint); }
.srcx-discussion-author-name { font-weight: 600; color: var(--text-2); }
.srcx-meta-sep { color: var(--line); }
.srcx-discussion-replies { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; }
.srcx-discussion-replies .dashicons { font-size: 14px; width: 14px; height: 14px; line-height: 14px; }

/* Community Sidebar Widgets */
.srcx-community-sidebar { display: flex; flex-direction: column; gap: 16px; }
.srcx-community-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.srcx-community-card h3 { margin: 0 0 12px; font-size: 14px; font-weight: 700; color: var(--text); }
.srcx-community-board-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.srcx-community-board-list a { display: flex; align-items: center; justify-content: space-between; padding: 6px 10px; border-radius: 8px; color: var(--text-2); text-decoration: none; font-size: 13px; transition: background 0.15s ease; }
.srcx-community-board-list a:hover { background: var(--surface-2); color: var(--text); }
.srcx-community-board-list a.is-active { background: var(--accent); color: #fff; }
.srcx-community-board-list span { font-size: 11px; opacity: 0.7; }
.srcx-community-review-list { display: flex; flex-direction: column; gap: 12px; }
.srcx-community-review-item { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.srcx-community-review-item:last-child { border-bottom: none; padding-bottom: 0; }

/* Topic Detail Top & Breadcrumbs */
.srcx-topic-detail { min-width: 0; scroll-margin-top: calc(var(--header-height) + 24px); }
.srcx-topic-detail-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-top: 6px; }
.srcx-breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--muted); line-height: 1.4; }
.srcx-breadcrumbs a { color: var(--muted); text-decoration: none; transition: color 0.15s ease; }
.srcx-breadcrumbs a:hover { color: var(--accent); }
.srcx-breadcrumbs .srcx-meta-sep { color: var(--faint); font-size: 13px; opacity: 0.7; }

/* Topic Detail OP Card */
.srcx-topic-op-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 24px; }
.srcx-topic-op-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.srcx-topic-op-author { display: flex; align-items: center; gap: 12px; }
.srcx-topic-op-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.srcx-topic-op-author-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 2px; }
.srcx-topic-op-name { font-size: 15px; font-weight: 700; color: var(--text); }
.srcx-topic-op-meta { font-size: 12px; color: var(--faint); }
.srcx-topic-op-title { font-size: 24px; font-weight: 800; line-height: 1.3; margin: 0 0 16px; color: var(--text); }
.srcx-topic-op-body { font-size: 15px; line-height: 1.7; color: var(--text); }
.srcx-topic-op-body img { display: block; max-width: 100%; height: auto; margin: 18px auto; border-radius: 16px; }
.srcx-digest-chart-wrap { text-align: center; margin: 24px 0; }
.srcx-digest-chart-img { display: block; max-width: min(440px, 100%) !important; width: 100%; height: auto; margin: 0 auto; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12); }

/* Badges */
.srcx-badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.srcx-badge--op { background: #3b82f6; color: #fff; }

/* Topic Replies with Floor Numbers */
.srcx-topic-reply-item { list-style: none; margin-bottom: 14px; }
.srcx-topic-reply-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.srcx-topic-reply-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.srcx-topic-reply-author { display: flex; align-items: center; gap: 10px; }
.srcx-topic-reply-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.srcx-topic-reply-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.srcx-topic-reply-floor { font-size: 12px; font-weight: 700; color: var(--faint); background: var(--surface-2); padding: 2px 8px; border-radius: 6px; }
.srcx-topic-reply-body { font-size: 14px; line-height: 1.6; color: var(--text); margin-bottom: 10px; }
.srcx-topic-reply-footer { display: flex; align-items: center; gap: 10px; font-size: 12px; }

/* Modal Composer */
.srcx-modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.srcx-modal-backdrop[hidden] { display: none; }
.srcx-modal-dialog { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 40px rgba(0,0,0,0.25); padding: 24px; }
.srcx-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.srcx-modal-header h2 { margin: 0; font-size: 18px; font-weight: 700; }
.srcx-modal-close { background: transparent; border: none; font-size: 18px; color: var(--faint); cursor: pointer; padding: 4px 8px; border-radius: 6px; }
.srcx-modal-close:hover { background: var(--surface-2); color: var(--text); }

/* Emoji Picker & Trigger */
.srcx-comment-field-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.srcx-emoji-btn { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); color: var(--text-2); font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.15s ease; }
.srcx-emoji-btn:hover { background: var(--surface-2); color: var(--text); border-color: var(--accent); }

.srcx-emoji-popover { position: fixed; z-index: 10000; width: 320px; max-width: 90vw; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,0.18); padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.srcx-emoji-popover[hidden] { display: none; }
.srcx-emoji-search { width: 100%; height: 34px; border-radius: 8px; border: 1px solid var(--line); padding: 0 10px; font-size: 13px; background: var(--surface-2); color: var(--text); }
.srcx-emoji-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.srcx-emoji-tab { flex: 1; border: none; background: transparent; padding: 4px 0; border-radius: 6px; font-size: 15px; cursor: pointer; transition: background 0.15s ease; }
.srcx-emoji-tab:hover { background: var(--surface-2); }
.srcx-emoji-tab.is-active { background: var(--surface-2); }
.srcx-emoji-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; max-height: 200px; overflow-y: auto; padding-right: 4px; }
.srcx-emoji-item { border: none; background: transparent; font-size: 20px; line-height: 1; padding: 6px 0; border-radius: 6px; cursor: pointer; transition: transform 0.1s ease, background 0.1s ease; text-align: center; }
.srcx-emoji-item:hover { background: var(--surface-2); transform: scale(1.2); }

