* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
  }

  .container {
    max-width: 932px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .header {
    margin-bottom: 1.5rem;
  }

  .header h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
  }

  .header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Tag Legend */
  .tag-legend {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .tag-legend h3 {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1rem;
  }

  .legend-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .legend-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .legend-category span {
    font-size: 0.8rem;
    color: #475569;
  }

  .software-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .software-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.2s ease;
  }

  .software-item.hidden {
    display: none;
  }

  .software-item:hover {
    transform: translateY(-2px);
  }

  .software-image {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    width: 120px;
  }

  .main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }

  .main-image-container img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .main-image-container:hover img {
    transform: scale(1.1);
  }

  .main-image-container::after {
    content: '🔍';
    position: absolute;
    right: 8px;
    top: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .main-image-container:hover::after {
    opacity: 1;
  }

  .thumbnail-strip {
    display: flex;
    gap: 4px;
    position: relative;
  }

  .thumbnail {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    object-fit: cover;
    border: 1px solid transparent;
  }

  .thumbnail:hover {
    opacity: 1;
  }

  .thumbnail.active {
    opacity: 1;
    border-color: #2563eb;
  }

  .thumbnail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
  }

  .thumbnail-strip:hover .thumbnail-nav {
    opacity: 1;
  }

  .nav-prev {
    left: -8px;
  }

  .nav-next {
    right: -8px;
  }

  .thumbnail-container {
    display: flex;
    gap: 4px;
    overflow: hidden;
    scroll-behavior: smooth;
  }

  /* Rest of the previous styles remain the same */

  @media (max-width: 600px) {
    .software-image {
      width: 100%;
      max-width: 200px;
    }

    .main-image-container img {
      width: 100%;
      height: auto;
    }

    .thumbnail-strip {
      justify-content: center;
    }
  }

  .software-content {
    flex: 1;
  }

  .software-content h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
  }

  .software-content p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
  }

  .tag i {
    font-size: 0.8rem;
  }

  .tag:hover {
    transform: translateY(-1px);
  }

  .tag[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem;
    background: #1a1a1a;
    color: white;
    font-size: 0.7rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
  }

  .tag[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
  }

  .tag-feature {
    background-color: #e0f2fe;
    color: #0369a1;
  }

  .tag-category {
    background-color: #f1f5f9;
    color: #475569;
  }

  .tag-price {
    background-color: #ecfdf5;
    color: #047857;
  }

  .tag.active {
    outline: 2px solid currentColor;
    outline-offset: 1px;
  }

  .software-content a {
    color: #2563eb;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .software-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    left: 0;
    bottom: -1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .software-content a:hover {
    color: #1e40af;
  }

  .software-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .software-content a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 2px;
  }

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    cursor: pointer;
  }

  .modal img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
  }

  @media (max-width: 600px) {
    .software-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .software-image img {
      width: 100%;
      height: auto;
      max-width: 200px;
    }

    .tags {
      justify-content: center;
    }

    .legend-categories {
      justify-content: center;
    }
  }
  
  .tag-language {
    background-color: #fef3c7;
    color: #92400e;
  }