body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: url('Vita.\(Houkai.3rd\).full.3950973.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
  }
  
  .container {
    text-align: center;
  }
  
  .profile {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
  }
  
  .profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 15px;
  }
  
  h1 {
    margin: 10px 0;
    font-size: 2rem;
  }
  
  p {
    margin: 5px 0;
    font-size: 1rem;
  }
  
  .social-icons {
    margin: 15px 0;
  }
  
  .social-icons a img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.3s;
  }
  
  .social-icons a img:hover {
    transform: scale(1.2);
  }
  
  .telegram-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #0088cc, #00bfff);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, box-shadow 0.3s;
  }
  
  .telegram-button:hover {
    background: linear-gradient(45deg, #00bfff, #0088cc);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
  }
