Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

<!DOCTYPE html>
<html lang="hi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join Our Telegram</title>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;600;700&display=swap" rel="stylesheet">
<style>
  :root {
    --gold: #FFD700;
    --orange: #FF6B00;
    --red: #FF2D00;
    --dark: #0A0A0A;
    --tg-blue: #2AABEE;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--dark);
    min-height: 100vh;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Animated bg */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,0,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255,45,0,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(42,171,238,0.08) 0%, transparent 60%);
    z-index: 0;
    animation: bgPulse 6s ease-in-out infinite alternate;
  }

  @keyframes bgPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
  }

  .container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 92%;
    text-align: center;
    animation: fadeUp 0.8s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Badge */
  .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  /* Headline */
  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 12vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 6px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  h1 span {
    background: linear-gradient(90deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Image card */
  .img-wrap {
    margin: 24px auto;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255,215,0,0.25);
    box-shadow:
      0 0 40px rgba(255,107,0,0.3),
      0 0 80px rgba(255,107,0,0.1),
      inset 0 0 30px rgba(0,0,0,0.4);
    animation: fadeUp 0.8s 0.3s ease both;
    position: relative;
  }

  .img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.7) 100%);
  }

  .img-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
  }

  .img-wrap:hover img {
    transform: scale(1.04);
  }

  /* Subtext */
  .sub {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.5;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .sub strong {
    color: var(--gold);
    font-weight: 700;
  }

  /* CTA Button */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--tg-blue) 0%, #1a85c0 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow:
      0 8px 32px rgba(42,171,238,0.4),
      0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
    animation: fadeUp 0.8s 0.5s ease both, pulse 2.5s 1.5s ease-in-out infinite;
    text-transform: uppercase;
  }

  .cta-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
      0 16px 48px rgba(42,171,238,0.55),
      0 4px 12px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #35c8ff 0%, var(--tg-blue) 100%);
  }

  .cta-btn:active {
    transform: translateY(0) scale(0.98);
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(42,171,238,0.4), 0 2px 8px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 8px 48px rgba(42,171,238,0.7), 0 2px 8px rgba(0,0,0,0.3); }
  }

  /* Telegram icon SVG inline */
  .tg-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  /* Members count */
  .members {
    margin-top: 18px;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    letter-spacing: 1px;
    animation: fadeUp 0.8s 0.6s ease both;
  }

  .members span {
    color: var(--gold);
    font-weight: 700;
  }

  /* Decorative lines */
  .lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .lines::before, .lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,107,0,0.2), transparent);
    top: 0;
  }
  .lines::before { left: 20%; }
  .lines::after { right: 20%; }
</style>
</head>
<body>

<div class="lines"></div>

<div class="container">
  <div class="badge">🔥 Exclusive Access</div>

  <h1>Jalwa <span>Game</span><br>Community</h1>

  <div class="img-wrap">
    <img src="https://jalwagamesonline.net/wp-content/uploads/2026/01/How-to-Play-Jalwa-Game.webp" alt="Jalwa Game" loading="eager" />
  </div>

  <p class="sub">
    <strong>Daily Tips, Tricks & Winning Strategies</strong><br>
    Hamare Telegram group mein join karo aur exclusive updates pao!
  </p>

  <a href="https://t.me/+E0_6g7x_6r9lNDI1" target="_blank" class="cta-btn">
    <svg class="tg-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path d="M22 2L11 13" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M22 2L15 22L11 13L2 9L22 2Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    Join Our Telegram
  </a>

  <p class="members">🟢 Join Now — <span>Free Forever</span></p>
</div>

</body>
</html>