:root {
  --green: #143d34;
  --gold: #c9a24a;
  --light: #f7f4ee;
  --text: #1f2a27;
  --muted: #6b756f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, var(--green), #0d2923);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.logo {
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 700;
  border: 3px solid var(--gold);
}

h1 {
  margin: 0;
  font-size: 26px;
  color: var(--green);
}

.profile p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.details {
  margin-top: 28px;
  text-align: left;
}

.detail-row {
  display: block;
  padding: 14px 0;
  border-top: 1px solid #eee7da;
  text-decoration: none;
  color: var(--text);
}

.detail-row span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.detail-row strong {
  font-size: 15px;
  word-break: break-word;
}

.actions {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.button {
  display: block;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  background: var(--green);
  color: var(--white);
}

.secondary {
  border: 1px solid var(--gold);
  color: var(--green);
  background: var(--light);
}

.footer {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.logo-frame {
  width: 170px;
  height: auto;
  margin: 0 auto 24px;
  background: transparent;
  overflow: visible;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 170px;
  height: auto;
  display: block;
}
.hidden {
  display: none;
}