body {
  background: url('assets/background.jpg') center center/cover no-repeat,
    linear-gradient(135deg, #f7efe6 0%, #e8dbc9 100%);
  font-family: 'Quicksand', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: none;
  border-radius: 1.5rem;
  box-shadow: none;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #cfa77f;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(94, 63, 45, 0.18);
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #5a3c2f;
}

.bio {
  font-size: 1rem;
  text-align: center;
  color: #4d3429;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  background: rgba(255, 248, 240, 0.78);
  padding: 0.35rem 0.6rem;
  border-radius: 0.6rem;
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 6px rgba(94, 63, 45, 0.12);
}

.bio p {
  margin: 0.25rem 0;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link {
  display: block;
  width: 100%;
  text-align: center;
  background: #fffaf5;
  color: #6b4b3e;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 0;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(94, 63, 45, 0.14);
  transition: transform 0.08s, box-shadow 0.08s, background 0.2s, color 0.2s, border 0.2s;
}

.link:hover, .link:focus {
  background: #f3e4d6;
  color: #5a3c2f;
  box-shadow: 0 4px 16px rgba(94, 63, 45, 0.18);
}

@media (max-width: 400px) {
  .container {
    padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    max-width: 98vw;
  }
  .avatar {
    width: 72px;
    height: 72px;
  }
  h1 {
    font-size: 1.1rem;
  }
  .bio {
    font-size: 0.95rem;
  }
  .link {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}
