import { Link } from "react-router";
import { ArrowLeft, Copyright } from "lucide-react";

export default function DMCAPolicy() {
  return (
    <main className="min-h-screen bg-[#050505] pt-24 pb-16">
      <div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8">
        <Link to="/" className="inline-flex items-center gap-2 text-sm text-[#a5a5a5] hover:text-white mb-6 transition-colors"><ArrowLeft className="w-4 h-4" /> Back to Home</Link>
        <div className="glass-card rounded-2xl p-8">
          <div className="flex items-center gap-3 mb-6"><div className="w-10 h-10 rounded-lg bg-[#5b9aff]/10 flex items-center justify-center"><Copyright className="w-5 h-5 text-[#5b9aff]" /></div><h1 className="text-2xl font-bold text-white">DMCA Policy</h1></div>
          <div className="text-sm text-[#a5a5a5] leading-relaxed space-y-4">
            <p><strong className="text-white">Last Updated:</strong> January 1, 2026</p>
            <p>Deal Stack Tools respects the intellectual property rights of others and complies with the Digital Millennium Copyright Act (DMCA).</p>
            <h2 className="text-lg font-semibold text-white mt-4 mb-2">1. Reporting Copyright Infringement</h2>
            <p>If you believe that content on our website infringes your copyright, please send a DMCA notice to <strong className="text-white">contact@dealstacktools.shop</strong> containing:</p>
            <ul className="list-disc list-inside space-y-1 ml-4">
              <li>Your physical or electronic signature</li>
              <li>Identification of the copyrighted work</li>
              <li>Identification of the infringing material and its location on our site</li>
              <li>Your contact information</li>
              <li>A statement of good faith belief that the use is not authorized</li>
              <li>A statement that the information is accurate</li>
            </ul>
            <h2 className="text-lg font-semibold text-white mt-4 mb-2">2. Response</h2>
            <p>We will respond to valid DMCA notices within 48 hours. Upon receipt of a valid notice, we will remove or disable access to the infringing material.</p>
            <h2 className="text-lg font-semibold text-white mt-4 mb-2">3. Counter-Notice</h2>
            <p>If you believe your content was removed in error, you may submit a counter-notice with the required information under the DMCA.</p>
            <h2 className="text-lg font-semibold text-white mt-4 mb-2">4. Contact</h2>
            <p>DMCA notices: contact@dealstacktools.shop or WhatsApp: +91 7038146526</p>
          </div>
        </div>
      </div>
    </main>
  );
}
