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

#app-root {
  max-width: 100%;
  overflow-x: clip;
}

.app-loading-bar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.app-loading-bar__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #059669, #22c55e, #0ea5e9);
  box-shadow: 0 0 16px rgba(5, 150, 105, 0.45);
  transition: width 260ms ease;
}

.app-loading-bar.is-active {
  opacity: 1;
  transform: translateY(0);
}

.app-loading-bar.is-active .app-loading-bar__fill {
  width: 82%;
}

.app-loading-bar.is-complete .app-loading-bar__fill {
  width: 100%;
}

.listing-shell .listing-action-button {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid #e2e8f0;
  border-radius: .75rem;
  background: #ffffff;
  padding: .65rem 1rem;
  font-size: .82rem;
  font-weight: 900;
  color: #334155;
  transition: all .18s ease;
}

.listing-shell .listing-action-button:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.listing-shell .listing-primary-action {
  border-color: #059669;
  background: #059669;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(5, 150, 105, .18);
}

.listing-shell .listing-primary-action:hover {
  border-color: #047857;
  background: #047857;
  color: #ffffff;
}

.pwa-install-button {
  position: fixed;
  left: calc(20px + env(safe-area-inset-left, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 999px;
  background: #059669;
  color: #ffffff;
  padding: 12px 16px;
  max-width: min(230px, calc(100vw - 40px));
  box-sizing: border-box;
  font: 900 13px/1.2 Arial, sans-serif;
  box-shadow: 0 18px 40px rgba(5, 150, 105, 0.26);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.pwa-install-button.is-visible {
  display: inline-flex;
}

.pwa-install-button:hover,
.pwa-install-button:focus-visible {
  background: #047857;
  box-shadow: 0 22px 48px rgba(5, 150, 105, 0.32);
  transform: translateY(-1px);
  outline: 0;
}

.pwa-install-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.pwa-install-button__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.pwa-install-button__icon::before,
.pwa-install-button__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.pwa-install-button__icon::before {
  top: 3px;
  width: 2px;
  height: 8px;
  border-radius: 999px;
}

.pwa-install-button__icon::after {
  top: 9px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
}

.pwa-install-modal-open {
  overflow: hidden;
}

.pwa-install-prompt {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background: rgba(15, 23, 42, 0.54);
  padding: 18px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.pwa-install-prompt.is-open {
  display: flex;
  opacity: 1;
}

.pwa-install-dialog {
  width: min(100%, 460px);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
  padding: 20px;
  font-family: Arial, sans-serif;
  transform: translateY(18px);
  transition: transform 180ms ease;
}

.pwa-install-prompt.is-open .pwa-install-dialog {
  transform: translateY(0);
}

.pwa-install-dialog__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pwa-install-dialog__mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #059669;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(5, 150, 105, 0.24);
}

.pwa-install-dialog h2 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.pwa-install-dialog p {
  margin: 7px 0 0;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.pwa-install-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.pwa-install-dialog__actions button {
  min-height: 42px;
  border-radius: 11px;
  padding: 0 14px;
  font: 900 13px/1.2 Arial, sans-serif;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pwa-install-dialog__actions button:hover,
.pwa-install-dialog__actions button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.pwa-install-dialog__dismiss {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
}

.pwa-install-dialog__dismiss:hover,
.pwa-install-dialog__dismiss:focus-visible {
  background: #f8fafc;
  border-color: #94a3b8;
}

.pwa-install-dialog__accept {
  border: 1px solid #059669;
  background: #059669;
  color: #ffffff;
}

.pwa-install-dialog__accept:hover,
.pwa-install-dialog__accept:focus-visible {
  background: #047857;
  border-color: #047857;
}

.pwa-install-dialog__accept:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.global-bug-report-button {
  position: fixed;
  right: calc(88px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  border: 0;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  padding: 12px 16px;
  max-width: min(180px, calc(100vw - 108px));
  box-sizing: border-box;
  font: 800 13px/1.2 Arial, sans-serif;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-bug-report-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.68);
  padding: 18px;
}

.global-bug-report-overlay.is-open {
  display: flex;
}

.global-bug-report-modal {
  width: min(100%, 520px);
  border-radius: 16px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
  font-family: Arial, sans-serif;
}

.global-bug-report-modal h2 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.global-bug-report-modal p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.global-bug-report-modal textarea {
  margin-top: 14px;
  min-height: 130px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px;
  color: #0f172a;
  font: 700 14px/1.45 Arial, sans-serif;
  outline: none;
}

.global-bug-report-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.global-bug-report-actions button {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 16px;
  font: 900 13px/1 Arial, sans-serif;
  cursor: pointer;
}

.global-bug-report-cancel {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.global-bug-report-submit {
  border: 0;
  background: #059669;
  color: #fff;
}

.global-bug-report-message {
  display: none;
  margin-top: 12px;
  border-radius: 10px;
  padding: 10px 12px;
  font: 800 13px/1.4 Arial, sans-serif;
}

.global-bug-report-message.is-success {
  display: block;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.global-bug-report-message.is-error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

#cookieSettingsBtn {
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 640px) {
  .pwa-install-button {
    left: calc(12px + env(safe-area-inset-left, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    padding: 11px 14px;
    max-width: min(220px, calc(100vw - 92px));
    font-size: 12px;
  }

  .pwa-install-prompt {
    align-items: flex-end;
    padding: 12px;
  }

  .pwa-install-dialog {
    border-radius: 16px;
    padding: 17px;
  }

  .pwa-install-dialog__actions {
    grid-template-columns: 1fr;
  }

  .global-bug-report-button {
    right: calc(74px + env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 92px);
    padding: 11px 14px;
  }

  #cookieSettingsBtn {
    right: calc(14px + env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 340px) {
  .global-bug-report-button {
    right: calc(68px + env(safe-area-inset-right, 0px));
    max-width: calc(100vw - 82px);
    padding-inline: 12px;
    font-size: 12px;
  }

  #cookieSettingsBtn {
    right: calc(10px + env(safe-area-inset-right, 0px));
  }
}

body.app-theme-dark {
  background: #020617;
  color: #e5e7eb;
  color-scheme: dark;
}

body.app-theme-dark #app-root {
  background: #020617;
}

body.app-theme-dark #app-page {
  background: #020617;
}

body.app-theme-dark main,
body.app-theme-dark section {
  background-color: transparent;
}

body.app-theme-dark .bg-white,
body.app-theme-dark .bg-white\/50,
body.app-theme-dark .bg-white\/60,
body.app-theme-dark .bg-white\/70,
body.app-theme-dark .bg-white\/80,
body.app-theme-dark .bg-white\/90,
body.app-theme-dark .bg-white\/95,
body.app-theme-dark .bg-slate-50,
body.app-theme-dark .bg-slate-50\/50,
body.app-theme-dark .bg-slate-50\/70,
body.app-theme-dark .bg-slate-50\/80,
body.app-theme-dark .bg-slate-100\/50,
body.app-theme-dark .bg-slate-100\/70,
body.app-theme-dark .bg-gray-50,
body.app-theme-dark .bg-gray-50\/50,
body.app-theme-dark .bg-gray-50\/70,
body.app-theme-dark .bg-gray-100\/50,
body.app-theme-dark .bg-gray-100\/70 {
  background-color: #0f172a !important;
}

body.app-theme-dark .bg-slate-100,
body.app-theme-dark .bg-gray-100 {
  background-color: #1e293b !important;
}

body.app-theme-dark .from-white,
body.app-theme-dark .from-slate-50,
body.app-theme-dark .from-gray-50 {
  --tw-gradient-from: #0f172a var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgba(15, 23, 42, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

body.app-theme-dark .via-white,
body.app-theme-dark .via-slate-50,
body.app-theme-dark .via-gray-50 {
  --tw-gradient-to: rgba(15, 23, 42, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), #0f172a var(--tw-gradient-via-position), var(--tw-gradient-to) !important;
}

body.app-theme-dark .to-white,
body.app-theme-dark .to-slate-50,
body.app-theme-dark .to-gray-50,
body.app-theme-dark .to-slate-100,
body.app-theme-dark .to-gray-100 {
  --tw-gradient-to: #020617 var(--tw-gradient-to-position) !important;
}

body.app-theme-dark .bg-emerald-50,
body.app-theme-dark .bg-emerald-50\/50,
body.app-theme-dark .bg-emerald-50\/70,
body.app-theme-dark .bg-emerald-50\/80,
body.app-theme-dark .bg-emerald-100 {
  background-color: rgba(6, 78, 59, 0.38) !important;
}

body.app-theme-dark .bg-sky-50,
body.app-theme-dark .bg-sky-50\/50,
body.app-theme-dark .bg-sky-50\/70,
body.app-theme-dark .bg-blue-50,
body.app-theme-dark .bg-blue-50\/70 {
  background-color: rgba(12, 74, 110, 0.42) !important;
}

body.app-theme-dark .bg-rose-50,
body.app-theme-dark .bg-red-50,
body.app-theme-dark .bg-amber-50,
body.app-theme-dark .bg-yellow-50 {
  background-color: rgba(127, 29, 29, 0.28) !important;
}

body.app-theme-dark .border-slate-100,
body.app-theme-dark .border-slate-200,
body.app-theme-dark .border-gray-100,
body.app-theme-dark .border-gray-200,
body.app-theme-dark .border-emerald-100,
body.app-theme-dark .border-emerald-200,
body.app-theme-dark .border-sky-100,
body.app-theme-dark .border-sky-200,
body.app-theme-dark .border-blue-100,
body.app-theme-dark .border-blue-200 {
  border-color: #334155 !important;
}

body.app-theme-dark .text-slate-950,
body.app-theme-dark .text-slate-900,
body.app-theme-dark .text-gray-950,
body.app-theme-dark .text-gray-900,
body.app-theme-dark .text-slate-800,
body.app-theme-dark .text-gray-800 {
  color: #f8fafc !important;
}

body.app-theme-dark .text-slate-700,
body.app-theme-dark .text-gray-700,
body.app-theme-dark .text-slate-600,
body.app-theme-dark .text-gray-600,
body.app-theme-dark .text-slate-500,
body.app-theme-dark .text-gray-500 {
  color: #cbd5e1 !important;
}

body.app-theme-dark [class*="shadow"] {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.32) !important;
}

body.app-theme-dark input,
body.app-theme-dark select,
body.app-theme-dark textarea {
  background-color: #020617 !important;
  border-color: #334155 !important;
  color: #f8fafc !important;
}

body.app-theme-dark input::placeholder,
body.app-theme-dark textarea::placeholder {
  color: #94a3b8 !important;
}

body.app-theme-dark #site-header {
  border-color: #1e293b !important;
  background: rgba(15, 23, 42, 0.96) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25) !important;
}

body.app-theme-dark #site-header > div,
body.app-theme-dark #site-header nav,
body.app-theme-dark #site-header [data-nav-more-menu] {
  background-color: rgba(15, 23, 42, 0.96) !important;
}

body.app-theme-dark #site-header a,
body.app-theme-dark #site-header button {
  color: #e5e7eb;
}

body.app-theme-dark #site-header svg {
  color: #e5e7eb !important;
}

body.app-theme-dark #site-header .ring-white {
  --tw-ring-color: #0f172a !important;
}

body.app-theme-dark #site-header .bg-white,
body.app-theme-dark #site-header .bg-white\/90,
body.app-theme-dark #site-header .bg-white\/95 {
  background-color: rgba(15, 23, 42, 0.96) !important;
}

body.app-theme-dark #site-header .bg-slate-50,
body.app-theme-dark #site-header .bg-gray-50 {
  background-color: #1e293b !important;
}

body.app-theme-dark #site-header .text-slate-950,
body.app-theme-dark #site-header .text-slate-900,
body.app-theme-dark #site-header .text-gray-900 {
  color: #f8fafc !important;
}

body.app-theme-dark #site-header .text-slate-600,
body.app-theme-dark #site-header .text-gray-600 {
  color: #cbd5e1 !important;
}

body.app-theme-dark [data-nav-mobile-overlay] {
  background: rgba(2, 6, 23, 0.72) !important;
}

body.app-theme-dark [data-nav-mobile-panel] {
  border-color: #334155 !important;
  background: #0f172a !important;
  color: #e5e7eb !important;
}

body.app-theme-dark .listing-shell .listing-action-button,
body.app-theme-dark .listing-shell a.listing-action-button,
body.app-theme-dark .listing-shell button.listing-action-button,
body.app-theme-dark .listing-shell label.listing-action-button,
body.app-theme-dark .listing-shell summary.listing-action-button {
  display: inline-flex !important;
  min-height: 2.65rem !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  border: 1px solid #334155 !important;
  border-radius: .75rem !important;
  background: #111827 !important;
  padding: .65rem 1rem !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
  color: #f8fafc !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24) !important;
  transition: all .18s ease !important;
}

body.app-theme-dark .listing-shell .listing-action-button:hover,
body.app-theme-dark .listing-shell a.listing-action-button:hover,
body.app-theme-dark .listing-shell button.listing-action-button:hover,
body.app-theme-dark .listing-shell label.listing-action-button:hover,
body.app-theme-dark .listing-shell summary.listing-action-button:hover {
  border-color: #64748b !important;
  background: #020617 !important;
  color: #ffffff !important;
}

body.app-theme-dark .listing-shell .listing-primary-action,
body.app-theme-dark .listing-shell button.listing-primary-action,
body.app-theme-dark .listing-shell a.listing-primary-action {
  border-color: #059669 !important;
  background: #059669 !important;
  color: #ffffff !important;
}

body.app-theme-dark .listing-shell .listing-primary-action:hover,
body.app-theme-dark .listing-shell button.listing-primary-action:hover,
body.app-theme-dark .listing-shell a.listing-primary-action:hover {
  border-color: #047857 !important;
  background: #047857 !important;
  color: #ffffff !important;
}

body.app-theme-dark .listing-shell .listing-action-button.text-rose-600,
body.app-theme-dark .listing-shell .text-rose-600 {
  color: #fda4af !important;
}

body.app-theme-dark .listing-shell .text-emerald-700,
body.app-theme-dark .listing-shell .text-emerald-800,
body.app-theme-dark .listing-shell .text-emerald-900,
body.app-theme-dark .listing-shell .text-emerald-950 {
  color: #a7f3d0 !important;
}

body.app-theme-dark .listing-shell .text-sky-700,
body.app-theme-dark .listing-shell .text-sky-800,
body.app-theme-dark .listing-shell .text-sky-900,
body.app-theme-dark .listing-shell .text-sky-950 {
  color: #bae6fd !important;
}

body.app-theme-dark .listing-shell .border-emerald-100.bg-emerald-50\/60,
body.app-theme-dark .listing-shell .border-emerald-100.bg-emerald-50\/70,
body.app-theme-dark .listing-shell .border-emerald-100.bg-emerald-50,
body.app-theme-dark .listing-shell .border-emerald-200.bg-emerald-50 {
  border-color: rgba(52, 211, 153, .42) !important;
  background: rgba(6, 78, 59, .34) !important;
  color: #d1fae5 !important;
}

body.app-theme-dark .listing-shell .inline-flex.border-emerald-200.bg-white,
body.app-theme-dark .listing-shell .inline-flex.border-emerald-200[class*="bg-white"] {
  border-color: rgba(52, 211, 153, .38) !important;
  background: #0b2f27 !important;
  color: #a7f3d0 !important;
}

body.app-theme-dark .listing-shell .listing-contact-card #listingMessageForm {
  border-color: #334155 !important;
  background: #0f172a !important;
}

body.app-theme-dark .listing-shell .listing-contact-card textarea,
body.app-theme-dark .listing-shell .listing-contact-card input {
  border-color: #334155 !important;
  background: #020617 !important;
  color: #f8fafc !important;
}

body.app-theme-dark .contact-shell .rounded-3xl,
body.app-theme-dark .contact-shell .rounded-2xl {
  border-color: #334155 !important;
}

body.app-theme-dark .contact-shell .bg-white,
body.app-theme-dark .contact-shell .bg-slate-50 {
  background-color: #0f172a !important;
  color: #e5e7eb !important;
}

body.app-theme-dark .contact-shell label,
body.app-theme-dark .contact-shell .text-slate-700,
body.app-theme-dark .contact-shell .text-slate-600,
body.app-theme-dark .contact-shell .text-slate-500 {
  color: #dbeafe !important;
}

body.app-theme-dark .contact-shell .text-slate-950,
body.app-theme-dark .contact-shell .text-slate-900 {
  color: #f8fafc !important;
}

body.app-theme-dark .contact-shell .text-emerald-700,
body.app-theme-dark .contact-shell .text-emerald-800,
body.app-theme-dark .contact-shell .text-emerald-900 {
  color: #a7f3d0 !important;
}

body.app-theme-dark .contact-shell .border-emerald-200.bg-emerald-50 {
  border-color: rgba(52, 211, 153, .42) !important;
  background: rgba(6, 78, 59, .34) !important;
  color: #d1fae5 !important;
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.blog-content > :first-child {
  margin-top: 0;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin: 2rem 0 1rem;
  line-height: 1.2;
  font-weight: 900;
  color: #0f172a;
}

.blog-content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.blog-content h2 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.blog-content h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
}

.blog-content h4 {
  font-size: 1.2rem;
}

.blog-content h5 {
  font-size: 1.05rem;
}

.blog-content h6 {
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote,
.blog-content table,
.blog-content pre,
.blog-content figure {
  margin-top: 1rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.45rem;
}

.blog-content ul {
  list-style: disc;
}

.blog-content ol {
  list-style: decimal;
}

.blog-content li {
  margin-top: .35rem;
  padding-left: .2rem;
}

.blog-content li::marker {
  color: #059669;
  font-weight: 900;
}

.blog-content a {
  color: #047857;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-content strong,
.blog-content b {
  font-weight: 900;
  color: #0f172a;
}

.blog-content small {
  font-size: .85em;
  color: #64748b;
}

.blog-content mark {
  border-radius: .45rem;
  background: #fef3c7;
  color: #78350f;
  padding: .05rem .3rem;
}

.blog-content blockquote {
  border-left: 4px solid #10b981;
  border-radius: 0 1rem 1rem 0;
  background: #ecfdf5;
  padding: 1rem 1.25rem;
  color: #064e3b;
  font-weight: 700;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1rem;
  font-size: .95rem;
}

.blog-content th,
.blog-content td {
  border: 1px solid #e2e8f0;
  padding: .75rem;
  text-align: left;
  vertical-align: top;
}

.blog-content th {
  background: #f8fafc;
  color: #0f172a;
  font-weight: 900;
}

body.app-theme-dark .blog-content {
  border-color: #334155 !important;
  background: #0f172a !important;
  color: #cbd5e1;
}

body.app-theme-dark .blog-content h1,
body.app-theme-dark .blog-content h2,
body.app-theme-dark .blog-content h3,
body.app-theme-dark .blog-content h4,
body.app-theme-dark .blog-content h5,
body.app-theme-dark .blog-content h6,
body.app-theme-dark .blog-content strong,
body.app-theme-dark .blog-content b {
  color: #f8fafc;
}

body.app-theme-dark .blog-content small {
  color: #94a3b8;
}

body.app-theme-dark .blog-content mark {
  background: rgba(245, 158, 11, .24);
  color: #fde68a;
}

body.app-theme-dark .blog-content a {
  color: #6ee7b7;
}

body.app-theme-dark .blog-content li::marker {
  color: #34d399;
}

body.app-theme-dark .blog-content blockquote {
  border-left-color: #34d399;
  background: rgba(6, 78, 59, .34);
  color: #d1fae5;
}

body.app-theme-dark .blog-content th,
body.app-theme-dark .blog-content td {
  border-color: #334155;
}

body.app-theme-dark .blog-content th {
  background: #111827;
  color: #f8fafc;
}

.site-alerts {
  width: 100%;
}

.site-alert-slot--full {
  width: 100%;
}

.site-alert-slot__inner {
  width: 100%;
  padding: 0;
}

.site-alert {
  --site-alert-border: #bae6fd;
  --site-alert-bg: linear-gradient(135deg, #f0f9ff, #ffffff 56%, #ecfeff);
  --site-alert-text: #0f172a;
  --site-alert-muted: #475569;
  --site-alert-title: #0369a1;
  --site-alert-icon-bg: #0284c7;
  --site-alert-icon-fg: #ffffff;
  --site-alert-button-bg: #0f172a;
  --site-alert-button-fg: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--site-alert-border);
  border-radius: 18px;
  background: var(--site-alert-bg);
  color: var(--site-alert-text);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.site-alert::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  z-index: 0;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 36px;
  transform: rotate(-12deg);
  pointer-events: none;
}

.site-alert__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
}

.site-alert--width-full {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-alert--width-full .site-alert__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 15px 24px;
}

.site-alert__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--site-alert-icon-bg);
  color: var(--site-alert-icon-fg);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.site-alert__icon svg {
  width: 22px;
  height: 22px;
}

.site-alert__content {
  min-width: 0;
  flex: 1 1 auto;
}

.site-alert__title {
  margin: 0;
  color: var(--site-alert-title);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.site-alert__message {
  margin-top: 5px;
  color: var(--site-alert-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.site-alert__message p {
  margin: 0.35rem 0 0;
}

.site-alert__message p:first-child {
  margin-top: 0;
}

.site-alert__message b,
.site-alert__message strong {
  color: var(--site-alert-text);
  font-weight: 900;
}

.site-alert__message a,
.site-alert__message button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 8px 8px 0 0;
  border: 0;
  border-radius: 10px;
  background: var(--site-alert-button-bg);
  color: var(--site-alert-button-fg);
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.site-alert__message a:hover,
.site-alert__message a:focus-visible,
.site-alert__message button:hover,
.site-alert__message button:focus-visible {
  filter: brightness(0.96);
  outline: 0;
}

.site-alert__message hr {
  margin: 12px 0;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.site-alert__message ul,
.site-alert__message ol {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.site-alert__message li + li {
  margin-top: 0.25rem;
}

.site-alert--success {
  --site-alert-border: #a7f3d0;
  --site-alert-bg: linear-gradient(135deg, #ecfdf5, #ffffff 56%, #f0fdfa);
  --site-alert-title: #047857;
  --site-alert-icon-bg: #059669;
  --site-alert-button-bg: #047857;
}

.site-alert--warning {
  --site-alert-border: #fde68a;
  --site-alert-bg: linear-gradient(135deg, #fffbeb, #ffffff 56%, #fff7ed);
  --site-alert-title: #b45309;
  --site-alert-icon-bg: #f97316;
  --site-alert-button-bg: #c2410c;
}

.site-alert--danger {
  --site-alert-border: #fecaca;
  --site-alert-bg: linear-gradient(135deg, #fef2f2, #ffffff 56%, #fff1f2);
  --site-alert-title: #b91c1c;
  --site-alert-icon-bg: #dc2626;
  --site-alert-button-bg: #b91c1c;
}

.site-alert--neutral {
  --site-alert-border: #e2e8f0;
  --site-alert-bg: linear-gradient(135deg, #f8fafc, #ffffff 56%, #f1f5f9);
  --site-alert-title: #334155;
  --site-alert-icon-bg: #334155;
  --site-alert-button-bg: #334155;
}

.site-alert--variant-strip {
  --site-alert-border: #d1fae5;
  --site-alert-bg:
    linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(255, 255, 255, 0.98) 48%, rgba(240, 253, 250, 0.96)),
    repeating-linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0, rgba(16, 185, 129, 0.06) 1px, transparent 1px, transparent 18px);
  --site-alert-title: #065f46;
  --site-alert-icon-bg: #059669;
  --site-alert-button-bg: #020617;
}

.site-alert--variant-strip::after {
  right: 18px;
  bottom: 12px;
  width: 220px;
  height: 56px;
  border-color: rgba(16, 185, 129, 0.14);
  border-right: 0;
  border-radius: 28px 0 0 28px;
  transform: none;
}

.site-alert--variant-christmas {
  --site-alert-border: #fecaca;
  --site-alert-bg:
    linear-gradient(135deg, rgba(254, 242, 242, 0.98), rgba(255, 255, 255, 0.98) 48%, rgba(236, 253, 245, 0.98)),
    repeating-linear-gradient(135deg, rgba(185, 28, 28, 0.07) 0, rgba(185, 28, 28, 0.07) 1px, transparent 1px, transparent 18px);
  --site-alert-title: #b91c1c;
  --site-alert-icon-bg: #b91c1c;
  --site-alert-button-bg: #047857;
}

.site-alert--variant-christmas::after {
  border-color: rgba(4, 120, 87, 0.13);
}

.site-alert--variant-easter {
  --site-alert-border: #bbf7d0;
  --site-alert-bg:
    linear-gradient(135deg, rgba(240, 253, 244, 0.98), rgba(255, 255, 255, 0.98) 46%, rgba(254, 249, 195, 0.98)),
    repeating-linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0, rgba(14, 165, 233, 0.06) 1px, transparent 1px, transparent 18px);
  --site-alert-title: #047857;
  --site-alert-icon-bg: #10b981;
  --site-alert-button-bg: #0e7490;
}

.site-alert--variant-easter::after {
  border-color: rgba(250, 204, 21, 0.22);
}

.site-alert-admin-preview a,
.site-alert-admin-preview button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin: 6px 6px 0 0;
  border: 0;
  border-radius: 9px;
  background: #0f172a;
  color: #ffffff;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.site-alert-admin-preview hr {
  margin: 10px 0;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

body.app-theme-dark .site-alert {
  --site-alert-text: #f8fafc;
  --site-alert-muted: #cbd5e1;
  --site-alert-border: rgba(148, 163, 184, 0.28);
  --site-alert-bg: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
}

body.app-theme-dark .site-alert::after {
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .site-alert__inner,
  .site-alert--width-full .site-alert__inner {
    gap: 12px;
    padding: 14px 16px;
  }

  .site-alert__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 13px;
  }

  .site-alert__title {
    font-size: 13px;
  }

  .site-alert__message {
    font-size: 13px;
    line-height: 1.55;
  }
}

.android-release-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid #d1fae5;
  border-bottom: 1px solid #d1fae5;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(255, 255, 255, 0.98) 48%, rgba(240, 253, 250, 0.96)),
    repeating-linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0, rgba(16, 185, 129, 0.06) 1px, transparent 1px, transparent 18px);
}

.android-release-strip::before,
.android-release-strip::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.android-release-strip::before {
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 69%, rgba(16, 185, 129, 0.08) 69% 70%, transparent 70%),
    linear-gradient(280deg, transparent 0 76%, rgba(14, 165, 233, 0.07) 76% 77%, transparent 77%);
}

.android-release-strip::after {
  top: 10px;
  right: 22px;
  width: 220px;
  height: 64px;
  border: 1px solid rgba(16, 185, 129, 0.14);
  border-right: 0;
  border-radius: 32px 0 0 32px;
}

.android-release-strip__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  min-height: 84px;
  margin: 0 auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.android-release-strip__phone {
  position: relative;
  width: 74px;
  height: 128px;
  justify-self: center;
  margin-top: -42px;
  margin-bottom: -44px;
  border: 3px solid #0f172a;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  transform: rotate(-7deg);
  overflow: hidden;
}

.android-release-strip__phone::before {
  content: "";
  position: absolute;
  inset: 10px 8px 12px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(5, 150, 105, 0.96) 0 24px, transparent 24px),
    linear-gradient(160deg, #ecfdf5, #ffffff 54%, #d1fae5);
}

.android-release-strip__phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #cbd5e1;
  transform: translateX(-50%);
}

.android-release-strip__phone span {
  position: absolute;
  left: 18px;
  z-index: 1;
  border-radius: 8px;
  background: #10b981;
}

.android-release-strip__phone span:nth-child(1) {
  top: 18px;
  width: 28px;
  height: 4px;
  background: #ffffff;
}

.android-release-strip__phone span:nth-child(2) {
  top: 42px;
  width: 38px;
  height: 28px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(5, 150, 105, 0.18);
}

.android-release-strip__phone span:nth-child(3) {
  top: 78px;
  width: 30px;
  height: 22px;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(14, 165, 233, 0.18);
}

.android-release-strip__brandmark {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #059669;
  padding: 6px;
  box-shadow: 0 16px 30px rgba(5, 150, 105, 0.22);
}

.android-release-strip__brandmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.android-release-strip__copy {
  min-width: 0;
}

.android-release-strip__copy p {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.22;
}

.android-release-strip__copy span {
  display: block;
  margin-top: 4px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.android-release-strip__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.android-release-strip__play,
.android-release-strip__facebook {
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.android-release-strip__play {
  display: inline-flex;
  min-width: 150px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  background: #020617;
  color: #ffffff;
  padding: 0 14px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.android-release-strip__play:hover,
.android-release-strip__play:focus-visible {
  background: #111827;
  transform: translateY(-1px);
  outline: 0;
}

.android-release-strip__play svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.android-release-strip__play span {
  display: block;
  line-height: 1;
}

.android-release-strip__play small,
.android-release-strip__play strong {
  display: block;
}

.android-release-strip__play small {
  color: #cbd5e1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.android-release-strip__play strong {
  margin-top: 2px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.android-release-strip__facebook {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.20);
}

.android-release-strip__facebook:hover,
.android-release-strip__facebook:focus-visible {
  background: #1d4ed8;
  transform: translateY(-1px);
  outline: 0;
}

.android-release-strip__facebook svg {
  width: 21px;
  height: 21px;
}

body.app-theme-dark #site-header .android-release-strip {
  border-color: rgba(16, 185, 129, 0.24) !important;
  background:
    linear-gradient(135deg, rgba(6, 78, 59, 0.96), rgba(15, 23, 42, 0.98) 52%, rgba(8, 47, 73, 0.96)),
    repeating-linear-gradient(135deg, rgba(52, 211, 153, 0.08) 0, rgba(52, 211, 153, 0.08) 1px, transparent 1px, transparent 18px) !important;
}

body.app-theme-dark #site-header .android-release-strip__copy p {
  color: #f8fafc !important;
}

body.app-theme-dark #site-header .android-release-strip__copy span {
  color: #cbd5e1 !important;
}

body.app-theme-dark #site-header .android-release-strip__phone {
  border-color: #d1fae5;
  background: #0f172a;
}

@media (max-width: 900px) {
  .android-release-strip__inner {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .android-release-strip__phone {
    display: none;
  }

  .android-release-strip__brandmark {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .android-release-strip__inner {
    min-height: 0;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 12px 16px;
  }

  .android-release-strip__brandmark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .android-release-strip__copy p {
    font-size: 14px;
  }

  .android-release-strip__copy span {
    font-size: 12px;
  }

  .android-release-strip__actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
  }

  .android-release-strip__play {
    flex: 1 1 auto;
  }

  .android-release-strip__facebook {
    flex: 0 0 46px;
  }
}
