    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Database Setup Required - MostVisitedBookmark</title>
        <style>
            body {
                font-family: 'Inter', system-ui, sans-serif;
                background: #0f0c1b;
                color: #e2e8f0;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 100vh;
                margin: 0;
            }
            .card {
                background: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(16px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 16px;
                padding: 40px;
                max-width: 500px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.5);
                text-align: center;
            }
            h1 {
                color: #a855f7;
                margin-top: 0;
                font-size: 24px;
            }
            p {
                line-height: 1.6;
                color: #94a3b8;
            }
            code {
                background: rgba(0, 0, 0, 0.3);
                padding: 4px 8px;
                border-radius: 4px;
                color: #f43f5e;
                font-family: monospace;
            }
            .btn {
                display: inline-block;
                margin-top: 20px;
                background: linear-gradient(135deg, #8b5cf6, #d946ef);
                color: white;
                text-decoration: none;
                padding: 12px 24px;
                border-radius: 8px;
                font-weight: bold;
                transition: transform 0.2s;
            }
            .btn:hover {
                transform: scale(1.05);
            }
        </style>
    </head>
    <body>
        <div class="card">
            <h1>Database Configuration Required</h1>
            <p>Welcome to <strong>MostVisitedBookmark</strong>. We could not connect to your MySQL database.</p>
            <p>Please verify your database credentials inside <code>config.php</code> and ensure the MySQL database is created. Import the <code>database.sql</code> file via phpMyAdmin on your cPanel to complete setup.</p>
            <p><strong>Error Message:</strong> <code>SQLSTATE[HY000] [1040] Too many connections</code></p>
            <a href="index.php" class="btn">Retry Page Load</a>
        </div>
    </body>
    </html>
    