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

body {
  font-family: "Inter", sans-serif;
  background: #f8f5f0;
  color: #2d2a26;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* fondo elegante */

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, #f0e7da 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, #e6d7b8 0%, transparent 40%);

  z-index: -1;
}

/* card */

.card {
  width: 90%;
  max-width: 420px;
  padding: 40px 30px;

  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);

  border-radius: 24px;

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);

  text-align: center;
}

/* header */

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid #c6a769;

  margin-bottom: 18px;
}

.card__title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
}
.card__title2 {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 300;
  opacity: 0.8;
}
.card__subtitle {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 14px;
  opacity: 0.7;
}

/* botones */

.links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links__button {
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 500;
  background: white;
  border: 1px solid #e6dfd5;
  color: #2d2a26;
  transition: all 0.3s ease;
}

.links__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.08);
}
.disabled {
  background: var(--color-disable);
  cursor: not-allowed;
}

/* botón principal */

.links__button--primary {
  background: #c6a769;
  color: white;
  border: none;
}

/* botón destacado */

.links__button--highlight {
  background: #efe7db;
  border: 1px solid #d8c9a7;
}

/* footer */

.card__footer {
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.7;
}
