@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background-image: url('/img/background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  box-sizing: border-box;
}

.container {
  max-width: 900px;
  width: 90%;
  background: rgba(50, 50, 50, 0.7);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ffcc00;
  box-shadow: 0 0 15px rgba(255,204,0,0.5);
  object-fit: cover;
}

h1 {
  margin: 5px 0 0;
}

.subtitle {
  display: block;
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 5px;
}

p {
  margin: 5px 0 15px;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}

#page-title p {
  font-size: 2.5rem;
  margin: 0;
  color: #FFCC00;
  font-weight: 700;
}

#page-title p span {
  color: #ffffff;
  font-weight: 300;
}

.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  width: 100%;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: bold;
}

.links a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.social-icon {
  margin-right: 8px;
  font-size: 20px;
}

.logo img {
  width: 200px;
  height: auto;
  max-width: 100%;
}

.footer {
  font-size: 1.2rem;
  color: #bbb;
  margin-top: 15px;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .container {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
  }

  #page-title p {
    font-size: 2rem;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  .links {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .links a {
    font-size: 0.95rem;
    padding: 10px;
  }

  .footer {
    font-size: 1rem;
  }
}


@media (max-width: 520px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px;
  }

  .container {
    width: 100%;
    padding: 18px;
    margin: 0 auto;
  }

  #page-title p {
    font-size: 1.6rem;
  }

  span {
    margin-top: 8px;
  }

  .links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .links a {
    font-size: 0.9rem;
    padding: 10px;
  }

  .profile-img {
    width: 90px;
    height: 90px;
  }

  .footer {
    font-size: 0.9rem;
  }
}
