      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        overflow: hidden;
        background: #000;
      }

      #bg-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
      }

      .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
        z-index: -1;
      }

      .container {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
      }

      .card {
        width: 100%;
        max-width: 430px;
        padding: 35px 25px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.05);
        text-align: center;
        animation: fade 0.8s ease;
      }

      @keyframes fade {
        from {
          opacity: 0;
          transform: translateY(25px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .avatar-wrapper {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
      }

      .avatar {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.25);
      }

      .profile-name {
        font-size: 38px;
        font-weight: 700;
        color: #fff;
        margin-top: 10px;
        margin-bottom: 10px;
      }

      .status-dot {
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #25d366;
        margin-left: 4px;
        box-shadow: 0 0 15px #25d366;
      }

      .desc {
        font-size: 18px;
        color: #ffffff;
        font-weight: 500;
        margin-bottom: 10px;
      }

      .sub-desc {
        color: rgba(255, 255, 255, 0.75);
        font-size: 15px;
        margin-bottom: 30px;
      }

      .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 62px;
        border-radius: 18px;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        transition: 0.25s;
        margin-bottom: 14px;
      }

      .btn:hover {
        transform: translateY(-3px);
      }

      .whatsapp {
        background: #25d366;
        color: white;
      }

      .telegram {
        background: linear-gradient(135deg, #24a2f0, #0088cc);
        color: white;
      }

      .footer {
        margin-top: 15px;
        font-size: 13px;
        color: #bdbdbd;
      }