<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>9in10Win Lotto - Where 9 in 10 Win</title>

    <style>

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

        body { 

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

            min-height: 100vh;

            color: #333;

        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        header { padding: 2rem 0; text-align: center; color: white; }

        .logo { font-size: 2.5rem; font-weight: bold; margin-bottom: 0.5rem; }

        .tagline { font-size: 1.2rem; opacity: 0.9; }

        main { 

            background: white; 

            margin: 2rem auto; 

            border-radius: 20px; 

            box-shadow: 0 20px 40px rgba(0,0,0,0.1); 

            overflow: hidden; 

        }

        .hero { 

            padding: 4rem 2rem; 

            text-align: center; 

            background: linear-gradient(45deg, #f8f9ff, #e8f0ff); 

        }

        .hero h1 { font-size: 3rem; margin-bottom: 1rem; color: #2c3e50; }

        .hero p { font-size: 1.3rem; color: #7f8c8d; margin-bottom: 2rem; }

        .stats { 

            display: grid; 

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 

            gap: 2rem; 

            margin: 2rem 0; 

        }

        .stat { 

            text-align: center; 

            padding: 1.5rem; 

            background: white; 

            border-radius: 15px; 

            box-shadow: 0 5px 15px rgba(0,0,0,0.05); 

        }

        .stat-number { 

            font-size: 2.5rem; 

            font-weight: bold; 

            color: #667eea; 

            margin-bottom: 0.5rem; 

        }

        .stat-label { 

            color: #7f8c8d; 

            text-transform: uppercase; 

            font-size: 0.9rem; 

            letter-spacing: 1px; 

        }

        .section { padding: 3rem 2rem; }

        .section h2 { 

            font-size: 2.2rem; 

            margin-bottom: 2rem; 

            text-align: center; 

            color: #2c3e50; 

        }

    </style>

</head>

<body>

    <header>

        <div class="container">

            <div class="logo">🎯 9in10Win Lotto</div>

            <div class="tagline">Building on Solana • Revolutionizing Lotteries</div>

        </div>

    </header>


    <main class="container">

        <section class="hero">

            <h1>Where 9 in 10 Players Win</h1>

            <p>Revolutionary inverse lottery protocol that flips traditional gaming on its head</p>

            

            <div class="stats">

                <div class="stat">

                    <div class="stat-number">9/10</div>

                    <div class="stat-label">Winners Per Round</div>

                </div>

                <div class="stat">

                    <div class="stat-number">$200</div>

                    <div class="stat-label">1 SOL (~$200)</div>

                </div>

                <div class="stat">

                    <div class="stat-number">200</div>

                    <div class="stat-label">Tickets Per Round</div>

                </div>

                <div class="stat">

                    <div class="stat-number">$20</div>

                    <div class="stat-label">Average Win</div>

                </div>

            </div>

        </section>


        <section class="section">

            <h2>How It Works</h2>

            <p style="text-align: center; font-size: 1.1rem; color: #666; max-width: 800px; margin: 0 auto;">

                Purchase a ticket for 1 SOL (~$200). Using Solana's verifiable randomness, we select 180 winners (90%) and 20 contributors (10%). Winners split the contributors' funds - approximately $3,600 distributed among 180 winners, giving each winner about $20.

            </p>

        </section>

    </main>

</body>

</html>