* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #111827;
  line-height: 1.5;
  padding: 40px 20px;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

header h1 {
  font-size: 2.75rem;
  font-weight: 700;
}

header p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #6b7280;
}

.app-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  justify-content: center; /* ✅ Center the grid items */
  max-width: 600px;         /* Optional: control max width */
  margin-left: auto;
  margin-right: auto;
}

.app-icon img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  /* 💥 Stronger Shadow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.app-icon img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); /* 💥 Even deeper on hover */
}

footer {
  margin-top: 50px;
  font-size: 0.95rem;
  color: #6b7280;
}

footer a {
  color: #3b82f6;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}