/* Modal de Match visual estilo FutureMatch */
.modal.match-celebration {
  background: rgba(10, 10, 15, 0.98);
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.8);
  padding: 0;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 40px 32px 32px 32px;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.match-celebration h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.7rem;
  background: linear-gradient(90deg, #ff92c2 0%, #fc6076 45%, #ffb86c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff92c2;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.match-celebration h2 span {
  font-size: 2.1rem;
  animation: celebration-pulse 1.2s ease-in-out infinite alternate;
  display: inline-block;
}

@keyframes celebration-pulse {
  0% { transform: scale(1); filter: brightness(1); }
  100% { transform: scale(1.12) rotate(-7deg); filter: brightness(1.4); }
}

.match-users {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 1.5rem;
}

.match-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  border: 4px solid #fff3;
  box-shadow: 0 2px 16px 0 rgba(103,126,234,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 2.3rem;
}

.match-heart {
  font-size: 2.8rem;
  color: #fc6076;
  animation: heartBeat 1.1s ease-in-out infinite;
  margin: 0 0.5rem;
  filter: drop-shadow(0 0 8px #fc6076aa);
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3) rotate(-10deg); }
}

.match-celebration p, #matchText {
  font-size: 1.25rem;
  margin-bottom: 2.3rem;
  color: #bdbdc7;
  font-weight: 500;
}

.match-actions {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.match-actions .btn-secondary {
  background: linear-gradient(90deg, #23232b 0%, #44444d 100%);
  color: #fff;
  border: none;
  font-size: 1.15rem;
  padding: 1.1rem 0;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 #0002;
  margin-bottom: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.match-actions .btn-secondary:hover {
  background: linear-gradient(90deg, #44444d 0%, #23232b 100%);
  box-shadow: 0 4px 16px 0 #0004;
}

.match-actions .btn-primary {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  font-size: 1.18rem;
  padding: 1.15rem 0;
  border-radius: 16px;
  font-weight: 800;
  box-shadow: 0 2px 12px 0 #764ba277;
  margin-bottom: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.match-actions .btn-primary:hover {
  background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 6px 18px 0 #764ba299;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 24px 4vw 20px 4vw;
    max-width: 98vw;
  }
  .match-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
  .match-users {
    gap: 1.1rem;
  }
  .match-celebration h2 {
    font-size: 2rem;
  }
}
