* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #0f766e, #064e3b);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.container {
  width: 100%;
  max-width: 1000px;
  padding: 2rem;
}

.headline {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 1.5rem;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  text-decoration: none;
  color: white;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255, 255, 255, 0.12);
}

.card img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin-bottom: 0.8rem;
}

.title {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}
