    body {
      background: #FFFFFF !important;
      background-color: #FFFFFF !important;
      padding: 0;
      display: flex !important;
      flex-direction: column !important;
      min-height: 100vh !important;
    }

    .clubs-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 20px;
      flex: 1;
    }

    .page-header {
      margin-bottom: 32px;
    }

    .page-title {
      font-size: 32px;
      font-weight: 700;
      color: #2d2d2d;
      margin: 0 0 12px 0;
    }


    .search-box {
      margin-bottom: 24px;
    }

    .search-input {
      width: 100%;
      padding: 14px 20px;
      font-size: 16px;
      border: 1px solid #ddd;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.2s ease;
    }

    .search-input:focus-visible {
      outline: none;
      border-color: #84c5ed;
      box-shadow: 0 0 0 3px rgba(132, 197, 237, 0.18), 0 2px 12px rgba(0, 0, 0, 0.12);
    }

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

    .club-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      border: 1px solid #eee;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .club-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .club-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: linear-gradient(135deg, #84c5ed 0%, #b9d4eb 100%);
    }

    /* Image loading container */
    .club-image-container {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 16px 16px 0 0;
    }

    .club-image-container .club-image {
      border-radius: 0;
    }

    .club-image-container.img-loading-container::before {
      border-radius: 16px 16px 0 0;
    }

    .club-info {
      padding: 20px;
    }

    .club-name {
      font-size: 20px;
      font-weight: 700;
      color: #2d2d2d;
      margin: 0 0 8px 0;
    }

    .club-address {
      font-size: 14px;
      color: #666;
      margin: 0 0 12px 0;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .club-address i {
      margin-top: 2px;
      color: #84c5ed;
    }

    .venue-badge-available {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, #e8f4fd, #bae6fd);
      color: #0369a1;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    .venue-badge-available i {
      font-size: 11px;
    }

    .venue-description {
      font-size: 14px;
      color: #555;
      margin: 0 0 10px 0;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .club-details {
      display: flex;
      gap: 16px;
      font-size: 14px;
      color: #888;
    }

    .club-detail {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .empty-state {
      text-align: center;
      padding: 60px 20px;
    }

    .empty-state-icon {
      font-size: 64px;
      color: #ddd;
      margin-bottom: 16px;
    }

    .empty-state-text {
      font-size: 18px;
      color: #666;
      margin: 0 0 8px 0;
    }

    .empty-state-subtext {
      font-size: 14px;
      color: #999;
      margin: 0;
    }

    .loading {
      text-align: center;
      padding: 60px 20px;
      font-size: 18px;
      color: #666;
    }

    /* Toolbar */
    .clubs-toolbar {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 24px;
    }
    .toolbar-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid #e9ecef;
      background: #fff;
      color: #2c3e50;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .toolbar-btn:hover {
      background: #F7E226;
      border-color: #F7E226;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(247,226,38,0.3);
    }
    .toolbar-btn:active { transform: translateY(0); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
    .toolbar-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

    /* Modal overlay */
    .clubs-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1000000;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 24px;
      overflow-y: auto;
      animation: clModalIn 0.2s ease;
    }
    @keyframes clModalIn { from { opacity: 0; } to { opacity: 1; } }
    .clubs-modal {
      background: #fff;
      border-radius: 16px;
      width: 90vw;
      max-width: 900px;
      max-height: 85vh;
      overflow-y: auto;
      padding: 28px 24px 24px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      animation: clSlideIn 0.25s ease;
    }
    @keyframes clSlideIn {
      from { opacity: 0; transform: translateY(20px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .clubs-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .clubs-modal-title { font-size: 1.25rem; font-weight: 700; color: #2c3e50; margin: 0; }
    .clubs-modal-close {
      width: 36px; height: 36px; border-radius: 50%; border: none;
      background: #f0f0f0; color: #555; font-size: 20px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s ease;
    }
    .clubs-modal-close:hover { background: #e0e0e0; color: #222; }
    .clubs-modal > #cl-map-section,
    .clubs-modal > #cl-distance-filter-section {
      display: block !important; margin-top: 0 !important;
      box-shadow: none !important; border-radius: 0 !important; padding: 0 !important;
    }
    .clubs-modal #cl-search-map { height: 450px !important; }

    /* Address autocomplete */
    .address-autocomplete-wrap { position: relative; }
    .address-autocomplete-list {
      position: absolute; top: 100%; left: 0; right: 0;
      background: #fff; border: 1px solid #ddd; border-top: none;
      border-radius: 0 0 8px 8px; box-shadow: 0 6px 16px rgba(0,0,0,0.12);
      z-index: 500; max-height: 220px; overflow-y: auto;
      list-style: none; margin: 0; padding: 0;
    }
    .address-autocomplete-list li {
      padding: 10px 12px; cursor: pointer; font-size: 13px; color: #333;
      border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 8px;
    }
    .address-autocomplete-list li:last-child { border-bottom: none; }
    .address-autocomplete-list li:hover,
    .address-autocomplete-list li.active { background: #f0f7ff; }
    .address-autocomplete-list li i { color: #999; font-size: 12px; flex-shrink: 0; }

    /* Distance badge on cards */
    .cl-distance-badge {
      position: absolute; top: 10px; right: 10px;
      background: #F7E226; color: #2c3e50; padding: 6px 12px;
      border-radius: 20px; font-weight: 600; font-size: 0.85rem;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1); z-index: 1;
    }

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

      .page-title {
        font-size: 24px;
      }

      .clubs-modal {
        width: 96vw; max-height: 90vh;
        padding: 20px 16px 16px; border-radius: 12px;
      }
      .clubs-modal #cl-search-map { height: 300px !important; }
      .toolbar-btn { width: 42px; height: 42px; font-size: 16px; }
    }
