/* ── Reset & base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: url("/assets/images/bg-wood.jpg") center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* ── App grid ── */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 120px);
  gap: 32px;
  justify-content: center;
  padding: 40px;
  max-width: 720px;
  width: 100%;
}

/* ── App card ── */
.app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease;
}

.app-card:hover {
  transform: scale(1.08);
}

.app-card img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-card span {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
}
