body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.messlink {
  color: #1db954;
  font-size: 1.2em;
  transition: color 0.3s;
}

.messlink:hover {
  color: #1de975;
}

.profile-img {
  width: 200px;
  height: 200px;
  border-radius: 25%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-img:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 2.5em;
  margin: 0;
  transition: color 0.3s;
}

h1:hover {
  color: #1db954;
}

.aka {
  font-size: 1.3em;
  margin-top: 10px;
  color: #b3b3b3;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  font-style: italic;
}

.aka span {
  font-weight: bold;
  color: #1db954;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 80%;
  margin: 10px 0;
  text-align: center;
}

.categories {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 20px;
  width: 100%;
  max-width: 1000px;
  justify-content: center;
}

.category {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.category:hover {
  transform: translateY(-3px);
}

.like {
  border-left: 5px solid #1db954;
}

.dislike {
  border-left: 5px solid #ff4d4d;
}

.category h2 {
  margin-bottom: 8px;
  font-size: 1.6em;
  color: #1db954;
}

.category p {
  font-size: 1.1em;
  text-align: left;
  color: #b3b3b3;
}

.social-container {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-links {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.social-links a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, background-color 0.3s, filter 0.3s;
  border-radius: 50%;
}

.social-links a:hover {
  background-color: rgba(29, 185, 84, 0.2);
  filter: blur(2px);
}

.social-links a img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

.social-links a:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .profile-img {
    width: 160px;
    height: 160px;
  }

  .categories {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .social-container {
    width: 100%;
  }

  .aka {
    font-size: 1.1em;
    padding: 6px 15px;
  }

  .category h2 {
    font-size: 1.4em;
  }

  .category p {
    font-size: 1em;
  }

  .social-links a {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 3em;
  }

  p {
    font-size: 1.3em;
  }

  .profile-img {
    width: 250px;
    height: 250px;
  }

  .categories {
    gap: 40px;
    max-width: 1200px;
  }

  .category h2 {
    font-size: 1.8em;
  }

  .category p {
    font-size: 1.3em;
  }

  .social-container {
    max-width: 1200px;
    padding: 30px 0;
  }
}

@media (min-width: 3840px) {
  h1 {
    font-size: 6em;
  }

  p {
    font-size: 3em;
  }

  .profile-img {
    width: 350px;
    height: 350px;
  }

  .categories {
    gap: 60px;
    max-width: 1600px;
  }

  .category h2 {
    font-size: 3.2em;
  }

  .category p {
    font-size: 2.5em;
  }

  .social-container {
    max-width: 1600px;
    padding: 40px 0;
  }

  .social-links a {
    width: 80px;
    height: 80px;
  }
}