<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Премиум-домен greenapteka.ru выставлен на продажу</title>
    <style>
        :root {
            --primary: #2e7d32;
            --primary-hover: #1b5e20;
            --bg: #f4f7f6;
            --text-main: #2c3e50;
            --text-muted: #546e7a;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text-main);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }
        .card {
            background: #fff;
            padding: 50px 45px;
            border-radius: 16px;
            box-shadow: 0 12px 35px rgba(46, 125, 50, 0.08);
            max-width: 650px;
            width: 100%;
            text-align: center;
        }
        .status-badge {
            display: inline-block;
            background-color: #e8f5e9;
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        .domain-name {
            font-size: 34px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 0 15px 0;
            letter-spacing: -0.5px;
        }
        .description {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 30px;
        }
        .features {
            text-align: left;
            background: #f8faf9;
            border: 1px solid #e0e8e3;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 35px;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.5;
        }
        .feature-item:last-child {
            margin-bottom: 0;
        }
        .feature-icon {
            color: var(--primary);
            margin-right: 12px;
            font-size: 18px;
            font-weight: bold;
        }
        .actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
        .btn-primary {
            display: inline-block;
            background-color: var(--primary);
            color: #fff;
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.25);
            width: 80%;
            max-width: 400px;
        }
        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
        }
        .btn-secondary {
            display: inline-block;
            color: var(--text-muted);
            text-decoration: underline;
            font-size: 15px;
            transition: color 0.3s;
        }
        .btn-secondary:hover {
            color: var(--primary);
        }
        .footer-note {
            margin-top: 35px;
            font-size: 14px;
            color: #9aa5b1;
        }
        .footer-note a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        .footer-note a:hover {
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .card {
                padding: 35px 25px;
            }
            .domain-name {
                font-size: 28px;
            }
            .btn-primary {
                width: 100%;
            }
        }
    </style>
</head>
<body>
    <div class="card">
        <div class="status-badge">🟢 Домен продается</div>
        <h1 class="domain-name">greenapteka.ru</h1>
        
        <p class="description">
            Информационный портал «Зеленая Аптека» завершил свою работу. Мы оптимизируем портфель цифровых активов студии и передаем это звучное имя в новые руки.
        </p>

        <div class="features">
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div><strong>Возраст и траст:</strong> домен непрерывно находился в сети с июня 2008 года. Накоплен отличный естественный ссылочный профиль.</div>
            </div>
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div><strong>Идеальная история:</strong> сайт абсолютно «белый и пушистый». Никогда не попадал под фильтры и до последнего дня работал в Рекламной сети Яндекса (РСЯ).</div>
            </div>
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div><strong>Безопасная сделка:</strong> прямая продажа от владельца. Передача прав происходит официально через 100% безопасную, безбумажную сделку в магазине Reg.ru.</div>
            </div>
        </div>

        <div class="actions">
            <a href="https://www.reg.ru/domain/shop/lot/greenapteka.ru" class="btn-primary" target="_blank">Посмотреть цену на Reg.ru</a>
            <a href="https://serweb.ru/prodazha-domena-greenapteka/" class="btn-secondary" target="_blank">Почему мы закрыли сайт? Читать в блоге разработчиков</a>
        </div>

        <div class="footer-note">
            Связь напрямую с владельцем: <a href="mailto:info@greenapteka.ru">info@greenapteka.ru</a>
        </div>
    </div>
</body>
</html>