<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Main - Memory Dial-up</title>
  <link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
  <style>
    body {
      margin: 0;
      background: black;
      color: #00ff00;
      font-family: 'VT323', monospace;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    #loadingScreen {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: black;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;
      animation: flickerFade 3s ease forwards;
      z-index: 100;
    }

    @keyframes flickerFade {
      0%   { opacity: 1; }
      20%  { opacity: 0.2; }
      40%  { opacity: 1; }
      60%  { opacity: 0.1; }
      80%  { opacity: 0.9; }
      100% { opacity: 0; display: none; }
    }
  </style>
</head>
<body>
  <div id="loadingScreen">LOADING MEMORY…</div>

  <div id="mainContent" style="z-index: 1; color: white; text-align: center;">
    <h1>Welcome to Main.html</h1>
    <p>Your memory connection is now active.</p>
    <!-- Add your real content here -->
  </div>
</body>
</html>
