<!DOCTYPE html>
<html lang="cs">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>shortroadtoretirement.com - Doména na prodej</title>
        <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #f8fafc;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .container {
            text-align: center;
            padding: 2rem;
            max-width: 600px;
        }
        .domain-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .tagline {
            font-size: 1.2rem;
            color: #94a3b8;
            margin-bottom: 2rem;
        }
        .price {
            font-size: 1.5rem;
            color: #22d3ee;
            margin-bottom: 2rem;
        }
        .contact-form {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 2rem;
        }
        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            color: #f8fafc;
            font-size: 1rem;
        }
        .contact-form textarea { resize: vertical; min-height: 80px; }
        .contact-form button {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            background: linear-gradient(90deg, #38bdf8, #818cf8);
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
        }
        .contact-form button:hover { opacity: 0.9; }
        .alert-success {
            background: rgba(34,197,94,0.15);
            border: 1px solid rgba(34,197,94,0.4);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            color: #4ade80;
        }
        .alert-error {
            background: rgba(248,113,113,0.15);
            border: 1px solid rgba(248,113,113,0.4);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            color: #f87171;
        }
        .alert-error ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: #94a3b8;
            cursor: pointer;
            text-align: left;
        }
        .terms-checkbox input[type="checkbox"] {
            margin-top: 0.2rem;
            accent-color: #38bdf8;
            flex-shrink: 0;
        }
        .terms-checkbox a {
            color: #38bdf8;
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1 class="domain-name">shortroadtoretirement.com</h1>
        <p class="tagline">Tato doména je na prodej</p>

        
        
        
        <div class="contact-form">
            <h2 style="margin-bottom: 1rem; font-size: 1.2rem;">Máte zájem? Kontaktujte nás</h2>
            <form method="POST" action="/contact">
                <input type="hidden" name="_token" value="eAwaZewoJCJsQptGD9nfw2fEVxJj3oNYcow6bpIa" autocomplete="off">                <input type="hidden" name="_ts" value="1788722987">
                
                <div style="position:absolute;left:-9999px;top:-9999px;" aria-hidden="true">
                    <input type="text" name="website" value="" tabindex="-1" autocomplete="off">
                </div>
                <input type="text" name="name" placeholder="Vaše jméno" value="" required>
                <input type="email" name="email" placeholder="Váš email" value="" required>
                <input type="text" name="offer" placeholder="Vaše nabídka (Kč)" value="" required>
                <textarea name="message" placeholder="Zpráva"></textarea>
                <label class="terms-checkbox">
                    <input type="checkbox" name="terms" value="1" >
                    <span>Souhlasím s <a href="https://superparking.cz/podminky" target="_blank">obchodními podmínkami</a> a beru na vědomí <a href="https://superparking.cz/gdpr" target="_blank">zásady ochrany osobních údajů</a>.</span>
                </label>
                <button type="submit">Odeslat nabídku</button>
            </form>
        </div>
    </div>
</body>
</html>
