.tcg-result-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
  }

  /* Borde izquierdo degradado */
  .tcg-result-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C52110 0%, #333 50%, #5810c5 100%);
    z-index: 3;
    border-radius: 4px 0 0 4px;
    transition: width 0.22s ease;
  }

  .tcg-card-link:hover .tcg-result-card::before {
    width: 6px;
  }

  /* Hover sombra intensa */
  .tcg-card-link:hover .tcg-result-card {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
      0 12px 40px rgba(88,16,197,0.25),
      0 4px 12px rgba(197,33,16,0.15),
      inset 0 0 0 1px rgba(88,16,197,0.2);
  }

  /* Glow en hover */
  .tcg-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(197,33,16,0.05) 0%, rgba(88,16,197,0.05) 100%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
    z-index: 0;
  }

  .tcg-card-link:hover .tcg-card-glow {
    opacity: 1;
  }

  /* Imagen */
  .tcg-card-img-wrap {
    position: relative;
    z-index: 1;
    padding: 16px 16px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
  }

  .tcg-card-img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
    transition: filter 0.22s ease, transform 0.22s ease;
  }

  .tcg-card-link:hover .tcg-card-img {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 18px rgba(88,16,197,0.3));
  }

  /* Info */
  .tcg-card-info {
    position: relative;
    z-index: 1;
    padding: 8px 12px 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fff;
  }

  .tcg-card-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .tcg-card-price {
    font-size: 0.72rem;
    color: #888;
  }

  .tcg-card-price strong {
    color: #5810c5;
  }