
  
  .section-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 18px;
    color: #8e8e8e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
  }
  
  .section-title i {
    margin-right: 10px;
    font-size: 16px;
  }
  
  .categories-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #3a3a3a #0a0a0a;
  }
  
  .categories-container::-webkit-scrollbar {
    height: 6px;
  }
  
  .categories-container::-webkit-scrollbar-track {
    background: #101722;
  }
  
  .categories-container::-webkit-scrollbar-thumb {
    background-color: #101722;
    border-radius: 3px;
  }
  
  .category-tab {
    padding: 8px 16px;
    background-color: #101722;
    border-radius: 20px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    color: #d4d4d4;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .category-tab:hover {
    background-color: #174d9f;
  }
  
  .category-tab.active {
    background-color: #e50914;
    font-weight: 600;
    color: white;
  }
  
  .category-events {
    margin-bottom: 25px;
  }
  
  .category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d4d4d4;
    padding-left: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .category-title i {
    color: #e50914;
  }
  
