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

  body {
    background-color: #111; /* dark background outside monitor */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
    cursor: url(logo), auto;

  }

  /* CRT Monitor container */
  .crt-monitor {
    position: relative;
    width: 80vw;
    max-width: 800px;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 2em; /* curved edges */
    border: 15px solid #222; /* monitor bezel */
    box-shadow: 0 0 30px rgb(255, 0, 0) inset, 0 0 60px rgb(255, 0, 0) inset;
    overflow: hidden;
  }

  /* Scanlines overlay */
  .scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      to bottom,
      rgba(0,255,0,0.05),
      rgba(0,255,0,0.05) 1px,
      transparent 1px,
      transparent 3px
    );
    pointer-events: none;
  }

  /* Flicker effect */
  @keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 22%, 24%, 55% { opacity: 0.6; }
  }

  /* Content inside CRT */
  .crt-content {
    position: relative;
    width: 100%;
    height: 100%;
    color: #ff0000;
    padding: 2em;
    text-shadow:
      0 0 2px #ff0000,
      0 0 5px #ff0000,
      0 0 10px #ff0000;
    animation: flicker 1.5s infinite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
  }

  p {
    font-size: 1.1em;
    margin-bottom: 0.3em;
  }

  .logo {
    width: 90%;
    height: 150px;
    text-align: center;
  }
