* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #eef2f5;
  color: #111;
}

.page {
  height: 90%;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.card {
  width: 40%;
  border-radius: 18px;
  overflow: hidden;
  background: #1f2327;
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

.card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__namebar {
  background: #6f8690;
  padding: 14px 18px;
}

.card__name {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
}

.card__body {
  background: linear-gradient(#3a3f43, #232629);
  padding: 18px;
  color: #f2f4f5;
}

.card__line {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.35;
}

.card__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 6px;
}

.btn {
  appearance: none;
  border: 0;
  padding: 10px 16px;
  border-radius: 10px;
  background: #66727a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.25);
  min-width: 110px;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(1px);
}