"use client";

import Link from "next/link";
import { ChevronLeft, AlertCircle } from "lucide-react";

export default function MovieBoxDisabledPage() {
  return (
    <div className="fixed inset-0 bg-black flex flex-col items-center justify-center p-6 text-center space-y-4">
      <AlertCircle className="w-12 h-12 text-destructive" />
      <h2 className="text-2xl font-bold text-white">MovieBox dinonaktifkan</h2>
      <p className="text-white/70 text-sm max-w-md">
        Fitur MovieBox sementara dinonaktifkan agar tidak mengganggu performa platform lain.
      </p>
      <Link
        href="/"
        className="inline-flex items-center gap-2 text-primary hover:underline"
      >
        <ChevronLeft className="w-5 h-5" />
        Kembali ke beranda
      </Link>
    </div>
  );
}
