<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="google-site-verification" content="rvW-8lm8INXAm_yAck6gNraLT0T6484d1gym8TVoyPk">
    <title>Green Cats</title>
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #000000;
            color: #FFFFFF;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .header {
            text-align: center;
            margin-bottom: 20px;
        }

        .header h1 {
            color: #32CD32;
            font-size: 36px;
            margin: 0;
        }

        .header p {
            color: #ADFF2F;
            font-size: 24px;
            margin: 5px 0 0;
        }

        .header p a {
            color: #6495ED;
            text-decoration: none;
        }

        .header p a:hover {
            text-decoration: underline;
        }

        .contacts {
            background-color: #1C1C1C;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            max-width: 400px;
            text-align: left;
        }

        .contacts h2 {
            margin-top: 0;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .contact-item i {
            font-size: 20px;
            margin-right: 10px;
            color: #8A2BE2;
        }

        .contact-item a {
            color: #FFFFFF;
            text-decoration: none;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        .working-hours {
            font-size: 14px;
            color: #AAAAAA;
            margin-bottom: 10px;
        }
    </style>
</head>
<body>
    <div class="header">
        <h1>Green Cats</h1>
        <p>Expensive, fast, and high-quality.</p>
        <p>For the full version of the website, open it in the mobile version.</p>
    </div>

    <div class="contacts">
        <p class="working-hours">Working hours from 10:00 to 18:00</p>

        <div class="contact-item">
            <i>&#128222;</i>
            <a href="tel:+994555023588">+994 555023588</a> - Hotline
        </div>

        <div class="contact-item">
            <i>&#9993;</i>
            <a href="mailto:admin@greencats.online">admin@greencats.online</a> - We respond within the day
        </div>

        <div class="contact-item">
            <i>&#128242;</i>
            <a href="https://wa.me/994555023588">Message us on WhatsApp</a> - We respond within the day
        </div>

        <div class="contact-item">
            <i>&#128231;</i>
            <a href="https://t.me/greencats">Message us on Telegram</a> - We respond within the day
        </div>
    </div>
</body>
</html>