.apps-page {
  --apps-gap-y: var(--gf-gap-y);
  display: flex;
  flex-direction: column;
  gap: var(--apps-gap-y);
  padding: var(--apps-gap-y) 0 32px;
}

.apps-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apps-count {
  font-size: 12px;
  color: var(--gf-text-muted);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 16px;
}
.apps-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--gf-radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--gf-transition-fast), box-shadow var(--gf-transition-fast);
}

.apps-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--gf-shadow-soft);
}

.apps-item__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0,
    rgba(255, 255, 255, 0.4),
    rgba(148, 163, 184, 0.3)
  );
}

.apps-item__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apps-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.apps-item__name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.apps-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.apps-item__badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gf-text-muted);
}

.apps-empty {
  font-size: 13px;
  color: var(--gf-text-muted);
}
.apps-page .games-nav-section {
  margin: 0;
}
@media (min-width: 768px) {
  .apps-page {
    --apps-gap-y: 16px;
  }
}

@media (max-width: 768px) {
  .apps-page {
    padding-top: var(--gf-gap-y);
  }

  .apps-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}

@media (max-width: 520px) {
  .apps-grid {
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  }
}
#appsRecentlySection[hidden] {
  display: none !important;
}
.apps-floating-filters{
  display: flex;
  justify-content: center;
}

.apps-floating-filters .filters-bar{
  width: 100%;
}

#appsRecentlyList.games-nav-list{
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;  
}

#appsRecentlyList.games-nav-list > *{
  flex: 0 0 auto;
}
