<!DOCTYPE html>
<html lang="en">
<head> 
     <!-- GLOBAL A2 POLISH -->
    <link rel="icon" type="image/png" href="/favicon.png">
    <link rel="apple-touch-icon" href="/favicon.png">
    <meta name="theme-color" content="#000000">

    <meta property="og:site_name" content="MOONVIC">
    <meta name="twitter:site" content="@moonvic">
    <meta name="twitter:creator" content="@moonvic">


    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>MOONVIC Privacy Policy</title>

    <link rel="icon" type="image/png" href="assets/moonvic-logo.png" />
    <link rel="stylesheet" href="style.css">
</head>

<body>

    <!-- Navigation -->
    <header>
        <nav class="navbar">
            <div class="logo">
                <img src="assets/moonvic-logo.png" alt="MOONVIC Logo">
            </div>

            <ul class="nav-links">
                <li><a href="index.html">Home</a></li>
                <li><a href="about.html">About</a></li>
                <li><a href="tokenomics.html">Tokenomics</a></li>
                <li><a href="ecosystem.html">Ecosystem</a></li>
                <li><a href="roadmap.html">Roadmap</a></li>
                <li><a href="how-to-buy.html">How to Buy</a></li>
                <li><a href="faq.html">FAQ</a></li>
                <li><a href="contact.html">Contact</a></li>
                <li><a href="privacy.html" class="active">Privacy</a></li>
            </ul>

            <div class="hamburger">
                <span></span><span></span><span></span>
            </div>
        </nav>
    </header>

    <!-- PAGE HEADER -->
    <section class="page-header">
        <h1>Privacy Policy</h1>
        <p>Your privacy matters to us.</p>
    </section>

    <!-- PRIVACY CONTENT -->
    <section class="content-section">
        <h2>Introduction</h2>
        <p>
            MOONVIC is committed to protecting your privacy. This Privacy Policy explains how we handle information
            when you visit our website or interact with our ecosystem.
        </p>
    </section>

    <section class="content-section">
        <h2>Information We Collect</h2>
        <p>
            MOONVIC does not collect personal information directly.  
            However, third‑party services integrated into the website may collect data, including:
        </p>

        <ul>
            <li>Analytics platforms (e.g., traffic statistics)</li>
            <li>Blockchain explorers (e.g., Etherscan)</li>
            <li>Decentralized exchanges (e.g., Uniswap)</li>
            <li>Charting platforms (e.g., DexTools, DexScreener)</li>
        </ul>
    </section>

    <section class="content-section">
        <h2>Cookies</h2>
        <p>
            MOONVIC does not use cookies directly.  
            Third‑party embedded tools may use cookies for functionality or analytics.
        </p>
    </section>

    <section class="content-section">
        <h2>Third‑Party Links</h2>
        <p>
            Our website contains links to external platforms.  
            We are not responsible for the privacy practices of those websites.
        </p>
    </section>

    <section class="content-section">
        <h2>Blockchain Transparency</h2>
        <p>
            All blockchain transactions involving MOONVIC (MV) are public and permanently recorded on the Ethereum network.
        </p>
    </section>

    <section class="content-section">
        <h2>Changes to This Policy</h2>
        <p>
            We may update this Privacy Policy as needed.  
            Any changes will be reflected on this page.
        </p>
    </section>

    <section class="content-section">
        <h2>Contact</h2>
        <p>
            For privacy questions, contact us at:<br>
            <strong>support@moonvic.io</strong>
        </p>
    </section>

    <!-- FOOTER -->
    <footer>
        <p>© 2024 MOONVIC. All Rights Reserved.</p>
    </footer>

    <script>
        const hamburger = document.querySelector('.hamburger');
        const navLinks = document.querySelector('.nav-links');
        hamburger.addEventListener('click', () => {
            navLinks.classList.toggle('active');
        });
    </script>

</body>
</html>
