<!doctype html>
<html lang="ru">
<head>
    <meta charset="utf-8">
    <title>SeverPay Docs — архивная версия</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
        html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            background: #ffffff;
            overflow: hidden;
        }

        .archive-bar {
            height: 44px;
            box-sizing: border-box;
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #ffffff;
            background: #111827;
        }

        .archive-bar strong {
            font-weight: 600;
        }

        .archive-bar a {
            color: #ffffff;
            text-decoration: underline;
            white-space: nowrap;
        }

        .docs-frame {
            width: 100%;
            height: calc(100vh - 44px);
            border: 0;
            display: block;
        }

        @media (max-width: 768px) {
            .archive-bar {
                height: 56px;
                align-items: flex-start;
                flex-direction: column;
                justify-content: center;
                gap: 3px;
                font-size: 12px;
            }

            .docs-frame {
                height: calc(100vh - 56px);
            }
        }
    </style>
</head>
<body>
    <div class="archive-bar">
        <div>
            <strong>Архивная документация SeverPay.</strong>
            Актуальная версия доступна на основном сайте.
        </div>

        <a href="https://docs.severpay.io" target="_blank" rel="noopener">
            Открыть новую документацию
        </a>
    </div>

    <iframe
        class="docs-frame"
        src="https://betalux.gitbook.io/docs.severpay.io"
        title="SeverPay old documentation"
        referrerpolicy="no-referrer-when-downgrade"
        allow="clipboard-read; clipboard-write"
    ></iframe>
</body>
</html>