* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Google Sans", system-ui, sans-serif;
    font-size: 16px;
    color: #000000;
  }
  
  body {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Container */
  .card {
    width: 100%;
    max-width: 360px;
    padding: 24px;
    text-align: center;
  }
  
  /* Optional logo */
  .logo {
    height: 36px;
    margin-bottom: 24px;
  }
  
  /* Optional profile image */
  .avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
  }
  
  /* Text */
  .text {
    margin-bottom: 24px;
  }
  
  .name {
    font-weight: 600; /* Semibold */
  }
  
  .role {
    font-weight: 400; /* Regular */
  }
  
  /* Links */
  .links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .links a {
    text-decoration: none;
    border: 1px solid #000000;
    padding: 12px;
    border-radius: 8px;
    font-weight: 400;
  }