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

body {
  font-family: Poppins, sans-serif;
  background: linear-gradient(to right bottom, #134e4a, #0f172a);
  color: #f0fdfa;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 400px;
  margin-top: 40px;
}

.image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.personal-profile {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
  transition: transform 0.5s ease;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.personal-profile:hover {
  transform: scale(1.05) rotate(5deg);
}

.highlight {
  color: #2dd4bf;
  font-weight: bold;
}

.personal-container {
  text-align: center;
  margin-bottom: 30px;
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
  animation: slidefadeIn 1s ease-out forwards;
}

.name {
  font-size: 1.5rem;
  font-weight: bold;
}

.button-container {
  list-style: none;
  padding: 0;
  gap: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.button-container ul {
  list-style: none;
  width: 100%;
}

.button-container li {
  margin-bottom: 12px;
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: 0.3s;
  font-weight: 500;
}

.btn i {
  font-size: 1.4rem;
  position: absolute;
  left: 20px;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ddd;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.paw:hover {
  background-color: #06b6d4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
  border-color: #06b6d4;
}

.github:hover {
  background-color: #24292e;
  box-shadow: 0 0 15px rgba(36, 41, 46, 0.6);
  border-color: #24292e;
}

.youtube:hover {
  background-color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  border-color: #ff0000;
}

.instagram:hover {
  background-color: #e1306c;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
  border-color: #e1306c;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

footer p {
  letter-spacing: 1px;
}

/* Animations */
@keyframes slidefadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  animation: slidefadeIn 0.8s ease-out forwards;
  -webkit-animation: slidefadeIn 0.8s ease-out forwards;
}

.button-container li {
  opacity: 0;
  animation: slidefadeIn 0.5s ease-out forwards;
  -webkit-animation: slidefadeIn 0.5s ease-out forwards;
}

.button-container li:nth-child(1) {
  animation-delay: 0.1s;
}
.button-container li:nth-child(2) {
  animation-delay: 0.2s;
}
.button-container li:nth-child(3) {
  animation-delay: 0.3s;
}
.button-container li:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    width: 90%;
  }
  .btn {
    padding: 12px;
  }
}
