/* xat2.you — profile page styles */

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

body {
  background: #0f0f0f;
  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Avatar */
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
}

.avatar-placeholder {
  background: linear-gradient(135deg, #1e6b3b, #0d4a28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #2a5a3a;
}

/* Text */
.name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.handle {
  font-size: 15px;
  color: #888;
  margin-top: -8px;
}

.bio {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  max-width: 340px;
}

/* Action buttons */
.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.btn {
  display: block;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background: #1e8c4a;
  color: #fff;
}

.btn-secondary {
  background: #2a2a2a;
  color: #e8e8e8;
  border: 1px solid #3a3a3a;
}

/* Footer */
footer {
  margin-top: 8px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.powered { margin-top: 12px; }
.powered a { color: #1e8c4a; text-decoration: none; }
.powered a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .card { padding: 32px 20px; }
  .name { font-size: 20px; }
}
