* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #f2ede4;
}

/* ===== BG (imagem de fundo) ===== */
.bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0d0d0d;
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 100%);
  z-index: -1;
}

/* ===== Container ===== */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 55px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Header / Perfil ===== */
.profile {
  text-align: center;
  margin-bottom: 32px;
}

.avatar {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
  margin: 0 auto 14px;
}

.name {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.verified {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bio {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(242,237,228,.8);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* ===== Cards ===== */
.cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
  line-height: 0;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
}

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