<!DOCTYPE html>
<html lang="ru" class="light-mode">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Заведение приостановлено</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html, body {
            height: 100%;
            overflow-x: hidden;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: #f9fafb;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            color: #111827;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .container {
            background: white;
            border-radius: 0.75rem;
            padding: 3rem;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            border: 1px solid #e5e7eb;
            text-align: center;
        }
        .icon {
            width: 4rem;
            height: 4rem;
            background: #0ea5e9;
            color: white;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        h1 {
            color: #111827;
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        p {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .reason {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 1rem;
            margin-bottom: 1.5rem;
            text-align: left;
            border-radius: 0.25rem;
        }
        .reason-title {
            font-weight: 600;
            color: #92400e;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }
        .reason-text {
            color: #78350f;
            margin: 0;
            font-size: 0.875rem;
        }
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }
        .button-primary {
            background: #0ea5e9;
            color: white;
        }
        .button-primary:hover {
            background: #0284c7;
        }
        @media (max-width: 640px) {
            .container {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .icon {
                width: 3rem;
                height: 3rem;
                font-size: 1.5rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">⏸️</div>
        <h1>Заведение временно приостановлено</h1>
        <p>
            Ваше заведение было приостановлено из-за истечения подписки или превышения лимита активных заведений 
            для текущего тарифного плана.
        </p>
        <p>
            Для возобновления работы заведения повысьте тарифный план или 
            удалите другие активные заведения.
        </p>
        <div>
            <a href="https://poschitalis.ru/dashboard" class="button button-primary">
                Перейти в личный кабинет
            </a>
        </div>
    </div>
</body>
</html>