/* Apps grid layout */
.apps #apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 16px;
  padding: 16px;
  overflow-y: auto;   /* vertical scroll */
  max-height: calc(100% - 32px);
}

/* App card styling (boxed like games) */
.app-card {
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* App icon area */
.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  padding: 16px;
}

.app-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Title area */
.app-title {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--text);
  background: rgba(0,0,0,0.2);
}
