﻿/* Profile page styles */

.profile-grid {
  align-items: start;
}

.profile-avatar-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.profile-avatar-display span {
  font-size: 5rem;
  line-height: 1;
}

.profile-avatar-display p {
  margin: 14px 0 0;
  font-weight: 700;
  color: var(--color-gold-light);
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 28px 0;
}

.hint-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .profile-avatar-display span {
    font-size: 4rem;
  }
}
