Sindbad~EG File Manager

Current Path : /home/montenegroput/www/
Upload File :
Current File : /home/montenegroput/www/READ_ME_CAREFULLY.php

<?php
// 9WOLF Seller Recruitment Landing Page
$pageTitle = "Become a Seller | 9WOLF Store";
$applyUrl  = "https://9wolf.pw";
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Join 9WOLF Store as a seller. Only 50 seller spots are currently available.">
    <title><?= htmlspecialchars($pageTitle, ENT_QUOTES, 'UTF-8'); ?></title>

    <style>
        :root {
            --bg: #07080d;
            --card: rgba(18, 21, 32, 0.92);
            --card-soft: rgba(25, 29, 44, 0.78);
            --text: #f5f7ff;
            --muted: #aab2c8;
            --accent: #8d5cff;
            --accent-2: #37d6ff;
            --success: #51e7a8;
            --border: rgba(255, 255, 255, 0.09);
            --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            font-family: Inter, Arial, Helvetica, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at top left, rgba(141, 92, 255, 0.18), transparent 32%),
                radial-gradient(circle at top right, rgba(55, 214, 255, 0.12), transparent 28%),
                linear-gradient(135deg, #06070b 0%, #0b0d15 45%, #080910 100%);
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.18;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(to bottom, black, transparent 85%);
        }

        .container {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
            padding: 48px 0 64px;
            position: relative;
            z-index: 1;
        }

        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 52px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            letter-spacing: 0.8px;
        }

        .brand-badge {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            font-size: 23px;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            box-shadow: 0 12px 35px rgba(141, 92, 255, 0.35);
        }

        .status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 999px;
            color: var(--muted);
            background: rgba(255, 255, 255, 0.035);
            font-size: 14px;
        }

        .status-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 15px rgba(81, 231, 168, 0.9);
        }

        .hero {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 28px;
            align-items: stretch;
        }

        .hero-main,
        .side-card,
        .info-card {
            border: 1px solid var(--border);
            background: var(--card);
            backdrop-filter: blur(18px);
            box-shadow: var(--shadow);
        }

        .hero-main {
            border-radius: 28px;
            padding: 54px;
            position: relative;
            overflow: hidden;
        }

        .hero-main::after {
            content: "9WOLF";
            position: absolute;
            right: -24px;
            bottom: -26px;
            font-size: clamp(70px, 10vw, 145px);
            font-weight: 900;
            letter-spacing: -8px;
            color: rgba(255, 255, 255, 0.025);
            pointer-events: none;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 22px;
            color: #d8ccff;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.4px;
        }

        h1 {
            max-width: 760px;
            font-size: clamp(44px, 7vw, 82px);
            line-height: 0.98;
            letter-spacing: -3px;
            margin-bottom: 24px;
        }

        h1 span {
            background: linear-gradient(90deg, #ffffff 10%, #b99cff 55%, #62e1ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .lead {
            max-width: 700px;
            color: var(--muted);
            font-size: clamp(17px, 2vw, 20px);
            line-height: 1.75;
            margin-bottom: 30px;
        }

        .stats {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 34px;
        }

        .stat {
            min-width: 150px;
            padding: 18px 20px;
            border: 1px solid var(--border);
            border-radius: 17px;
            background: rgba(255, 255, 255, 0.035);
        }

        .stat strong {
            display: block;
            font-size: 27px;
            margin-bottom: 4px;
        }

        .stat span {
            color: var(--muted);
            font-size: 13px;
        }

        .cta-row {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 24px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 800;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--accent), #5c7cff);
            box-shadow: 0 14px 36px rgba(119, 89, 255, 0.34);
        }

        .btn-secondary {
            color: var(--text);
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary:hover {
            box-shadow: 0 18px 44px rgba(119, 89, 255, 0.46);
        }

        .side-card {
            border-radius: 28px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background:
                linear-gradient(180deg, rgba(141, 92, 255, 0.12), transparent 45%),
                var(--card);
        }

        .side-card h2 {
            font-size: 24px;
            margin-bottom: 18px;
        }

        .category-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 11px;
            list-style: none;
        }

        .category-list li {
            display: flex;
            align-items: center;
            gap: 9px;
            min-height: 48px;
            padding: 11px 13px;
            border-radius: 13px;
            color: #e8ebf7;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 14px;
        }

        .limited {
            margin-top: 24px;
            padding: 18px;
            border-radius: 17px;
            background: linear-gradient(135deg, rgba(81, 231, 168, 0.12), rgba(55, 214, 255, 0.08));
            border: 1px solid rgba(81, 231, 168, 0.2);
        }

        .limited strong {
            display: block;
            font-size: 20px;
            margin-bottom: 5px;
            color: #c9ffe9;
        }

        .limited span {
            color: var(--muted);
            line-height: 1.55;
            font-size: 14px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin-top: 24px;
        }

        .info-card {
            border-radius: 24px;
            padding: 30px;
            background: var(--card-soft);
        }

        .info-card h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .check-list {
            list-style: none;
            display: grid;
            gap: 13px;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--muted);
            line-height: 1.55;
        }

        .check-list .icon {
            flex: 0 0 34px;
            height: 34px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            background: rgba(141, 92, 255, 0.12);
            border: 1px solid rgba(141, 92, 255, 0.2);
        }

        .final-banner {
            margin-top: 24px;
            padding: 36px;
            border-radius: 24px;
            border: 1px solid var(--border);
            background:
                linear-gradient(135deg, rgba(141, 92, 255, 0.18), rgba(55, 214, 255, 0.08)),
                var(--card);
            text-align: center;
            box-shadow: var(--shadow);
        }

        .final-banner h2 {
            font-size: clamp(28px, 4vw, 46px);
            margin-bottom: 12px;
        }

        .final-banner p {
            color: var(--muted);
            font-size: 18px;
            margin-bottom: 24px;
        }

        footer {
            text-align: center;
            color: #737c94;
            padding-top: 30px;
            font-size: 13px;
        }

        @media (max-width: 900px) {
            .hero,
            .grid {
                grid-template-columns: 1fr;
            }

            .hero-main {
                padding: 38px 28px;
            }

            .topbar {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 560px) {
            .container {
                width: min(100% - 20px, 1180px);
                padding-top: 24px;
            }

            .topbar {
                align-items: flex-start;
                gap: 16px;
            }

            .status {
                font-size: 12px;
                padding: 8px 11px;
            }

            h1 {
                letter-spacing: -2px;
            }

            .category-list {
                grid-template-columns: 1fr;
            }

            .stat {
                flex: 1 1 100%;
            }

            .btn {
                width: 100%;
            }

            .info-card,
            .side-card,
            .final-banner {
                padding: 24px;
            }
        }
    </style>
</head>
<body>
    <main class="container">
        <header class="topbar">
            <div class="brand">
                <div class="brand-badge">🐺</div>
                <div>9WOLF STORE</div>
            </div>

            <div class="status">
                <span class="status-dot"></span>
                Seller applications are open
            </div>
        </header>

        <section class="hero">
            <article class="hero-main">
                <div class="eyebrow">🚀 Sellers Wanted</div>

                <h1>Join <span>9WOLF Store</span></h1>

                <p class="lead">
                    We are now accepting new sellers on our marketplace.
                    9WOLF has been running for 4 years, with more than
                    <strong>10,000+ active customers</strong>.
                </p>

                <div class="stats">
                    <div class="stat">
                        <strong>4 Years</strong>
                        <span>Marketplace experience</span>
                    </div>

                    <div class="stat">
                        <strong>10,000+</strong>
                        <span>Active customers</span>
                    </div>

                    <div class="stat">
                        <strong>50 Only</strong>
                        <span>Seller spots available</span>
                    </div>
                </div>

                <div class="cta-row">
                    <a class="btn btn-primary" href="<?= htmlspecialchars($applyUrl, ENT_QUOTES, 'UTF-8'); ?>" target="_blank" rel="noopener noreferrer">
                        Become a Seller
                        <span>→</span>
                    </a>

                    <a class="btn btn-secondary" href="#requirements">
                        View Requirements
                    </a>
                </div>
            </article>

            <aside class="side-card">
                <div>
                    <h2>Sections We Need</h2>

                    <ul class="category-list">
                        <li>🌐 cPanel</li>
                        <li>🖥️ RDP</li>
                        <li>🐚 Shells</li>
                        <li>🔐 SSH / WHM</li>
                        <li>📨 Mailer</li>
                        <li>📧 SMTP</li>
                        <li>📊 Leads</li>
                        <li>📬 Webmails</li>
                        <li>👤 Accounts</li>
                        <li>📜 Scripts</li>
                        <li>📄 Pages</li>
                        <li>🐍 Python Sender</li>
                    </ul>
                </div>

                <div class="limited">
                    <strong>Limited Enrollment</strong>
                    <span>Only 50 sellers will be accepted for now. Join before all spots are filled.</span>
                </div>
            </aside>
        </section>

        <section class="grid" id="requirements">
            <article class="info-card">
                <h3>Seller Requirements</h3>

                <ul class="check-list">
                    <li><span class="icon">📦</span> Stable and regularly updated stock</li>
                    <li><span class="icon">⚡</span> Fast and reliable delivery</li>
                    <li><span class="icon">💬</span> Professional customer support</li>
                    <li><span class="icon">🔁</span> Replacement when required</li>
                </ul>
            </article>

            <article class="info-card">
                <h3>Why Sell With Us?</h3>

                <ul class="check-list">
                    <li><span class="icon">✅</span> Thousands of active buyers</li>
                    <li><span class="icon">✅</span> Trusted and established marketplace</li>
                    <li><span class="icon">✅</span> Easy-to-use seller panel</li>
                    <li><span class="icon">✅</span> Fast order management</li>
                    <li><span class="icon">✅</span> Integrated support system</li>
                </ul>
            </article>
        </section>

        <section class="final-banner">
            <h2>Bring Your Products.<br>We Bring the Buyers.</h2>
            <p>Secure your seller position before applications close.</p>

            <a class="btn btn-primary" href="<?= htmlspecialchars($applyUrl, ENT_QUOTES, 'UTF-8'); ?>" target="_blank" rel="noopener noreferrer">
                Apply Now at 9WOLF
                <span>↗</span>
            </a>
        </section>

        <footer>
            © <?= date('Y'); ?> 9WOLF Store. All rights reserved.
        </footer>
    </main>
</body>
</html>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists