<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>VolcanoCore</title>

  <meta name="description" content="Official VolcanoCore website. Explore information, updates, and resources." />

  <style>

    body {

      margin: 0;

      font-family: Arial, Helvetica, sans-serif;

      line-height: 1.6;

      background: #f9f9f9;

      color: #333;

    }

    header {

      background: #111;

      color: #fff;

      padding: 1rem 2rem;

      text-align: center;

    }

    header h1 {

      margin: 0;

      font-size: 2rem;

    }

    main {

      max-width: 900px;

      margin: 2rem auto;

      padding: 1rem 2rem;

      background: #fff;

      border-radius: 8px;

      box-shadow: 0 2px 6px rgba(0,0,0,0.1);

    }

    section {

      margin-bottom: 2rem;

    }

    h2 {

      color: #111;

      border-bottom: 2px solid #eee;

      padding-bottom: 0.5rem;

    }

    footer {

      text-align: center;

      padding: 1rem;

      background: #111;

      color: #fff;

      font-size: 0.9rem;

    }

    a {

      color: #0066cc;

      text-decoration: underline;

    }

    .disclaimer {

      font-size: 0.85rem;

      background: #f0f0f0;

      padding: 1rem;

      border-radius: 6px;

    }

  </style>

</head>

<body>

  <header>

    <h1>VolcanoCore</h1>

    <p>Official Website</p>

  </header>


  <main>

    <section>

      <h2>Welcome</h2>

      <p>

        This is the official site for VolcanoCore. Here you’ll find updates, resources, and relevant information. 

        The content provided is for general informational purposes only.

      </p>

    </section>


    <section>

      <h2>About</h2>

      <p>

        VolcanoCore is a project dedicated to building reliable and accessible resources. 

        We provide neutral, factual information designed to serve as a reference point for visitors.

      </p>

    </section>


    <section class="disclaimer">

      <strong>Disclaimer:</strong>  

      The information provided on this website is for general informational purposes only and does not constitute 

      legal, financial, or professional advice. Any external links or references are provided for convenience. 

      VolcanoCore does not guarantee outcomes, performance, or results.

    </section>

  </main>


  <footer>

    &copy; <span id="year"></span> VolcanoCore. All rights reserved.

  </footer>


  <script>

    // Auto-update footer year

    document.getElementById("year").textContent = new Date().getFullYear();

  </script>

</body>

</html>