    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(to bottom, #0a0a1f, #000022);
      color: #f8f8f8;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 100vh;
      padding: 20px;
      text-align: center;
    }

    nav {
      align-self: flex-start;
      margin-bottom: 20px;
    }

    nav a {
      color: #00ccff;
      text-decoration: none;
      font-weight: bold;
      background-color: rgba(255, 255, 255, 0.1);
      padding: 8px 14px;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    nav a:hover {
      background-color: rgba(255, 255, 255, 0.25);
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #ffd700;
      text-shadow: 0 0 8px #ffd70033;
    }

    p {
      margin-top: 20px;
      max-width: 600px;
      line-height: 1.6;
    }

    canvas {
      border: 2px solid #ffffff22;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      margin-top: 20px;
    }

    footer {
      margin-top: 30px;
      color: #535353;
      font-size: 0.9rem;
    }