
  #tb-teams-category-section {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    padding: 60px 20px;
    -webkit-font-smoothing: antialiased;
  }

  #tb-teams-category-section .tb-teams-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  #tb-teams-category-section .tb-section-title {
    margin-bottom: 24px;
  }

  #tb-teams-category-section .tb-section-title h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
  }

  #tb-teams-category-section .tb-section-title p {
    margin: 0;
    font-size: 15px;
    color: #777;
  }

  #tb-teams-category-section .tb-tabs-header {
    display: flex;
    gap: 38px;
    margin-bottom: 42px;
    border-bottom: 2px solid #f0f0f0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #tb-teams-category-section .tb-tabs-header::-webkit-scrollbar {
    display: none;
  }

  #tb-teams-category-section .tb-tab-btn {
    border: 0;
    background: none;
    font-size: 20px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    padding: 0 0 13px;
    position: relative;
    white-space: nowrap;
    transition: color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  #tb-teams-category-section .tb-tab-btn:hover,
  #tb-teams-category-section .tb-tab-btn.active {
    color: #111;
  }

  #tb-teams-category-section .tb-tab-btn:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #111;
    transition: width 0.25s ease;
  }

  #tb-teams-category-section .tb-tab-btn.active:after {
    width: 100%;
  }

  #tb-teams-category-section .tb-square-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 20px;
  }

  #tb-teams-category-section .tb-square-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #111;
    transition: transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  #tb-teams-category-section .tb-square-item:hover {
    transform: translateY(-6px);
  }

  #tb-teams-category-section .tb-square-box {
    width: 110px;
    height: 110px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eaeaea;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.025);
    transition: all 0.25s ease;
    overflow: hidden;
  }

  #tb-teams-category-section .tb-square-item:hover .tb-square-box {
    border-color: #ccc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  }

  #tb-teams-category-section .tb-square-img {
    max-width: 68%;
    max-height: 68%;
    object-fit: contain;
    transition: transform 0.25s ease;
  }

  #tb-teams-category-section .tb-square-item:hover .tb-square-img {
    transform: scale(1.08);
  }

  #tb-teams-category-section .tb-square-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #444;
    text-align: center;
    line-height: 1.35;
  }

  @media (max-width: 1024px) {
    #tb-teams-category-section .tb-square-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 35px 15px;
    }
  }

  @media (max-width: 768px) {
    #tb-teams-category-section {
      padding: 42px 15px;
    }

    #tb-teams-category-section .tb-section-title h2 {
      font-size: 24px;
    }

    #tb-teams-category-section .tb-section-title p {
      font-size: 13px;
    }

    #tb-teams-category-section .tb-tabs-header {
      gap: 25px;
      margin-bottom: 30px;
    }

    #tb-teams-category-section .tb-tab-btn {
      font-size: 16px;
      padding-bottom: 11px;
    }

    #tb-teams-category-section .tb-square-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px 8px;
    }

    #tb-teams-category-section .tb-square-box {
      width: 90px;
      height: 90px;
      border-radius: 11px;
      margin-bottom: 10px;
    }

    #tb-teams-category-section .tb-square-img {
      max-width: 70%;
      max-height: 70%;
    }

    #tb-teams-category-section .tb-square-name {
      font-size: 11.5px;
    }
  }
