* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Georgia, serif; background: #FFFBF4; color: #1E1814; min-height: 100vh; display: flex; flex-direction: column; }

nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px; background: #FFFBF4;
  border-bottom: 1px solid rgba(30,24,20,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: bold; font-style: italic; color: #E4568B; text-decoration: none; }
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }

.hero {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 60px 24px; text-align: center;
}

.avatar-placeholder {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, #E4568B, #C03070);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: white; font-weight: bold;
}

.username {
  font-size: 28px; font-weight: bold; font-style: italic;
  color: #1E1814; margin-bottom: 6px;
}

.handle {
  font-family: 'Helvetica Neue', sans-serif; font-size: 15px;
  color: rgba(30,24,20,0.5); margin-bottom: 32px;
}

.open-btn {
  display: inline-block; background: #E4568B; color: white;
  border-radius: 12px; padding: 14px 32px; margin-bottom: 14px;
  font-family: 'Helvetica Neue', sans-serif; font-size: 16px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
}
.open-btn:hover { background: #C03070; }

.download-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px;
}
.store-link {
  font-family: 'Helvetica Neue', sans-serif; font-size: 13px;
  color: rgba(30,24,20,0.5); text-decoration: underline;
}

.note {
  font-family: 'Helvetica Neue', sans-serif; font-size: 13px;
  color: rgba(30,24,20,0.4); margin-top: 24px; max-width: 320px;
}
