<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Retro Purple Site</title>
  <style>
    body {
      margin: 0;
      font-family: 'Courier New', Courier, monospace;
      background-color: #2d004d;
      color: #fceaff;
    }
    header {
      background: linear-gradient(90deg, #660099, #9933cc);
      padding: 30px;
      text-align: center;
      border-bottom: 4px solid #cc99ff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    }
    header h1 {
      font-size: 2.5em;
      text-transform: uppercase;
      letter-spacing: 3px;
    }
    nav {
      background: #330066;
      display: flex;
      justify-content: center;
    }
    nav a {
      color: #fceaff;
      padding: 14px 20px;
      text-decoration: none;
      font-weight: bold;
      text-transform: uppercase;
      border-right: 1px solid #663399;
    }
    nav a:last-child {
      border-right: none;
    }
    nav a:hover {
      background-color: #660099;
    }
    .container {
      display: flex;
      padding: 20px;
    }
    main {
      flex: 3;
      padding: 20px;
      background: #400060;
      border-radius: 10px;
      box-shadow: inset 0 0 10px #9900cc;
    }
    aside {
      flex: 1;
      padding: 20px;
      background: #330033;
      border-radius: 10px;
      margin-left: 20px;
      box-shadow: inset 0 0 10px #9933cc;
    }
    footer {
      background: linear-gradient(90deg, #660099, #9933cc);
      color: #fceaff;
      text-align: center;
      padding: 10px;
      border-top: 4px solid #cc99ff;
      font-size: 0.9em;
    }
  </style>
</head>
<body>
  <header>
    <h1>Retro Vibes Central</h1>
  </header>
  <nav>
    <a href="#">Home</a>
    <a href="#">Story</a>
    <a href="#">Gallery</a>
    <a href="#">Contact</a>
  </nav>
  <div class="container">
    <main>
      <h2>Main Content</h2>
      <p>Welcome to a purple-drenched portal where nostalgia meets neon. Typewriters, tape decks, and stories that echo through velvet skies.</p>
    </main>
    <aside>
      <h3>Sidebar</h3>
      <p>Coming soon: exclusive episodes, behind-the-scenes lore, and eerie vintage postcards from fictional worlds.</p>
    </aside>
  </div>
  <footer>
    <p>&copy; 2025 Retro Vibes Central. All rights reserved.</p>
  </footer>
</body>
</html>