@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@160..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #0B0B0B;
  min-height: 100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

body canvas {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
}

.container {
  text-align: center;
  padding: 64px 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.profile-pic {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 4px;
  pointer-events: none;
  -webkit-user-drag: none;
}

h1 {
  color: white;
  font-size: 36px;
  margin: 0 0 32px 0;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  max-width: 650px;
  margin: 0 auto;
}

.link-button {
  background-color: #151515;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 500;
  border: 1px solid #3B3B3B;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  max-width: 650px;
  box-sizing: border-box;
}

.link-button:hover {
  transform: scale(1.02);
  background-color: #282828;
  border-color: #696969;
}

.link-button:active {
  transform: scale(0.98);
}

@media (max-width: 680px) {
  .container {
    padding: 48px 16px;
  }
  
  .links {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 40px 12px;
  }
  
  .profile-pic {
    width: 80px;
    height: 80px;
  }
  
  h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .link-button {
    font-size: 16px;
    padding: 14px 20px;
  }
  
  .links {
    gap: 14px;
    padding: 8px;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}