@layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .text-shadow {
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            .hover-scale {
                transition: transform 0.3s ease;
            }
            .hover-scale:hover {
                transform: scale(1.03);
            }
            .gradient-overlay {
                background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            }
        }
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Light.woff2') format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Inter';
  src: url('/template/pc/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
}
  @keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .animate-scroll {
    animation: scroll 30s linear infinite;
  }
    .tab-btn.active-tab {
    background: linear-gradient(to right, #ec4899, #d946ef);
    color: white;
    border-color: #ec4899;
  }
      .pagination li a {
        padding: 0.4rem 0.8rem;
        border-radius: 0.375rem;
        border: 1px solid #e5e7eb;
        transition: background 0.2s;
      }
      .pagination li a:hover {
        background-color: #e0f2fe;
      }
      .pagination li.active a {
        background-color: #3b82f6;
        color: white;
        border-color: #3b82f6;
      }
          .filter-btn {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    color: #1D2129;
    transition: all 0.2s ease-in-out;
  }
  .filter-btn:hover {
    background-color: #165DFF;
    color: white;
    border-color: #165DFF;
  }
  .filter-btn.active {
    background-color: #165DFF;
    color: white;
    border-color: #165DFF;
  }
  