/* 授权应用总览：与全站浅蓝导航、白卡风格一致 */

body.page-app-catalog {
  --app-brand-cyan: #2bb0ff;
  --app-brand-red: #e94545;
  --app-brand-yellow: #ffc933;
  --app-card-bg: #fff;
  --app-card-border: rgba(91, 155, 213, 0.14);
  --app-card-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  --app-hero-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --app-catalog-control-active: var(--nav-link-active);
  --app-catalog-control-accent: var(--nav-highlight);
  --app-catalog-control-success: var(--primary);
}

html[data-theme='dark'] body.page-app-catalog {
  --app-brand-cyan: #54c8ff;
  --app-brand-red: #fb7185;
  --app-brand-yellow: #fbbf24;
  --app-card-bg: var(--main-bg-color, #2a2c30);
  --app-card-border: rgba(126, 184, 230, 0.18);
  --app-card-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
  --app-hero-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

/* 顶区：深色氛围 + 三色光晕（浅色 / 深色全站主题下均保持此款） */
.page-app-catalog .app-catalog-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: clamp(0.9rem, 2.2vw, 1.2rem) clamp(1rem, 2.8vw, 1.35rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(43, 176, 255, 0.16), transparent 42%),
    radial-gradient(circle at 82% 0%, rgba(255, 201, 51, 0.18), transparent 40%),
    radial-gradient(circle at 72% 92%, rgba(233, 69, 69, 0.16), transparent 45%),
    linear-gradient(145deg, #0b1220 0%, #05070c 62%, #0d111f 100%);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--app-hero-shadow);
}

.page-app-catalog .app-catalog-hero::before {
  content: '';
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 30% 30%, rgba(43, 176, 255, 0.12), transparent 45%),
    radial-gradient(circle at 78% 25%, rgba(255, 201, 51, 0.1), transparent 50%);
  opacity: 0.85;
  pointer-events: none;
}

.app-catalog-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: nowrap;
}

.app-catalog-hero-line {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  min-width: 0;
  flex: 1 1 auto;
}

.app-catalog-hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.88);
  white-space: nowrap;
}

.app-catalog-hero-kicker::before {
  content: '';
  width: 22px;
  height: 6px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 3px 50%, var(--app-brand-red) 2.8px, transparent 3px),
    radial-gradient(circle at 11px 50%, var(--app-brand-cyan) 2.8px, transparent 3px),
    radial-gradient(circle at 19px 50%, var(--app-brand-yellow) 2.8px, transparent 3px);
}

.app-catalog-hero-title {
  flex-shrink: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  color: #f8fafc;
  white-space: nowrap;
}

.app-catalog-hero-title::after {
  display: none;
}

.app-catalog-hero-desc {
  flex: 1 1 auto;
  min-width: 8rem;
  margin: 0;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(248, 250, 252, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-catalog-hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  flex-shrink: 0;
}

.app-catalog-stat {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  white-space: nowrap;
}

.app-catalog-stat--muted {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.07);
}

.app-catalog-stat:nth-child(2) {
  border-color: rgba(43, 176, 255, 0.32);
}

.app-catalog-stat:nth-child(3) {
  border-color: rgba(255, 201, 51, 0.36);
}

.app-catalog-stat-num {
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1;
  color: #f8fafc;
}

.app-catalog-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.78);
}

@media (max-width: 991.98px) {
  .app-catalog-hero-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .app-catalog-hero-line {
    flex: 1 1 100%;
    min-width: 100%;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .app-catalog-hero-desc {
    flex: 1 1 100%;
    min-width: 0;
    padding-left: 0;
    border-left: none;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  .app-catalog-hero-stats {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .page-app-catalog .app-catalog-hero {
    padding: 0.85rem 0.95rem;
  }

  .app-catalog-hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .app-catalog-hero-line {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem 0;
  }

  .app-catalog-hero-desc {
    padding-left: 0;
    border-left: none;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    max-width: none;
  }

  .app-catalog-hero-title {
    white-space: normal;
  }

  .app-catalog-hero-kicker {
    white-space: normal;
  }

  .app-catalog-hero-stats {
    gap: 0.35rem;
  }
}

/* 筛选条 */
.page-app-catalog .app-catalog-toolbar {
  margin-bottom: 0.85rem;
  padding: 0.6rem 0.75rem;
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.page-app-catalog .app-catalog-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}

.page-app-catalog .app-catalog-filter-label {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  opacity: 0.55;
}

.page-app-catalog .app-catalog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-app-catalog .app-catalog-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid rgba(91, 155, 213, 0.22);
  background: rgba(91, 155, 213, 0.04);
  color: #3d4a5c;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.page-app-catalog .app-catalog-filter-pill-icon {
  font-size: 0.78rem;
  opacity: 0.92;
  color: var(--nav-link-active);
}

.page-app-catalog .app-catalog-filter-pill span {
  color: inherit;
}

.page-app-catalog .app-catalog-filter-pill:hover:not(.is-active) {
  color: var(--nav-link-active);
  background: rgba(91, 155, 213, 0.1);
  border-color: rgba(91, 155, 213, 0.35);
}

.page-app-catalog .app-catalog-filter-pill:hover:not(.is-active) .app-catalog-filter-pill-icon {
  color: var(--nav-link-active);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-label {
  color: var(--main-color);
  opacity: 0.65;
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill {
  border-color: rgba(126, 184, 230, 0.22);
  background: rgba(126, 184, 230, 0.06);
  color: var(--main-color);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill-icon {
  color: var(--nav-link-active);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill:hover:not(.is-active) {
  color: var(--nav-link-active);
  background: rgba(126, 184, 230, 0.12);
  border-color: rgba(126, 184, 230, 0.38);
}

.page-app-catalog .app-catalog-filter-pill[data-purchase-filter='all'].is-active {
  color: #fff;
  background: var(--app-catalog-control-active);
  border-color: var(--app-catalog-control-active);
  box-shadow: 0 1px 6px rgba(91, 155, 213, 0.32);
}

.page-app-catalog .app-catalog-filter-pill[data-purchase-filter='all'].is-active .app-catalog-filter-pill-icon {
  color: #fff;
}

.page-app-catalog .app-catalog-filter-pill[data-purchase-filter='purchased'].is-active {
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: none;
}

.page-app-catalog .app-catalog-filter-pill[data-purchase-filter='purchased'].is-active .app-catalog-filter-pill-icon {
  color: #059669;
}

.page-app-catalog .app-catalog-filter-pill[data-purchase-filter='unpurchased'].is-active {
  color: #9f1239;
  background: rgba(225, 29, 72, 0.08);
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: none;
}

.page-app-catalog .app-catalog-filter-pill[data-purchase-filter='unpurchased'].is-active .app-catalog-filter-pill-icon {
  color: #be123c;
}

.page-app-catalog .app-catalog-filter-pill.is-active .app-catalog-filter-pill-icon {
  opacity: 1;
}

.page-app-catalog .app-catalog-filter-pill:active {
  transform: translateY(1px);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill[data-purchase-filter='purchased'].is-active {
  color: #6ee7d8;
  background: rgba(7, 193, 96, 0.16);
  border-color: rgba(52, 211, 153, 0.42);
  box-shadow: none;
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill[data-purchase-filter='purchased'].is-active .app-catalog-filter-pill-icon {
  color: #6ee7d8;
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill[data-purchase-filter='unpurchased'].is-active {
  color: #fda4af;
  background: rgba(225, 29, 72, 0.14);
  border-color: rgba(244, 114, 182, 0.4);
  box-shadow: none;
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill[data-purchase-filter='unpurchased'].is-active .app-catalog-filter-pill-icon {
  color: #fda4af;
}

html[data-theme='dark'] .page-app-catalog .app-catalog-filter-pill[data-purchase-filter='all'].is-active {
  box-shadow: 0 1px 8px rgba(126, 184, 230, 0.25);
}

.page-app-catalog .app-catalog-filter-empty {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.page-app-catalog .app-catalog-filter-empty.is-hidden {
  display: none;
}

@keyframes app-catalog-filter-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes app-catalog-card-filter-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  @keyframes app-catalog-card-filter-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

.page-app-catalog .app-catalog-grid-wrap {
  position: relative;
  border-radius: 6px;
}

.page-app-catalog .app-catalog-grid-wrap.is-filter-loading .app-catalog-grid {
  opacity: 0.45;
  filter: blur(1px);
  pointer-events: none;
}

.page-app-catalog .app-catalog-grid-wrap.is-filter-loading::after {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 3;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(91, 155, 213, 0.06) 40%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(91, 155, 213, 0.06) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: app-catalog-filter-shimmer 1.1s ease-in-out infinite;
  pointer-events: none;
}

html[data-theme='dark'] .page-app-catalog .app-catalog-grid-wrap.is-filter-loading::after {
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(126, 184, 230, 0.07) 40%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(126, 184, 230, 0.07) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  background-size: 200% 100%;
}

.page-app-catalog .app-catalog-grid-wrap.is-filter-loading::before {
  content: '';
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  margin: 0;
  border-radius: 50%;
  border: 2px solid rgba(91, 155, 213, 0.15);
  border-top-color: var(--nav-link-active);
  transform: translate(-50%, -50%);
  animation: app-catalog-filter-spin 0.65s linear infinite;
  pointer-events: none;
}

html[data-theme='dark'] .page-app-catalog .app-catalog-grid-wrap.is-filter-loading::before {
  border-color: rgba(126, 184, 230, 0.15);
  border-top-color: var(--nav-link-active);
}

.page-app-catalog .app-catalog-card.app-catalog-card--filter-in {
  animation: app-catalog-card-filter-in 0.44s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: var(--app-filter-stagger, 0ms);
}

.page-app-catalog .app-catalog-filter-pill:disabled {
  opacity: 0.65;
  cursor: wait;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-app-catalog .app-catalog-grid-wrap.is-filter-loading .app-catalog-grid {
    filter: none;
    opacity: 0.55;
  }

  .page-app-catalog .app-catalog-grid-wrap.is-filter-loading::after {
    animation: none;
    opacity: 0.5;
  }
}

.page-app-catalog .app-catalog-grid {
  transition: opacity 0.26s ease, filter 0.26s ease;
  display: grid;
  gap: clamp(0.75rem, 1.6vw, 1rem);
  margin-bottom: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .page-app-catalog .app-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .page-app-catalog .app-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .page-app-catalog .app-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 卡片：封面 + 正文，小图标叠于封面左下 */
.page-app-catalog .app-catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--app-card-bg);
  border-radius: 12px;
  border: 1px solid var(--app-card-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--app-card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-app-catalog .app-catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  border-color: rgba(91, 155, 213, 0.32);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  border-color: rgba(126, 184, 230, 0.32);
}

.app-catalog-card-media {
  position: relative;
  flex-shrink: 0;
  background: rgba(245, 247, 250, 0.8);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

html[data-theme='dark'] .app-catalog-card-media {
  background: rgba(0, 0, 0, 0.2);
}

.app-catalog-card-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.38) 0%, rgba(15, 23, 42, 0.06) 55%, transparent 100%);
}

html[data-theme='dark'] .app-catalog-card-media::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
}

.page-app-catalog .app-catalog-card-purchase-tag {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.page-app-catalog .app-catalog-card-purchase-tag--yes {
  color: #047857;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(7, 193, 96, 0.35);
}

.page-app-catalog .app-catalog-card:hover .app-catalog-card-purchase-tag--yes {
  border-color: rgba(6, 173, 86, 0.45);
}

.page-app-catalog .app-catalog-card-purchase-tag--yes::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary);
}

.page-app-catalog .app-catalog-card-purchase-tag--no {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.08);
}

.page-app-catalog .app-catalog-card:hover .app-catalog-card-purchase-tag--no {
  border-color: rgba(91, 155, 213, 0.22);
}

.page-app-catalog .app-catalog-card-purchase-tag--no::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--header-border);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-card-purchase-tag--yes {
  color: #6ee7d8;
  background: rgba(40, 42, 46, 0.88);
  border-color: rgba(52, 211, 153, 0.35);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-card-purchase-tag--no {
  color: var(--muted-color);
  background: rgba(40, 42, 46, 0.88);
  border-color: var(--muted-4-color);
}

.app-catalog-card-thumb {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: none;
  border-radius: 0;
  vertical-align: middle;
  position: relative;
  z-index: 0;
}

/* 应用图标：叠在封面左下角，与轮播同属一块视觉区域 */
.page-app-catalog .app-catalog-card-media .app-catalog-card-avatar {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.22);
  background: var(--header-bg);
  pointer-events: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-app-catalog .app-catalog-card:hover .app-catalog-card-media .app-catalog-card-avatar {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.28);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-card-media .app-catalog-card-avatar {
  border-color: rgba(42, 44, 48, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-card:hover .app-catalog-card-media .app-catalog-card-avatar {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.app-catalog-card-body {
  padding: 0.85rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.app-catalog-card-title {
  font-size: 0.97rem;
  font-weight: 700;
  margin: 0 0 0.42rem;
  letter-spacing: -0.012em;
  color: var(--text);
  line-height: 1.35;
}

.app-catalog-card-title-label {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

html[data-theme='dark'] .app-catalog-card-title {
  color: var(--main-color);
}

.app-catalog-card-desc {
  font-size: 0.8125rem;
  line-height: 1.58;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.app-catalog-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: auto;
  padding: 0.42rem 0.65rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nav-link-active);
  background: rgba(91, 155, 213, 0.07);
  border: 1px solid rgba(91, 155, 213, 0.22);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.page-app-catalog .app-catalog-card:hover .app-catalog-card-cta {
  background: rgba(91, 155, 213, 0.12);
  border-color: var(--nav-link-active);
}

.app-catalog-card-cta-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 6px;
  background: rgba(91, 155, 213, 0.15);
  color: var(--nav-link-active);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.page-app-catalog .app-catalog-card:hover .app-catalog-card-cta-icon-wrap {
  background: var(--nav-link-active);
  color: #fff;
}

.app-catalog-card-cta-icon {
  font-size: 0.72rem;
}

.page-app-catalog .app-catalog-card:hover .app-catalog-card-cta-icon {
  transform: translateX(2px);
}

html[data-theme='dark'] .app-catalog-card-cta {
  background: rgba(126, 184, 230, 0.08);
  border-color: rgba(126, 184, 230, 0.28);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-card:hover .app-catalog-card-cta {
  background: rgba(126, 184, 230, 0.14);
  border-color: var(--nav-link-active);
}

html[data-theme='dark'] .app-catalog-card-cta-icon-wrap {
  background: rgba(126, 184, 230, 0.18);
}

html[data-theme='dark'] .page-app-catalog .app-catalog-card:hover .app-catalog-card-cta-icon-wrap {
  background: var(--nav-link-active);
  color: #fff;
}

@keyframes app-catalog-filter-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
