/* Basic page reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Poppins', sans-serif;
  background: #000000 url('bg.webp') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

/* Main container */
.container {
  max-width: 420px;
  margin: auto;
}

/* Profile image */
.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff7a18;
  margin-bottom: 20px;
}

/* Title */
h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #ff7a18;
}

/* Description */
p {
  font-size: 1rem;
  margin-bottom: 22px;
  color: #b5b5b5;
}

/* Links area */
.links .btn {
  display: block;
  margin: 10px auto;
  padding: 14px 0;
  width: 100%;
  background: #ff7a18;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.links .btn:hover {
  background: #ffb86b;
}

/* Icon spacing */
.links .btn i {
  margin-right: 8px;
}
