* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    min-height: 100vh;
    background: #0b0b0b;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Hex Pattern Background */
  .bg-pattern {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(120deg, #111 25%, transparent 25%),
      linear-gradient(240deg, #111 25%, transparent 25%);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: -1;
  }
  
  /* Main Card */
  .card {
    width: 90%;
    max-width: 420px;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  }
  
  /* Profile */
  .profile img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid gold;
    object-fit: cover;
    margin-bottom: 12px;
  }
  
  /* Heading */
  h1 {
    font-size: 22px;
    color: gold;
    margin-bottom: 6px;
  }
  
  .trust {
    font-size: 14px;
    color: #bfbfbf;
    margin-bottom: 15px;
  }
  
  /* Badges */
  .badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  
  .badges span {
    background: #222;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
  }
  
  /* Telegram Button */
  .telegram-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0099ff, #0066ff);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    transition: 0.3s;
  }
  
  .telegram-btn:hover {
    transform: scale(1.03);
  }
  
  /* Features */
  .features {
    list-style: none;
    margin-bottom: 22px;
  }
  
  .features li {
    background: #1a1a1a;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  /* Highlight */
  .highlight {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .highlight span {
    display: block;
    font-size: 14px;
    margin-top: 5px;
  }
  