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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #fff;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, p {
  color: #fff;
}

/* Profile Section */
#profile {
  background: linear-gradient(45deg, #8548f4, #48F485);
  padding: 60px 20px;
  border-bottom: 2px solid #333;
}

.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid #fff;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Links Section */
#links {
  padding: 60px 20px;
  background-color: #1c1c1c;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.link-btn {
  background: #F16214;
  color: #fff;
  padding: 18px 36px;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 50px;
  width: 80%;
  max-width: 350px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(255, 106, 0, 0.3);
}

.link-btn:hover {
  background: #F48548;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.4);
}

.link-btn:active {
  transform: translateY(0);
}

/* Footer Section */
footer {
  background-color: #121212;
  color: #888;
  padding: 20px 0;
}

footer p {
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .link-btn {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .profile-img {
    width: 140px;
    height: 140px;
  }

  h1 {
    font-size: 2rem;
  }

  .link-btn {
    font-size: 1.1rem;
  }
}
