:root {
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #2563eb;
  --accent: #10b981;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(16,185,129,.14), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(37,99,235,.16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fff 55%, #f8fafc 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 178px;
  display: block;
}

.nav-link {
  font-weight: 800;
  color: #334155;
}

.main {
  padding: 72px 0 52px;
}

.hero {
  text-align: center;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #0f766e;
  background: #ecfdf5;
  font-weight: 850;
  font-size: 13px;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 18px 0;
}

.hero p {
  font-size: 20px;
  color: var(--muted);
  margin: 0 auto 30px;
  max-width: 680px;
}

.search-box {
  width: min(650px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 18px;
  padding: 17px 18px;
  border-radius: 18px;
  background: #f8fafc;
}

.status-text {
  margin-top: 18px;
  color: #64748b;
  font-weight: 700;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.club-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.club-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #10b981, #2563eb);
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 18px;
  overflow: hidden;
}

.club-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-card h2 {
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.club-card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.club-meta {
  font-size: 14px;
  color: #475569;
  font-weight: 800;
  margin-bottom: 24px;
}

.btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #13b8a6);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(37,99,235,.22);
}

.empty-state {
  width: min(620px, 100%);
  margin: 42px auto 0;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
}

.empty-state h2 {
  font-size: 26px;
  margin: 0 0 8px;
}

.empty-state p {
  color: var(--muted);
  margin: 0;
}

.hidden {
  display: none;
}

.footer {
  padding: 38px 0;
  color: #64748b;
}

.footer-inner {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .club-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .club-grid {
    grid-template-columns: 1fr;
  }

  .main {
    padding-top: 48px;
  }

  .brand img {
    width: 150px;
  }

  .nav-link {
    font-size: 14px;
  }
}