<!--
--  Uploaded on : https://haxor.my.id/open/WSU.html
--  Official Web : https://prinsh.com
--  script-deface-generator.prinsh.com
-->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>1xBet Aviator Clone</title>
    <style>
        :root {
            --1xbet-green: #00b140;
            --1xbet-dark: #121212;
            --1xbet-gold: #ffd700;
        }

        body {
            background: var(--1xbet-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-family: 'Arial', sans-serif;
        }

        .game-container {
            width: 800px;
            background: #1a1a1a;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 0 30px rgba(0,0,0,0.6);
        }

        .multiplier-display {
            background: linear-gradient(45deg, #00260f, #001909);
            color: var(--1xbet-green);
            font-size: 72px;
            text-align: center;
            padding: 30px;
            margin: 20px 0;
            border: 3px solid var(--1xbet-green);
            border-radius: 8px;
            text-shadow: 0 0 15px var(--1xbet-green);
            position: relative;
            overflow: hidden;
        }

        .flight-path {
            height: 4px;
            background: var(--1xbet-green);
            margin: 40px 0;
            position: relative;
        }

        .airplane {
            position: absolute;
            left: -50px;
            top: -28px;
            font-size: 40px;
            animation: takeoff 4s infinite linear;
        }

        @keyframes takeoff {
            0% { left: -50px; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 100%; opacity: 0; }
        }

        .bet-panel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .bet-button {
            background: var(--1xbet-green);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .bet-button:hover {
            background: #008030;
            transform: translateY(-2px);
        }

        .balance-display {
            text-align: center;
            color: var(--1xbet-gold);
            font-size: 24px;
            margin: 20px 0;
        }

        .history-graph {
            display: flex;
            gap: 5px;
            margin-top: 20px;
            padding: 10px;
            background: #00000030;
            border-radius: 5px;
        }

        .history-bar {
            width: 30px;
            height: 40px;
            background: var(--1xbet-green);
            border-radius: 3px;
            opacity: 0.6;
        }
    </style>
</head>
<body>
    <div class="game-container">
        <div class="balance-display">
            BALANCE: ₹10,000
        </div>
        
        <div class="multiplier-display">
            <span class="multiplier">1.00x</span>
            <div class="airplane">✈️</div>
        </div>

        <div class="flight-path"></div>

        <div class="bet-panel">
            <button class="bet-button">BET ₹100</button>
            <button class="bet-button">BET ₹500</button>
            <button class="bet-button">BET ₹1000</button>
            <button class="bet-button">AUTO BET</button>
        </div>

        <div class="history-graph">
            <div class="history-bar" style="height: 30px"></div>
            <div class="history-bar" style="height: 60px"></div>
            <div class="history-bar" style="height: 45px"></div>
            <!-- Add more bars for history -->
        </div>
    </div>
</body>
</html>