<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">hello<url><loc>https://vcbd.info/</loc><changefreq>daily</changefreq><priority>1.0</priority><!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="robots" content="noindex, nofollow">

    <title>Something Went Wrong | VCBD</title>

    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            min-height: 100%;
        }

        body {
            font-family:
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Arial,
                sans-serif;

            background: #f7f7f7;
            color: #171717;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 30px;
        }

        .error-wrapper {
            width: 100%;
            max-width: 520px;
            text-align: center;
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 45px;
        }

        .logo span {
            color: #d71920;
        }

        .error-icon {
            width: 90px;
            height: 90px;

            margin: 0 auto 30px;

            border-radius: 50%;

            background: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 42px;
            font-weight: 700;

            color: #d71920;

            box-shadow:
                0 10px 35px rgba(0, 0, 0, 0.08);
        }

        .error-code {
            font-size: 76px;
            line-height: 1;
            font-weight: 800;

            color: #171717;

            letter-spacing: -4px;

            margin-bottom: 15px;
        }

        h1 {
            font-size: 28px;
            font-weight: 700;

            margin-bottom: 12px;
        }

        .description {
            font-size: 16px;
            line-height: 1.7;

            color: #666;

            max-width: 440px;
            margin: 0 auto 30px;
        }

        .actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-width: 130px;
            height: 46px;

            padding: 0 22px;

            border-radius: 8px;

            text-decoration: none;

            font-size: 14px;
            font-weight: 600;

            transition:
                transform 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease;
        }

        .btn-primary {
            background: #171717;
            color: #fff;
        }

        .btn-primary:hover {
            background: #000;
            transform: translateY(-2px);

            box-shadow:
                0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: #fff;
            color: #171717;

            border: 1px solid #ddd;
        }

        .btn-secondary:hover {
            border-color: #bbb;
            transform: translateY(-2px);
        }

        .footer {
            margin-top: 55px;

            font-size: 13px;
            color: #999;
        }

        .footer a {
            color: #777;
            text-decoration: none;
        }

        .footer a:hover {
            color: #d71920;
        }

        @media (max-width: 600px) {

            body {
                padding: 25px 20px;
            }

            .logo {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .error-icon {
                width: 76px;
                height: 76px;

                font-size: 36px;

                margin-bottom: 25px;
            }

            .error-code {
                font-size: 62px;
            }

            h1 {
                font-size: 24px;
            }

            .description {
                font-size: 15px;
            }

            .actions {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .footer {
                margin-top: 40px;
            }
        }
    </style>
</head>

<body>
    <main class="error-wrapper">
        <div class="logo">
            VC<span>BD</span>
        </div>
        <div class="error-icon">
            !
        </div>
        <div class="error-code">
            500
        </div>
        <h1>
            Something went wrong
        </h1>
        <p class="description">
            We’re sorry, but something unexpected happened on our server.
            Please try again in a moment.
        </p>
        <div class="actions">
            <a href="/" class="btn btn-primary">
                Go to Homepage
            </a>
            <a href="javascript:location.reload()" class="btn btn-secondary">
                Try Again
            </a>
        </div>
        <div class="footer">
            &copy;
            2026            <a href="/">VCBD</a>.
            All rights reserved.
        </div>

    </main>

</body>

</html>