body {
  margin: 0;
  background: #0f0f12;
  color: white;
  font-family: Inter, sans-serif;
}

header {
  padding: 30px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

#app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.app-card {
  background: #1a1a1f;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: 0.2s;
  border: 1px solid #2a2a30;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  border-color: #4c4cff;
}

.app-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.app-name {
  font-size: 16px;
  font-weight: 500;
}
