VIP ODDS

 <!DOCTYPE html>

<html lang="sw">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>FREE TIPS + VIP ODDS</title>

<style>

  body {

    font-family: Arial, sans-serif;

    background: #f4f4f4;

    margin: 0;

    padding: 0;

  }


  /* Chat button */

  .chat-btn {

    display:block;

    background:#28a745;

    color:#fff;

    text-align:center;

    padding:15px;

    font-size:16px;

    font-weight:bold;

    text-decoration:none;

    margin:10px;

    border-radius:5px;

  }


  /* Box ya login */

  .login-box {

    background:#007bff;

    color:#fff;

    padding:20px;

    border-radius:10px;

    margin:10px;

    text-align:center;

  }

  .login-box input[type="password"] {

    padding:10px;

    width:80%;

    margin-bottom:10px;

    border:none;

    border-radius:5px;

    font-size:16px;

  }

  .login-box button {

    display:block;

    width:90%;

    margin:10px auto;

    padding:15px;

    font-size:16px;

    font-weight:bold;

    border:none;

    border-radius:5px;

    color:#fff;

    cursor:pointer;

  }

  .login-btn {

    background:#dc3545;

  }

  .lipia-btn {

    background:#28a745;

  }


  /* Border inayobadilika rangi */

  .color-border {

    border: 3px solid;

    border-image: linear-gradient(45deg, red, blue, green, yellow) 1;

    animation: borderRotate 5s linear infinite;

  }

  @keyframes borderRotate {

    0% {border-image-source: linear-gradient(45deg, red, blue, green, yellow);}

    50% {border-image-source: linear-gradient(135deg, yellow, green, blue, red);}

    100% {border-image-source: linear-gradient(45deg, red, blue, green, yellow);}

  }


  /* Tarehe & Saa */

  .datetime {

    text-align:center;

    margin-top:15px;

  }


  /* VIP section */

  .vip-section {

    max-width: 600px;

    margin: 20px auto;

    background: #fff;

    border-radius: 10px;

    padding: 20px;

    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  }

  .vip-section h2 {

    text-align: center;

    color: #d32f2f;

    margin-bottom: 15px;

  }

  .vip-card {

    background: #fafafa;

    border-left: 6px solid #007bff;

    border-radius: 8px;

    padding: 15px;

    margin-bottom: 15px;

  }

  .vip-card h4 {

    color: #333;

    margin: 0 0 5px;

  }

  .vip-card p {

    margin: 3px 0;

    font-size: 14px;

  }

  .status-pending {

    color: #007bff;

    font-weight: bold;

  }


  /* Spinner ya Pending */

  .spinner {

    display:inline-block;

    width:14px;

    height:14px;

    border:2px solid #007bff;

    border-top:2px solid transparent;

    border-radius:50%;

    animation: spin 0.8s linear infinite;

    margin-left:6px;

  }

  @keyframes spin {

    from {transform:rotate(0deg);}

    to {transform:rotate(360deg);}

  }


  /* Bottom nav */

  .bottom-nav {

    display:flex;

    justify-content:space-around;

    background:#007bff;

    padding:10px 0;

    position:fixed;

    width:100%;

    bottom:0;

    left:0;

  }

  .bottom-nav a {

    color:#fff;

    text-decoration:none;

    text-align:center;

    font-size:12px;

  }

</style>

</head>

<body>


<!-- Chat Button -->

<a href="#" class="chat-btn">BOFYA HAPA KUCHAT NASI</a>


<!-- Login Section -->

<div class="login-box">

  <h3>KARIBU FREE TIPS</h3>

  <p>INGIZA PASSWORD TULIZOKUTUMIA BAADA YA KULIPIA ILI KUONA MKEKA WA LEO 👇👇👇</p>

  <input type="password" placeholder="Enter Password">

  <button class="login-btn">LOGIN (kuona mkeka wa leo)</button>

  <button class="lipia-btn color-border">Lipia Hapa</button>

</div>


<!-- Date & Time -->

<div class="datetime">

  <p id="date"></p>

  <p id="time"></p>

</div>

Comments