* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e1e2f, #2a2a40);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
}

.title {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  opacity: 0.7;
  margin-bottom: 30px;
}

.search-box input {
  width: 100%;
  max-width: 500px;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 16px;
  margin-bottom: 40px;
}

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

.card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 10px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.card span {
  display: block;
  font-size: 14px;
}
