<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Roubinek.net</title>
  <meta name="description" content="Welcome to Roubinek.net — a simple, fast, and secure website." />

  <style>
    :root {
      --bg: #0f172a;
      --card: rgba(255, 255, 255, 0.08);
      --text: #f8fafc;
      --muted: #cbd5e1;
      --accent: #38bdf8;
      --accent-2: #818cf8;
      --border: rgba(255, 255, 255, 0.14);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.25), transparent 35%),
        var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .page {
      width: 100%;
      max-width: 1080px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 80px;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .badge {
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.06);
      color: var(--muted);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 14px;
    }

    main {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(44px, 8vw, 84px);
      line-height: 0.95;
      letter-spacing: -0.07em;
      margin-bottom: 24px;
    }

    .hero h1 span {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      font-size: 20px;
      line-height: 1.6;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 34px;
    }

    .buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .button {
      display: inline-block;
      text-decoration: none;
      color: #020617;
      background: var(--text);
      padding: 14px 20px;
      border-radius: 14px;
      font-weight: 700;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .button.secondary {
      color: var(--text);
      background: transparent;
      border: 1px solid var(--border);
    }

    .button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 32px;
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
    }

    .card h2 {
      font-size: 28px;
      margin-bottom: 16px;
      letter-spacing: -0.03em;
    }

    .card p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .info-list {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .info-list li {
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--muted);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .info-list strong {
      display: block;
      color: var(--text);
      margin-bottom: 4px;
    }

    footer {
      margin-top: 80px;
      color: var(--muted);
      font-size: 14px;
      text-align: center;
    }

    @media (max-width: 800px) {
      header {
        margin-bottom: 50px;
      }

      main {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 24px;
      }

      .hero p {
        font-size: 18px;
      }
    }
  </style>
</head>

<body>
  <div class="page">
    <header>
      <div class="logo">Roubinek.net</div>
      <div class="badge">New website coming soon</div>
    </header>

    <main>
      <section class="hero">
        <h1>A simple home for <span>Roubinek.net</span></h1>
        <p>
          This site is live, lightweight, and ready to grow. More information,
          updates, and resources will be added here soon.
        </p>

        <div class="buttons">
          <a class="button" href="/cdn-cgi/l/email-protection#c6afa8a0a986b4a9b3a4afa8a3ade8a8a3b2">Contact Us</a>
          <a class="button secondary" href="#about">Learn More</a>
        </div>
      </section>

      <section class="card" id="about">
        <h2>Fast. Clean. Secure.</h2>
        <p>
          Built as a simple static page for reliable hosting on Cloudflare Pages.
          No WordPress, no database, no unnecessary bloat.
        </p>

        <ul class="info-list">
          <li>
            <strong>Website</strong>
            Roubinek.net
          </li>
          <li>
            <strong>Status</strong>
            Online and ready for updates
          </li>
          <li>
            <strong>Hosting</strong>
            Cloudflare Pages
          </li>
        </ul>
      </section>
    </main>

    <footer>
      © <span id="year"></span> Roubinek.net. All rights reserved.
    </footer>
  </div>

  <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
    document.getElementById("year").textContent = new Date().getFullYear();
  </script>
</body>
</html>