/* HEADER STYLE FIX */
header {
  height: 86px;
  background: rgba(2, 6, 23, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  height: 70px;
  text-decoration: none;
}

.logo img {
  height: 92px;
  width: auto;
  display: block;
  margin-top: 10px;
  filter: drop-shadow(0 0 8px rgba(34,197,94,0.35));
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s;
}
.courts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 30px 0 70px;
    align-items: stretch;
}

.courts-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);

    display: flex;
    flex-direction: column;
    height: 100%;
}

.courts-desc {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 14px 0 22px;
    min-height: 110px;
}

.courts-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.courts-btn {
    display: inline-block;
    width: fit-content;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}
nav a:hover {
  color: #22c55e;
}