.clubs {
  background: #111;
}

.clubs-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.club-card {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.club-card:hover {
  transform: translateY(-8px);
}

.club-poster {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.club-info {
  padding: 20px;
  text-align: center;
}

.club-info h3 {
  font-size: 24px;
  color: #3A66A3;
  margin-bottom: 15px;
}

.club-head {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
}

.club-head img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3A66A3;
}

.club-head p {
  font-size: 14px;
  color: #ccc;
  text-align: left;
}

.club-time {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.club-signup-btn {
  margin-top: 15px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: #3A66A3;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.club-signup-btn:hover {
  background: #2c4f82;
  transform: scale(1.05);
}