<!DOCTYPE html>
<html lang="fa">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>تعرفه پنل های نمایندگی</title>
    <link href="https://fonts.googleapis.com/css2?family=Lalezar&display=swap" rel="stylesheet">
    <style>
        body {
            font-family: 'Lalezar', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            padding-bottom: 10%; /* فاصله 10 درصد از پایین */
        }

        header {
            text-align: center;
            margin: 40px 0;
            font-weight: bold;
            font-size: 36px;
            color: #2c3e50;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        }

        .container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 0 20px;
            animation: fadeIn 1s ease-in-out;
        }

        .panel {
            background-color: #fff;
            border-radius: 15px;
            border: 2px solid #e0e0e0;
            padding: 25px;
            width: 250px;
            text-align: center;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .panel:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
        }

        .panel h3 {
            font-size: 26px;
            color: #34495e;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .panel p {
            font-size: 18px;
            color: #7f8c8d;
            margin: 8px 0;
        }

        .price {
            font-size: 22px;
            color: #e74c3c;
            font-weight: bold;
            margin-top: 20px;
            text-align: center;
            background-color: #f9c74f;
            padding: 10px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
            direction: rtl;
        }

        .price:hover {
            background-color: #ff9f1c;
        }

        .buy-btn {
            margin-top: 20px;
            padding: 12px 20px;
            background-color: #3498db;
            color: #fff;
            font-size: 18px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .buy-btn:hover {
            background-color: #2980b9;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    </style>
</head>
<body>

<header>
    تعرفه پنل های نمایندگی
</header>

<div class="container">
    <div class="panel">
        <h3>پنل نمایندگی 30 کاربر</h3>
        <p>پلن اول</p>
        <p>یک ماهه</p>
        <p>امکان ساخت نامحدود اکانت تست</p>
        <p class="price">500,000 تومان</p>
        <a href="https://t.me/vpn_newsadmin" target="_blank">
            <button class="buy-btn">خرید و پشتیبانی</button>
        </a>
    </div>

    <div class="panel">
        <h3>پنل نمایندگی 50 کاربر</h3>
        <p>پلن دوم</p>
        <p>یک ماهه</p>
        <p>امکان ساخت نامحدود اکانت تست</p>
        <p class="price">750,000 تومان</p>
        <a href="https://t.me/vpn_newsadmin" target="_blank">
            <button class="buy-btn">خرید و پشتیبانی</button>
        </a>
    </div>

    <div class="panel">
        <h3>پنل نمایندگی 100 کاربر</h3>
        <p>پلن سوم</p>
        <p>یک ماهه</p>
        <p>امکان ساخت نامحدود اکانت تست</p>
        <p class="price">1,200,000 تومان</p>
        <a href="https://t.me/vpn_newsadmin" target="_blank">
            <button class="buy-btn">خرید و پشتیبانی</button>
        </a>
    </div>

    <div class="panel">
        <h3>پنل نمایندگی 200 کاربر</h3>
        <p>پلن چهارم</p>
        <p>یک ماهه</p>
        <p>امکان ساخت نامحدود اکانت تست</p>
        <p class="price">2,000,000 تومان</p>
        <a href="https://t.me/vpn_newsadmin" target="_blank">
            <button class="buy-btn">خرید و پشتیبانی</button>
        </a>
    </div>
</div>

</body>
</html>
