.event-card {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.05);
  }
  
  .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
  }
  
  .event-image {
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .event-card:hover .event-image {
    transform: scale(1.03);
  }
  
  .event-title {
    color: #2c3e50;
    transition: color 0.3s ease;
  }
  
  .event-card:hover .event-title {
    color: #3498db;
  }
  
  .badge-pill {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35em 0.65em;
  }
  
  .pagination .page-item .page-link {
    border-radius: 50% !important;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #6c757d;
  }
  
  .pagination .page-item.active .page-link {
    background-color: #3498db;
    color: white;
  }
  
  .pagination .page-item:not(.active) .page-link:hover {
    background-color: #f8f9fa;
    color: #3498db;
  }
  
  .card-img-overlay .badge {
    opacity: 0.9;
  }
  
  .category-tabs {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  
  .nav-pills::-webkit-scrollbar {
    height: 4px;
  }
  
  .nav-pills::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border-radius: 4px;
  }
  
  .nav-pills .nav-link {
    white-space: nowrap;
    color: #6c757d;
    padding: 0.5rem 1rem;
    margin: 0 2px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .nav-pills .nav-link.active {
    background-color: #3498db;
    color: white;
    font-weight: 500;
  }
  
  .nav-pills .nav-link:not(.active):hover {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
  }
  
  .dropdown-item {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    margin: 0 0.25rem;
    width: auto;
  }
  
  .dropdown-item.active, .dropdown-item:active {
    background-color: #f8f9fa;
    color: #3498db;
  }
  
  @media (max-width: 767.98px) {
    .category-tabs {
      justify-content: flex-start;
    }
  }