<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
    <meta charset="UTF-8">
    <title>سایت در حال طراحی</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <!-- فونت فارسی -->
    <link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;600&display=swap" rel="stylesheet">

    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Vazirmatn', sans-serif;
        }

        body {
            min-height: 100vh;
            background: linear-gradient(135deg, #f5f7fa, #e4e8ee);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
        }

        .container {
            background: #fff;
            padding: 50px 40px;
            border-radius: 16px;
            text-align: center;
            max-width: 480px;
            width: 90%;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .logo {
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: #4f46e5;
            margin: 0 auto 30px;
            border-radius: 10px;
        }

        .message {
            font-size: 15px;
            line-height: 1.9;
            color: #555;
            margin-bottom: 40px;
        }

        .footer {
            font-size: 13px;
            color: #999;
        }

        @media (max-width: 480px) {
            .container {
                padding: 40px 25px;
            }
            .logo {
                font-size: 34px;
            }
        }
    </style>
</head>
<body>

<div class="container">
    <div class="logo">سایت در حال طراحی</div>
    <div class="subtitle">به‌زودی با ظاهری جدید بازمی‌گردیم</div>

    <div class="divider"></div>

    <div class="message">
        این وب‌سایت در حال طراحی و به‌روزرسانی است.<br>
        به‌زودی با امکانات و تجربه‌ای بهتر در دسترس شما خواهد بود.
   <br>
   </div>

    <div class="footer">
        © 2026 - تمامی حقوق محفوظ است    </div>
</div>

</body>
</html>
