<!DOCTYPE html>
<html lang="vi">
<head>
    <meta charset="UTF-8">
    <title>500 - Lỗi hệ thống nội bộ</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        /* Style chung giữ nguyên từ bộ 4xx của bạn */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Segoe UI", Roboto, Arial, sans-serif; }
        body { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; background: linear-gradient(135deg, #f1f2f6, #dcdde1); color: #2f3640; padding: 20px; }
        
        .icon { font-size: 60px; margin-bottom: 20px; animation: spin 4s linear infinite; }
        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        .message { text-align: center; max-width: 580px; }
        .error-code { font-size: 82px; font-weight: 800; line-height: 1; color: #c0392b; margin-bottom: 15px; letter-spacing: -2px; }
        .message h1 { font-size: 26px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; color: #2c3e50; }
        .message p { font-size: 16px; color: #4b5563; line-height: 1.8; margin-bottom: 35px; }
        
        .btn { display: inline-block; padding: 12px 32px; background-color: #2f3640; color: #ffffff; text-decoration: none; border-radius: 4px; font-weight: 600; text-transform: uppercase; font-size: 13px; transition: 0.3s; border: 1px solid #2f3640; }
        .btn:hover { background: transparent; color: #2f3640; }
        .footer { margin-top: 40px; font-size: 13px; color: #95a5a6; border-top: 1px solid #dcdde1; padding-top: 20px; }
    </style>
</head>
<body>
    <div class="icon" style="animation: flicker 2s infinite;">☁️⚡</div>
    <style> @keyframes flicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; }} </style>
    <div class="message">
        <div class="error-code" style="color: #2980b9;">502</div>
        <h1>Lỗi cổng kết nối (Bad Gateway)</h1>
        <p>Máy chủ trung gian đã nhận được phản hồi không hợp lệ từ máy chủ gốc. Sự cố này thường liên quan đến cấu hình mạng tạm thời hoặc quá tải đường truyền.</p>
        <div class="footer">HTTP 502 Bad Gateway · Upstream Communication Error</div>
    </div>
</body>
</html>