<style>
  /* Tarjeta base (por si no la tienes) */
.btn-card, .btn-card * { box-sizing: border-box; }

.btn-card {
  width: 100%;
  max-width: 340px;
  margin: 16px auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  overflow: hidden;                 /* evita que algo se salga de los bordes */
  text-align: center;
}

.btn-card .soccer-emoji { font-size: 44px; margin-top: 18px; }

.btn-card .card-info {
  padding: 8px 20px 20px;
}

.btn-card .card-info strong {
  font-size: 18px;
  color: #111;
  display: block;
  margin-bottom: 4px;
}

.btn-card .domain{
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg,#0077ff,#00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.btn-card .desc{
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
}

/* BOTÓN mejorado con flecha SVG */
.btn-watch {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 260px;              /* ancho cómodo */
  margin: 0 auto 6px;            /* centrado */
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16a34a, #0d7a34);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.25s ease-in-out;
}

.btn-watch:hover {
  transform: scale(1.07);
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-watch svg {
  transition: transform 0.25s ease-in-out;
}

.btn-watch:hover svg {
  transform: translateX(4px);    /* flecha se desplaza a la derecha */
}

</style>