<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Trampoline Culture Records</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        body {

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

            color: #FFFFFF;

            min-height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

            position: relative;

            overflow: hidden;

        }

        .background {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background-image: url('background.jpg');

            background-size: cover;

            background-position: center;

            filter: blur(8px);

            transform: scale(1.1);

            z-index: -2;

        }

        .overlay {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(10, 10, 10, 0.72);

            z-index: -1;

        }

        .container {

            max-width: 620px;

            padding: 40px 20px;

            text-align: center;

            position: relative;

            z-index: 1;

        }

        .logo {

            max-width: 380px;

            width: 100%;

            margin-bottom: 25px;

        }

        .tagline {

            font-size: 22px;

            color: #39FF14;

            margin-bottom: 45px;

            font-weight: 500;

            letter-spacing: 1px;

        }

        h1 {

            font-size: 28px;

            margin-bottom: 18px;

            font-weight: 600;

        }

        p {

            font-size: 17px;

            line-height: 1.7;

            color: #CCCCCC;

            margin-bottom: 35px;

        }

        .email {

            color: #FFFFFF;

            text-decoration: none;

            border-bottom: 1px solid #39FF14;

            padding-bottom: 4px;

            font-size: 18px;

        }

        .email:hover {

            color: #39FF14;

        }

        .footer {

            margin-top: 60px;

            font-size: 14px;

            color: #888888;

        }

    </style>

</head>

<body>


    <!-- Blurred Background -->

    <div class="background"></div>

    <div class="overlay"></div>


    <div class="container">

        <!-- Neon Logo -->

        <img src="logo.png" alt="Trampoline Culture Records" class="logo">


        <div class="tagline">We All Bounce Different</div>


        <h1>its a beautiful thing</h1>

        

        <p>

            Trampoline Culture Records is building its new home;<br>

            Scarce, bespoke music for film &amp; sync partnerships.

        </p>


        <p>

            :<br><br>

            <a href="mailto:label@trampolineculture.com" class="email">label@trampolineculture.com</a>

        </p>


        <div class="footer">

            Trampoline Culture Records © 2026

        </div>

    </div>


</body>

</html>