/* Sayfa İçi Özel Stiller */
      .club-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }
      .club-card {
        background: var(--card2);
        border: 1px solid var(--neon);
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      .club-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(179, 85, 255, 0.4);
      }
      .club-img-wrapper {
        position: relative;
        height: 220px;
        overflow: hidden;
      }
      .club-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }
      .club-card:hover .club-img {
        transform: scale(1.1);
      }
      .club-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--gold);
        color: #000;
        padding: 5px 10px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 0.8rem;
        z-index: 2;
      }
      .club-content {
        padding: 1.5rem;
        text-align: center;
      }
      .club-title {
        color: var(--pink);
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
      }
      .club-loc {
        color: var(--mut);
        font-size: 0.9rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
      }
      .features {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
      }
      .feature-tag {
        background: rgba(179, 85, 255, 0.15);
        border: 1px solid rgba(179, 85, 255, 0.3);
        padding: 4px 10px;
        border-radius: 50px;
        font-size: 0.8rem;
        color: var(--txt);
      }
