/* Links Page Container */
.links-container {
  padding: 4rem 5%;
  max-width: 600px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Profile Section */
.profile-section {
  text-align: center;
  margin-bottom: 3rem;
}

.profile-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #000;
}

.profile-bio {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
}

/* Link List */
.link-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Link Button */
.link-button {
  display: block;
  width: 100%;
  padding: 1.2rem 2rem;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: transparent;
  border: 2px solid #000;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  font-weight: 600;
}

.link-button:hover {
  background: #000;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .profile-title {
    font-size: 1.5rem;
  }

  .link-button {
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
  }
}
