/* styles.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.profile-container {
  text-align: center;
  padding: 3rem;
  background: #2a2a2a;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 420px;
  width: 100%;
  margin: 2rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.name {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

.bio {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.links a {
  display: inline-block;
  margin: 0 0.6rem;
  color: #4ea1ff;
  text-decoration: none;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

@media (max-width: 430px) {
  .profile-container {
    margin: 1rem;
  }
  .domain-valuation {
    font-size: 0.55rem;
  }
}
/* Domain valuation floating box */
.domain-valuation {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2a2a2a;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 0.67rem;
  z-index: 100;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.domain-valuation {
  animation: pulse 2s infinite ease-in-out;
}

.contact-button {
  display: inline-block;
  margin-left: 1rem;
  color: #4ea1ff;
  text-decoration: none;
  font-weight: 500;
}

.contact-button:hover {
  text-decoration: underline;
}