    /* Basic Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: Courier;
      background-color: #000000;
      color: #01FF00;
      line-height: 1.6;
    }
    
        /* Scanline background effect */
    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.1) 1px,
        transparent 1px,
        transparent 3px
      );
      z-index: 1;
    }

    a { color: #01FF00; text-decoration: none; }
    a:hover { text-decoration: underline; }

    header {
      background-color: #000000;
      padding: 20px 40px;
      border-bottom: 2px solid #01FF00;
      text-align: center;
    }

    header h1 {
      font-size: 2rem;
      margin-bottom: 5px;
    }

    header p {
      font-size: 1rem;
      color: #01FF00;
    }

    nav {
      display: flex;
      justify-content: center;
      background-color: #2B2B2B;
      padding: 10px 0;
    }

    nav a {
      margin: 0 15px;
      font-weight: bold;
    }
    
    .hero {
      padding: 60px 20px;
      text-align: center;
      background-color: #2B2B2B;
      margin: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .hero h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .hero p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #01FF00;
    }

    .content-blocks {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px 40px;
    }

    .block {
      background-color: #2B2B2B;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    .block img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
    }

    footer {
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      background-color: #2B2B2B;
      font-size: 0.9rem;
      color: #01FF00;
    }

    footer a {
      color: #01FF00;
    }

    @media(max-width: 600px) {
      nav { flex-direction: column; }
      nav a { margin: 5px 0; }
    }
    
    .button-image {
    width: 300px;
    height: auto;
    cursor: pointer; /* shows pointer on hover */
    transition: transform 0.2s;
    }
    
    .button-image:hover {
        transform: scale(1.05); /* slight zoom effect */
    }