html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px;
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  inset: -10px;
  background-image: url('imgs/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  z-index: -1;
  inset: -30px;
}

.pfp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.TitleText {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: white;
  font-size: 30px;
  margin: 0 0 6px;
}

.UnderTitleText {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: rgb(210, 208, 208);
  font-size: 17px;
  margin: 0 0 4px;
}

hr.divider-top,
hr.divider-bottom {
  border: none;
  border-top: 3px solid #bbb;
  width: 400px;
  max-width: 100%;
  margin: 20px 0;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 400px;
  max-width: 100%;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.link-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.link-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.button-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.link-button.full {
  width: 100%;
}

.link-button.half {
  flex: 1;
}