

.search-field-center-placeholder {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.search-field-center-placeholder > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




.search-field--prominent {
  --search-field-surface: rgba(118, 118, 128, 0.12);
  --search-field-surface-focus: rgba(118, 118, 128, 0.18);
  --search-field-action-hover: rgba(60, 60, 67, 0.09);
  --search-field-action-active: rgba(60, 60, 67, 0.14);
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 56px;
  box-sizing: border-box;
  padding: 0 6px 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--search-field-surface);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
  transition: background 160ms ease;
}

.search-field--prominent:focus-within {
  background: var(--search-field-surface-focus);
}

.search-field-leading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-inline-end: 10px;
  color: rgba(60, 60, 67, 0.66);
  color: var(--sub, rgba(60, 60, 67, 0.66));
  pointer-events: none;
}

.search-field-leading > :is(.mdi, .dp-icon) {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}

.search-field-control-slot {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
}

.search-field--prominent .search-field-control {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: #1c1c1e;
  color: var(--fg, #1c1c1e);
  font: 500 16px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-align: start;
  caret-color: #dcaa2e;
  caret-color: var(--accent-strong, var(--accent, #dcaa2e));
  -webkit-appearance: none;
  appearance: none;
}

.search-field--prominent .search-field-control::placeholder {
  color: transparent;
  opacity: 0;
}

.search-field-prominent-placeholder {
  position: absolute;
  inset-inline: 0;
  min-width: 0;
  overflow: hidden;
  color: rgba(60, 60, 67, 0.64);
  color: var(--sub, rgba(60, 60, 67, 0.64));
  font: 500 16px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  pointer-events: none;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-field-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 2px;
  margin-inline-start: 6px;
}

.search-field--prominent .search-field-actions > button,
.search-field--prominent .search-field-clear {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  color: rgba(60, 60, 67, 0.72);
  color: var(--sub, rgba(60, 60, 67, 0.72));
  cursor: pointer;
  touch-action: manipulation;
  transition: color 150ms ease, background 150ms ease, transform 120ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .search-field--prominent .search-field-actions > button:hover,
  .search-field--prominent .search-field-clear:hover {
    background: var(--search-field-action-hover);
    color: #1c1c1e;
    color: var(--fg, #1c1c1e);
  }
}

.search-field--prominent .search-field-actions > button:active,
.search-field--prominent .search-field-clear:active {
  background: var(--search-field-action-active);
  transform: scale(0.94);
}

.search-field--prominent .search-field-actions > button:focus-visible,
.search-field--prominent .search-field-clear:focus-visible {
  outline: 2px solid #dcaa2e;
  outline: 2px solid var(--accent-strong, var(--accent, #dcaa2e));
  outline-offset: -2px;
}

.search-field--prominent .search-field-actions > button.is-active {
  background: rgba(220, 170, 46, 0.18);
  background: var(--accent-tint-active, rgba(220, 170, 46, 0.18));
  color: #1f2328;
  color: var(--fg, #1f2328);
}

.search-field--prominent .search-field-actions > .lab-search-reset {
  width: auto;
  min-width: 44px;
  flex-basis: auto;
  padding-inline: 12px;
  font: 600 14px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.theme-dark .search-field--prominent,
[data-theme="dark"] .search-field--prominent {
  --search-field-surface: rgba(118, 118, 128, 0.26);
  --search-field-surface-focus: rgba(118, 118, 128, 0.34);
  --search-field-action-hover: rgba(255, 255, 255, 0.1);
  --search-field-action-active: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.theme-dark .search-field-leading,
.theme-dark .search-field-prominent-placeholder,
.theme-dark .search-field--prominent .search-field-actions > button,
.theme-dark .search-field--prominent .search-field-clear,
[data-theme="dark"] .search-field-leading,
[data-theme="dark"] .search-field-prominent-placeholder,
[data-theme="dark"] .search-field--prominent .search-field-actions > button,
[data-theme="dark"] .search-field--prominent .search-field-clear {
  color: rgba(235, 235, 245, 0.72);
}

.theme-dark .search-field--prominent .search-field-control,
[data-theme="dark"] .search-field--prominent .search-field-control {
  
  background: transparent;
  color: #fff;
  color: var(--fg, #fff);
}

@media (prefers-reduced-motion: reduce) {
  .search-field--prominent,
  .search-field--prominent .search-field-actions > button,
  .search-field--prominent .search-field-clear {
    transition: none;
  }
}

.lab-search-row--native-toolbar .lab-search-bar:empty,
.lab-search-row--native-toolbar:has(> .lab-search-bar:only-child:empty) {
  display: none;
}
.lab-search-row--native-toolbar {
  justify-content: flex-end;
}

.searchbar-input-wrap {
  position: relative;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  max-width: 100%;
}

.searchbar-row--prominent {
  gap: 0;
}

.searchbar-input {
  width: 100%;
  padding: 10px 42px 10px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  background: #fff;
  background: var(--card-bg, #fff);
  caret-color: #dcaa2e;
  caret-color: var(--accent-strong, var(--accent, #dcaa2e));
}


.searchbar-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.searchbar-input::placeholder {
  color: transparent;
}

.searchbar-center-placeholder {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
  opacity: 0.72;
  font-size: 14px;
}


.searchbar-clear {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin-block: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.48);
  color: var(--sub, rgba(0, 0, 0, 0.48));
  cursor: pointer;
}

.searchbar-clear > :is(.mdi, .dp-icon) {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

.searchbar-toggle.is-active {
  color: #1f2328;
  color: var(--fg, #1f2328);
}

.theme-dark .searchbar-input {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.theme-dark .searchbar-clear {
  color: rgba(255, 255, 255, 0.82);
}

.theme-dark .searchbar-center-placeholder {
  opacity: 0.85;
}


.searchbar-row--native-toolbar {
  min-height: 0;
  justify-content: flex-end;
}
.searchbar-row--native-toolbar:empty,
.searchbar-wrap:has(> .searchbar-row--native-toolbar:empty) {
  display: none;
}


.testing-page {
  padding: 0 0 100px;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: testing-page-slide-in 220ms ease-out;
}

.testing-page__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1rem;
}

.testing-page__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-wrap: pretty;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.testing-page__content p {
  text-wrap: pretty;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.testing-page__text {
  padding: 0 2em;
}

@keyframes testing-page-slide-in {
  from {
    transform: translateX(16px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.testing-support-card {
  --testing-support-border: color-mix(in srgb, var(--fg, #111) 9%, transparent);
  --testing-support-surface:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 198, 86, 0.18), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--card, #fff) 95%, var(--bg, #f8f4ea)), var(--card, #fff));
  margin: 2em 0;
  padding: 16px;
  border: 1px solid var(--testing-support-border);
  border-radius: 18px;
  background: var(--testing-support-surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  scroll-margin-top: 12px;
}



@media (max-width: 519px) and (orientation: portrait) {
  .testing-page {
    --testing-mobile-gutter: 16px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, #f2f2f7 96%, #f2f2f7 4%);
    background: color-mix(in srgb, var(--bg, #f2f2f7) 96%, #f2f2f7 4%);
    animation-duration: 180ms;
  }

  .testing-page__wrap {
    display: block;
    padding-top: 12px;
  }

  .testing-page__content {
    max-width: none;
  }

  .testing-page__text {
    display: flex;
    flex-direction: column;
    padding-inline: var(--testing-mobile-gutter);
  }

  .testing-page__text > :first-child {
    order: 1;
  }

  .testing-page__text > .testing-howto-guide {
    order: 2;
  }

  .testing-page__text > .testing-page__intro {
    order: 3;
  }

  .testing-page .searchbar-row.searchbar-row-analyze {
    padding-left: 0;
    padding-right: 0;
  }

  .testing-page .ui-search-search-row {
    margin: 0 0 20px;
  }

  .testing-page .ui-search-search-wrap .searchbar-input {
    min-height: 50px;
    padding: 12px 44px 12px 16px;
    border: 0;
    border-radius: 14px;
    background: color-mix(in srgb, #fff 78%, #e9e9ee 22%);
    background: color-mix(in srgb, var(--card, #fff) 78%, #e9e9ee 22%);
    box-shadow: none;
    font-size: 17px;
    line-height: 22px;
  }

  .testing-page .ui-search-search-wrap .searchbar-center-placeholder {
    justify-content: flex-start;
    padding-inline: 16px 44px;
    font-size: 17px;
    line-height: 22px;
    opacity: 0.56;
  }

  .testing-page .ui-search-list {
    margin-top: 10px;
    gap: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    background: var(--card, #fff);
  }

  .testing-page .ui-search-row {
    min-height: 56px;
    padding: 8px 12px;
    border: 0;
    border-radius: 0 !important;
    background: transparent;
    box-shadow: none;
  }

  .testing-page .ui-search-row + .ui-search-row {
    border-top: 0.5px solid rgba(60, 60, 67, 0.2);
  }

  .testing-page .ui-search-row:hover {
    transform: none;
    box-shadow: none;
    background: rgba(118, 118, 128, 0.08);
  }

  .testing-page .ui-search-row--recent {
    box-sizing: border-box;
    min-height: 52px;
    align-items: center;
    gap: 12px;
    padding: 5px 12px;
  }

  .testing-page .ui-search-list--recent {
    margin-bottom: 24px;
    border: 0.5px solid rgba(60, 60, 67, 0.14);
  }

  .testing-page .ui-search-row--recent .ui-search-date-halo {
    flex-basis: 34px;
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    margin: 0;
    color: color-mix(in srgb, #8e8e93 82%, #111 18%);
    color: color-mix(in srgb, var(--series-color, #8e8e93) 82%, var(--fg, #111) 18%);
  }

  .testing-page .ui-search-row--recent .ui-search-date-halo > svg {
    width: 20px;
    height: 20px;
  }

  .testing-page .ui-search-row--recent .ui-search-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.01em;
  }

  .testing-page .ui-search-row--recent .ui-search-sub {
    margin-top: 1px;
    font-size: 12px;
    line-height: 16px;
    opacity: 0.58;
  }

  .testing-page .ui-search-row--recent:active {
    transform: none;
    background: rgba(118, 118, 128, 0.14);
  }

  .theme-dark .testing-page .ui-search-list--recent,
  [data-theme="dark"] .testing-page .ui-search-list--recent {
    border-color: rgba(84, 84, 88, 0.65);
  }
}

.testing-page__intro {
  margin-top: 24px;
  margin-bottom: 3rem;
  padding: 18px 18px 6px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background:
    radial-gradient(140% 140% at 100% 0%, rgba(255, 207, 113, 0.118), transparent 55%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.1196), rgba(249, 245, 237, 0.1198));
  box-shadow: 0 14px 34px rgba(63, 46, 16, 0.08);
}

.testing-page__intro h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.testing-page__intro p {
  margin: 0 0 12px;
  line-height: 1.58;
}

.theme-dark .testing-page__intro {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(246, 173, 54, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(32, 34, 37, 0.96), rgba(20, 22, 25, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.theme-dark .testing-support-card {
  --testing-support-border: color-mix(in srgb, var(--fg, #f5f5f5) 14%, transparent);
  --testing-support-surface:
    radial-gradient(120% 160% at 100% 0%, rgba(246, 173, 54, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(32, 34, 37, 0.96), rgba(20, 22, 25, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.testing-support-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.testing-support-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, #111 66%, #666);
  color: color-mix(in srgb, var(--fg, #111) 66%, var(--sub, #666));
}

.testing-support-card__title {
  margin: 6px 0 6px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.testing-support-card__sub {
  margin: 0;
  
  color: #666;
  color: var(--sub, #666);
  font-size: 0.94rem;
}

.testing-support-card__shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border: 0;
  padding: 10px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, #111 8%, transparent);
  background: color-mix(in srgb, var(--fg, #111) 8%, transparent);
  color: #111;
  color: var(--fg, #111);
  font-size: 0.92rem;
  font-weight: 600;
  font: inherit;
  cursor: pointer;
}

.testing-support-thread {
  min-height: 170px;
  max-height: 380px;
  overflow: auto;
  padding: 6px 2px 6px 0;
}

.testing-support-faq,
.testing-support-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testing-support-faq__item,
.testing-support-msg__bubble {
  border: 1px solid color-mix(in srgb, #111 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--fg, #111) 8%, transparent);
  border-radius: 16px;
  padding: 12px 13px;
  background: color-mix(in srgb, #fff 92%, transparent);
  background: color-mix(in srgb, var(--card, #fff) 92%, transparent);
}

.theme-dark .testing-support-faq__item,
.theme-dark .testing-support-msg__bubble {
  background: rgba(255, 255, 255, 0.04);
}

.testing-support-faq__q {
  margin: 0 0 6px;
  font-size: 0.94rem;
}

.testing-support-faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.testing-support-faq__toggle .testing-support-faq__q {
  margin: 0;
}

.testing-support-faq__a {
  margin: 0;
  color: #666;
  color: var(--sub, #666);
  font-size: 0.92rem;
  line-height: 1.45;
}

.testing-support-msg {
  display: flex;
}

.testing-support-msg.outgoing {
  justify-content: flex-end;
}

.testing-support-msg.incoming {
  justify-content: flex-start;
}

.testing-support-msg.outgoing .testing-support-msg__bubble {
  max-width: 82%;
  background:
    linear-gradient(135deg, rgba(255, 193, 79, 0.2), rgba(255, 150, 83, 0.08)),
    color-mix(in srgb, #fff 92%, transparent);
  background:
    linear-gradient(135deg, rgba(255, 193, 79, 0.2), rgba(255, 150, 83, 0.08)),
    color-mix(in srgb, var(--card, #fff) 92%, transparent);
}

.testing-support-msg.incoming .testing-support-msg__bubble {
  max-width: 86%;
}

.testing-support-msg__bubble p {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.testing-support-faq__a a,
.testing-support-msg__bubble a {
  color: color-mix(in srgb, #2f6fed 82%, #111 18%);
  color: color-mix(in srgb, var(--accent, #2f6fed) 82%, var(--fg, #111) 18%);
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.testing-support-faq__a a:hover,
.testing-support-msg__bubble a:hover {
  opacity: 0.88;
}

.testing-support-msg__meta {
  display: block;
  margin-top: 7px;
  color: #666;
  color: var(--sub, #666);
  font-size: 0.76rem;
}

.testing-support-empty {
  display: grid;
  place-items: center;
  grid-gap: 8px;
  gap: 8px;
  min-height: 160px;
  color: #666;
  color: var(--sub, #666);
  text-align: center;
}

.testing-support-empty .mdi {
  font-size: 24px;
}

.testing-support-compose {
  margin-top: 12px;
  
}

.testing-support-compose__input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 88px;
  resize: vertical;
  padding: 13px 14px;
  border: 1px solid color-mix(in srgb, #111 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--fg, #111) 12%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, #fff 96%, transparent);
  background: color-mix(in srgb, var(--card, #fff) 96%, transparent);
  color: #111;
  color: var(--fg, #111);
  font: inherit;
  box-sizing: border-box;
}

.theme-dark .testing-support-compose__input {
  background: rgba(255, 255, 255, 0.04);
}

.testing-support-compose__input::placeholder {
  color: color-mix(in srgb, #666 92%, transparent);
  color: color-mix(in srgb, var(--sub, #666) 92%, transparent);
}

.testing-support-compose__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.testing-support-compose__status {
  color: #666;
  color: var(--sub, #666);
  font-size: 0.82rem;
  line-height: 1.35;
}

.testing-support-compose__send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 11px 15px;
  background: linear-gradient(135deg, #f7bd4e, #ef8e45);
  color: #1b1208;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.testing-support-compose__send:disabled {
  opacity: 0.5;
}

@media (max-width: 640px) {
  .testing-support-card {
    padding: 14px;
    border-radius: 16px;
  }

  .testing-support-card__head,
  .testing-support-compose__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .testing-support-card__shop,
  .testing-support-compose__send {
    justify-content: center;
  }
}

@media (max-width: 519px) and (orientation: portrait) {
  .testing-page__intro {
    margin: 28px 0 24px;
    padding: 16px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    background: var(--card, #fff);
    box-shadow: none;
  }

  .testing-page__intro h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.02em;
  }

  .testing-page__intro p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 21px;
    color: #6d6d72;
    color: var(--sub, #6d6d72);
  }

  .testing-page__intro p:last-child {
    margin-bottom: 0;
  }

  .theme-dark .testing-page,
  [data-theme="dark"] .testing-page {
    background: color-mix(in srgb, #000 94%, #1c1c1e 6%);
    background: color-mix(in srgb, var(--bg, #000) 94%, #1c1c1e 6%);
  }

  .theme-dark .testing-page .ui-search-search-wrap .searchbar-input,
  [data-theme="dark"] .testing-page .ui-search-search-wrap .searchbar-input {
    background: rgba(118, 118, 128, 0.24);
  }

  .theme-dark .testing-page__intro,
  [data-theme="dark"] .testing-page__intro {
    border: 0;
    background: #1c1c1e;
    background: var(--card, #1c1c1e);
    box-shadow: none;
  }
}



.ui-search-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 1rem 0rem;
}

@media (pointer: coarse), (max-width: 519px) and (orientation: portrait) {
  .ui-search-search-row {
    margin: 0;
  }
}

.ui-search-search-wrap {
  position: relative;
  flex: 1 1;
  min-width: 0;
}

.ui-search-search-wrap .searchbar-input-wrap {
  position: relative;
  width: 100%;
}

.ui-search-search-wrap .searchbar-input {
  min-height: 42px;
  padding: 10px 42px 10px 12px;
  border: 1px solid #ccc;
  border-radius: 999px;
  font-size: 14px;
}

.ui-search-search-wrap .searchbar-center-placeholder {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  opacity: 0.65;
}

.theme-dark .ui-search-search-wrap .searchbar-input {
  border-color: rgba(255, 255, 255, 0.16);
}

.theme-dark .ui-search-search-wrap .searchbar-center-placeholder {
  opacity: 0.85;
}

.ui-search-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.ui-search-row {
  display: flex;
  gap: 14px;
  padding: 10px 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px !important;
  background: color-mix(in srgb, #fff 94%, transparent);
  background: color-mix(in srgb, var(--card, #fff) 94%, transparent);
  color: #111;
  color: var(--fg, #111);
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.theme-dark .ui-search-row {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.ui-search-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.ui-search-row:active {
  transform: scale(0.985);
}

.ui-search-row > div:last-child {
  transition: transform 0.15s ease;
}

.ui-search-row:hover > div:last-child {
  transform: translateX(2px);
}

.ui-search-date-halo {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
  height: 38px;
  min-width: 40px;
  min-height: 38px;
  padding: 0;
  margin: 0 5px 0 5px;
  line-height: 1;
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border-radius: 12px;
  box-sizing: border-box;
  flex: 0 0 34px;
  color: color-mix(in srgb, #8e8e93 82%, #111 18%);
  color: color-mix(in srgb, var(--series-color, #8e8e93) 82%, var(--fg, #111) 18%);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.ui-search-main {
  min-width: 0;
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ui-search-main-left {
  min-width: 0;
  flex: 1 1;
}

.ui-search-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: #111;
  color: var(--fg, #111);
  line-height: 1.2;
  text-wrap: balance;
}

.ui-search-sub {
  margin-top: 2px;
  color: #666;
  color: var(--sub, #666);
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.3;
}

.ui-search-right {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 42%;
  flex: 0 1 auto;
  overflow: hidden;
}

.ui-search-chev {
  color: #666;
  color: var(--sub, #666);
}

.howto-tips {
  --howto-screen-bg: transparent;
  --howto-group-bg: color-mix(in srgb, var(--card, #fff) 98%, #eef1f5 2%);
  --howto-row-separator: rgba(60, 66, 87, 0.12);
  --howto-primary-text: color-mix(in srgb, var(--text, #0f172a) 96%, #000 4%);
  --howto-secondary-text: color-mix(in srgb, var(--sub, #667085) 92%, #4b5563 8%);
  --howto-chevron: color-mix(in srgb, var(--sub, #98a2b3) 88%, #c3c8d1 12%);
  --howto-preview-bg: color-mix(in srgb, var(--card, #fff) 88%, #edf1f5 12%);
}

.howto-section-header {
  padding: 24px 4px 0px;
}

.howto-section-header h3 {
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  line-height: 1.04;
  color: var(--howto-primary-text);
}

.howto-section-header p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--howto-secondary-text);
}

.howto-grouped-list {
  border-radius: 28px;
  background: var(--howto-group-bg);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.howto-grouped-list.is-large {
  border-radius: 32px;
}

.howto-row {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.howto-grouped-list > .howto-row + .howto-row {
  border-top: 1px solid var(--howto-row-separator);
}

.howto-row--compact {
  min-height: 76px;
  padding: 14px 16px;
}

.howto-row--large {
  min-height: 120px;
  padding: 16px;
  align-items: stretch;
}

.howto-row__leading,
.howto-row__trailing {
  flex: 0 0 auto;
}

.howto-row__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--howto-preview-bg) 92%, white 8%);
}

.howto-row__content {
  min-width: 0;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.howto-row__content--large {
  justify-content: center;
  gap: 8px;
}

.howto-row__title {
  font-weight: 700;
  color: var(--howto-primary-text);
  line-height: 1.24;
}

.howto-row__title--large {
  font-size: clamp(1.15rem, 3.6vw, 1.55rem);
}

.howto-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.howto-row__meta--stacked {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
}

.howto-row__subtitle {
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--howto-secondary-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.howto-row__subtitle--large {
  font-size: 1rem;
  line-height: 1.4;
  -webkit-line-clamp: 2;
}

.howto-row__eyebrow {
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--howto-secondary-text);
}

.howto-row__trailing {
  color: var(--howto-chevron);
  align-self: center;
}

.howto-family-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--howto-secondary-text);
}

.howto-family-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.howto-row__preview {
  width: 108px;
  min-width: 108px;
  height: 108px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--howto-preview-bg);
  border: 1px solid color-mix(in srgb, var(--howto-row-separator) 88%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.howto-row__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.howto-row__preview-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(240,243,247,0.95));
}

.howto-row__preview-icon,
.howto-row__preview-icon > svg {
  width: clamp(48px, 5vw, 60px);
  height: clamp(48px, 5vw, 60px);
}


.howto-row__preview--accent .howto-row__preview-icon svg path {
  fill: #7f8ea3;
  fill: var(--accent-strong, var(--accent, #7f8ea3));
}

.theme-dark .howto-tips,
[data-theme="dark"] .howto-tips {
  --howto-group-bg: color-mix(in srgb, var(--card, #171a20) 96%, #242938 4%);
  --howto-row-separator: rgba(255, 255, 255, 0.08);
  --howto-primary-text: rgba(255, 255, 255, 0.96);
  --howto-secondary-text: rgba(255, 255, 255, 0.66);
  --howto-chevron: rgba(255, 255, 255, 0.4);
  --howto-preview-bg: rgba(255, 255, 255, 0.06);
}

.theme-dark .howto-row__preview-fallback,
[data-theme="dark"] .howto-row__preview-fallback {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(27, 34, 46, 0.94), rgba(17, 23, 33, 0.98));
}


.howto-tip-slides {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: linear-gradient(180deg, rgba(248, 249, 252, 0.98), rgba(241, 243, 247, 0.98));
  display: flex;
  flex-direction: column;
  padding: 0;
}

.howto-tip-slides__pager {
  flex: 1 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.howto-tip-slides__pager::-webkit-scrollbar {
  display: none;
}

.howto-tip-slides__page {
  scroll-snap-align: start;
  min-width: 0;
  
  padding: calc(56px + 4px) 16px
    calc(84px + env(safe-area-inset-bottom, 0px));
  padding: var(--app-floating-chrome-content-top, calc(var(--app-floating-topbar-h, var(--topbar-h, 56px)) + 4px)) 16px
    calc(84px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.howto-tip-slides__page-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px 0 4px;
}

.howto-tip-slides__close-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.72);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 140ms ease;
}

.howto-tip-slides__close-btn:hover {
  background: rgba(17, 24, 39, 0.14);
}

.howto-tip-slides__close-btn:active {
  background: rgba(17, 24, 39, 0.20);
}

.theme-dark .howto-tip-slides__close-btn,
[data-theme="dark"] .howto-tip-slides__close-btn {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.72);
}

.theme-dark .howto-tip-slides__close-btn:hover,
[data-theme="dark"] .howto-tip-slides__close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}



.howto-tip-slides__pagination {
  position: absolute;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(227, 232, 240, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.howto-tip-slides__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(142, 145, 153, 0.56);
  padding: 0;
}

.howto-tip-slides__dot.is-active {
  background: rgba(17, 24, 39, 0.96);
}

.howto-tip-slides__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  
  padding: 12px 0;
  
  background: none;
}

.howto-tip-slides__navbtn-primary,
.howto-tip-slides__navbtn-secondary {
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  padding: 0 16px;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.howto-tip-slides__navbtn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--howto-secondary-text);
}

.howto-tip-slides__navbtn-primary {
  margin-left: auto;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.16);
}

.howto-tip-slides__navbtn-primary:disabled,
.howto-tip-slides__navbtn-secondary:disabled {
  opacity: 0.38;
}

@media (hover: hover) {
  .howto-tip-slides__navbtn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.92);
  }

  .howto-tip-slides__navbtn-primary:hover:not(:disabled) {
    background: rgba(17, 24, 39, 1);
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.24);
  }
}

.theme-dark .howto-tip-slides,
[data-theme="dark"] .howto-tip-slides {
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(18, 18, 18, 0.98));
}

.theme-dark .howto-tip-slides__navbtn,
[data-theme="dark"] .howto-tip-slides__navbtn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.theme-dark .howto-tip-slides__pagination,
[data-theme="dark"] .howto-tip-slides__pagination {
  background: rgba(255, 255, 255, 0.08);
}

.theme-dark .howto-tip-slides__navbtn-secondary,
[data-theme="dark"] .howto-tip-slides__navbtn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.theme-dark .howto-tip-slides__navbtn-primary,
[data-theme="dark"] .howto-tip-slides__navbtn-primary {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(17, 24, 39, 0.96);
}

@media (hover: hover) {
  .theme-dark .howto-tip-slides__navbtn-secondary:hover:not(:disabled),
  [data-theme="dark"] .howto-tip-slides__navbtn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.16);
  }

  .theme-dark .howto-tip-slides__navbtn-primary:hover:not(:disabled),
  [data-theme="dark"] .howto-tip-slides__navbtn-primary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 1);
  }
}

.theme-dark .howto-tip-slides__dot,
[data-theme="dark"] .howto-tip-slides__dot {
  background: rgba(255, 255, 255, 0.34);
}

.theme-dark .howto-tip-slides__dot.is-active,
[data-theme="dark"] .howto-tip-slides__dot.is-active {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 720px) {
  .howto-row--large {
    min-height: 108px;
    padding: 14px;
    gap: 12px;
  }

  .howto-row__preview {
    width: 86px;
    min-width: 86px;
    height: 86px;
    border-radius: 20px;
  }

  .howto-row__preview-icon,
  .howto-row__preview-icon > svg {
    width: clamp(52px, 12vw, 64px);
    height: clamp(52px, 12vw, 64px);
  }

  
  .howto-tip-slides__page {
    padding-left: 12px;
    padding-right: 12px;
  }
}


.howto-thumb-img {
  display: block;
  border-radius: inherit;
  overflow: hidden;
}

.howto-thumb-img__skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, #111 6%, transparent) 0%,
    color-mix(in srgb, #111 10%, transparent) 50%,
    color-mix(in srgb, #111 6%, transparent) 100%
  );
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--fg, #111) 6%, transparent) 0%,
    color-mix(in srgb, var(--fg, #111) 10%, transparent) 50%,
    color-mix(in srgb, var(--fg, #111) 6%, transparent) 100%
  );
  background-size: 200% 100%;
  animation: howto-thumb-skeleton-shimmer 1.2s ease-in-out infinite;
}

@keyframes howto-thumb-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .howto-thumb-img__skeleton {
    animation: none;
  }
}

.testing-howto-guide {
  margin-top: 28px;
}



.testing-howto-guide__title {
  margin: 0;
}

.testing-howto-guide__text {
  max-width: 62ch;
}

.testing-howto-guide--mobile-list .howto-family-page__sections {
  gap: 18px;
}

.testing-howto-guide--mobile-list .testing-howto-guide__section .howto-section-header {
  padding-inline: 2px;
}

.testing-howto-guide .howto-family-page__sections .howto-row {
  position: relative;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.testing-howto-guide .howto-family-page__sections .howto-row:hover {
  z-index: 1;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: color-mix(in srgb, var(--howto-group-bg) 88%, #fff 12%);
  background: color-mix(in srgb, var(--howto-group-bg) 88%, var(--card, #fff) 12%);
}

.testing-howto-guide .howto-family-page__sections .howto-row:active {
  transform: scale(0.985);
}

.testing-howto-guide .howto-family-page__sections .howto-row__trailing {
  transition: transform 0.15s ease;
}

.testing-howto-guide .howto-family-page__sections .howto-row:hover .howto-row__trailing {
  transform: translateX(2px);
}

.theme-dark .testing-howto-guide .howto-family-page__sections .howto-row:hover,
[data-theme="dark"] .testing-howto-guide .howto-family-page__sections .howto-row:hover {
  background: rgba(255, 255, 255, 0.04);
}


@media (max-width: 519px) and (orientation: portrait) {
  .testing-howto-guide--mobile-list {
    margin-top: 0;
  }

  .testing-howto-guide--mobile-list .howto-family-page__sections {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-row-gap: 24px;
    row-gap: 24px;
  }

  .testing-howto-guide--mobile-list .testing-howto-guide__section {
    min-width: 0;
  }

  .testing-howto-guide--mobile-list .testing-howto-guide__instruction-groups {
    display: grid;
    grid-row-gap: 20px;
    row-gap: 20px;
  }

  .testing-howto-guide--mobile-list .howto-section-header {
    padding: 0 4px 8px;
  }

  .testing-howto-guide--mobile-list .howto-section-header h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.01em;
    color: var(--howto-secondary-text);
  }

  .testing-howto-guide--mobile-list .howto-grouped-list,
  .testing-howto-guide--mobile-list .howto-grouped-list.is-large {
    overflow: hidden;
    border: 0.5px solid rgba(60, 60, 67, 0.14);
    border-radius: 12px;
    background: #fff;
    background: var(--card, #fff);
    box-shadow: none;
  }

  .testing-howto-guide--mobile-list .howto-grouped-list > .howto-row + .howto-row {
    border-top-color: rgba(60, 60, 67, 0.2);
  }

  .testing-howto-guide--mobile-list .howto-row--large {
    min-height: 56px;
    padding: 7px 12px;
    align-items: center;
    gap: 12px;
  }

  .testing-howto-guide--mobile-list .howto-row__preview {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent;
  }

  .testing-howto-guide--mobile-list .howto-row__preview.has-icon {
    background: transparent;
  }

  .testing-howto-guide--mobile-list .howto-row__preview.has-media {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .testing-howto-guide--mobile-list .howto-row__preview.has-media {
    border: 0.5px solid rgba(60, 60, 67, 0.16);
  }

  .testing-howto-guide--mobile-list .howto-row__preview.has-icon .howto-row__preview-fallback {
    background: transparent;
    color: var(--howto-icon-color) !important;
    opacity: 0.88;
  }

  .testing-howto-guide--mobile-list .howto-row__preview.has-icon .howto-row__preview-icon,
  .testing-howto-guide--mobile-list .howto-row__preview.has-icon .howto-row__preview-icon > svg {
    width: 20px;
    height: 20px;
  }

  .testing-howto-guide--mobile-list .howto-row__content--large {
    gap: 0;
  }

  .testing-howto-guide--mobile-list .howto-row__meta {
    display: none;
  }

  .testing-howto-guide--mobile-list .howto-row__title--large {
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.01em;
  }

  .testing-howto-guide--mobile-list .howto-row__trailing {
    color: rgba(60, 60, 67, 0.36);
  }

  .testing-howto-guide--mobile-list .howto-row:hover {
    z-index: auto;
    transform: none;
    box-shadow: none;
    background: rgba(118, 118, 128, 0.08);
  }

  .testing-howto-guide--mobile-list .howto-row:active {
    transform: none;
    background: rgba(118, 118, 128, 0.14);
  }

  .theme-dark .testing-howto-guide--mobile-list .howto-grouped-list,
  [data-theme="dark"] .testing-howto-guide--mobile-list .howto-grouped-list {
    border-color: rgba(84, 84, 88, 0.65);
    background: #1c1c1e;
    background: var(--card, #1c1c1e);
  }

  .theme-dark .testing-howto-guide--mobile-list .howto-grouped-list > .howto-row + .howto-row,
  [data-theme="dark"] .testing-howto-guide--mobile-list .howto-grouped-list > .howto-row + .howto-row {
    border-top-color: rgba(84, 84, 88, 0.65);
  }

  .theme-dark .testing-howto-guide--mobile-list .howto-row__preview.has-media,
  [data-theme="dark"] .testing-howto-guide--mobile-list .howto-row__preview.has-media {
    border-color: rgba(84, 84, 88, 0.65);
  }

  .theme-dark .testing-howto-guide--mobile-list .howto-row__trailing,
  [data-theme="dark"] .testing-howto-guide--mobile-list .howto-row__trailing {
    color: rgba(235, 235, 245, 0.3);
  }
}

