<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Bella</title>

    <style>

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

        body {

            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

            background: #0a0a0a;

            color: #fff;

            text-align: center;

            line-height: 1.5;

        }

        .hero {

            height: 100vh;

            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 

                        url('https://i.imgur.com/8cc6Phq.jpeg') center/cover no-repeat;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-direction: column;

        }

        h1 {

            font-size: 3.8em;

            margin-bottom: 10px;

            text-shadow: 0 2px 10px rgba(0,0,0,0.8);

        }

        p {

            font-size: 1.4em;

            max-width: 600px;

            margin: 0 auto 40px;

            text-shadow: 0 2px 8px rgba(0,0,0,0.8);

        }

        .btn {

            background: #ff00ff;

            color: white;

            border: none;

            padding: 18px 50px;

            font-size: 1.4em;

            border-radius: 50px;

            cursor: pointer;

            margin: 15px;

            text-shadow: none;

        }

        .btn:hover {

            background: #ff66ff;

            transform: scale(1.05);

        }

    </style>

</head>

<body>

    <div class="hero">

        <h1>Bella</h1>

        <p>Model & Exclusive Content Creator</p>

        <button class="btn" onclick="goToOnlyFans()">Access Exclusive Content</button>

    </div>


    <script>

        function goToOnlyFans() {

            if (confirm("You must be 18+ to continue.\n\nAre you 18 years of age or older?")) {

                window.location.href = "https://onlyfans.com/barbiebelladollz/c36?utm_source=jellybeanhub";

            }

        }

    </script>

</body>

</html>