    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body{
      background:#252b87;
      min-height:100vh;
      display:flex;
      justify-content:center;
      align-items:center;
      overflow:hidden;
    }

    .container{
      width:390px;
      height:820px;
     background-image: url('card.png');
      border-radius:28px;
      position:relative;
      overflow:hidden;
      padding:20px;
    }

    .top-icons{
      display:flex;
      justify-content:space-between;
      position:relative;
      z-index:10;
    }

    .icon{
      width:42px;
      height:42px;
      border-radius:50%;
      background:#d9d9d9;
      display:flex;
      justify-content:center;
      align-items:center;
      font-size:20px;
      font-weight:bold;
      cursor:pointer;
    }

    .profile{
      position:relative;
      z-index:10;
      margin-top:40px;
      text-align:center;
      color:white;
    }

    .profile img{
      width:90px;
      height:90px;
      border-radius:50%;
      object-fit:cover;
      border:4px solid white;
    }

    .username{
      margin-top:15px;
      font-size:24px;
      font-weight:bold;
    }

    .desc{
      margin-top:5px;
      font-size:16px;
      font-weight:600;
    }

    .buttons{
      position:relative;
      z-index:10;
      margin-top:40px;
      display:flex;
      flex-direction:column;
      gap:20px;
    }

    .btn{
      background:#d6ef10;
      color:black;
      text-decoration:none;
      padding:22px;
      border-radius:10px;
      text-align:center;
      font-size:17px;
      font-weight:bold;
      position:relative;
      transition:0.2s;
    }

    .btn:hover{
      transform:scale(1.03);
    }

    .dots{
      position:absolute;
      right:15px;
      top:50%;
      transform:translateY(-50%);
      font-size:22px;
    }

    .footer-btn{
      position:absolute;
      bottom:80px;
      left:50%;
      transform:translateX(-50%);
      background:white;
      padding:18px 24px;
      border-radius:40px;
      font-weight:bold;
      z-index:10;
      box-shadow:0 5px 15px rgba(0,0,0,0.2);
    }

    .footer-links{
      position:absolute;
      bottom:30px;
      width:100%;
      text-align:center;
      font-size:13px;
      color:white;
      z-index:10;
    }