body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 20px;
  background: #f4f6fa;
}

.container {
  max-width: 1600px;
  margin: auto;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.name {
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px dashed #ccc;
  cursor: text;
  padding: 4px;
  min-height: 20px;
}

a {
  display: inline-block;
  padding: 6px 12px;
  background:#03072d;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

a:hover {
  background: #0b911f;
}
