* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

/* Fondo blur */
.background {
  position: fixed;
  inset: 0;
  background: url("../images/photo_27_2025-11-14_14-42-12.jpg") center center / cover no-repeat;
  filter: blur(18px) brightness(0.4);
  transform: scale(1.1);
  z-index: -1;
}

/* Centrar tarjeta */
.wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tarjeta principal */
.card {
  width: 320px;
  max-width: 90%;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 28px;
  padding: 18px 18px 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  text-align: center;
}

/* Foto */
.photo-wrapper {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 16px;
}

.photo {
  display: block;
  width: 100%;
  height: auto;
}

/* Nombre y user */
.name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.user {
  font-size: 14px;
  color: #bbbbbb;
  margin-bottom: 18px;
}

/* Botón */
.cta {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #ff6a88, #ff5c5c);
  color: #fff;
  margin-bottom: 14px;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.cta:active {
  transform: scale(0.97);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Dominio abajo */
.domain {
  font-size: 13px;
  color: #a0a0a0;
}
