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

:root {
  --primary: #16d9e3;
  --primary-dark: #0f766e;
  --black: #1f2937;
  --gray: #374151;
  --light-gray: #4b5563;
  --bg: whitesmoke;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: radial-gradient(
    circle 15.5rem at center,
    #16d9e3 0%,
    #30c7ec 47%,
    #46aef7 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: var(--black);
}

.profile-container {
  background: var(--bg);
  width: 100%;
  max-width: 26.25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15);
  padding: 2rem 1.8rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.profile-avatar img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  border: 0.25rem solid var(--primary);
  object-fit: cover;
  flex-shrink: 0;
}

.profile-name {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.bio-section {
  margin-bottom: 1.4rem;
}

.profile-bio {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--gray);
}

.time-section {
  margin-bottom: 1.6rem;
}

.current-time {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--light-gray);
}

.socials-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
}

.socials-section li {
  flex: 1 1 auto;
}

.socials-section a {
  display: block;
  background: #f1f5f9;
  padding: 0.5rem 1rem;
  border-radius: 624.9375rem;
  font-size: 0.93rem;
  color: var(--gray);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 500;
}

.socials-section a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-0.125rem);
}

.hobbies,
.dislikes {
  font-size: 1rem;
  margin: 1.2rem 0 0.75rem 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.hobbies-section ul,
.dislikes-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
}

.hobbies-section li,
.dislikes-section li {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray);
  border-left: 0.25rem solid var(--primary);
  transition: all 0.3s ease;
}

.hobbies-section li:hover,
.dislikes-section li:hover {
  border-left-color: var(--primary-dark);
  background: #f1f5f9;
  transform: translateX(0.375rem);
}

@media (max-width: 30rem) {
  .profile-container {
    padding: 1.8rem 1.4rem;
  }

  .profile-avatar img {
    width: 5rem;
    height: 5rem;
  }
}
