      body {
        background-color: #0d1117;
        color: #58a6ff;
        font-family: "Courier New", Courier, monospace;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        overflow: hidden;
      }

      .terminal {
        width: 600px;
        padding: 30px;
        border: 1px solid #30363d;
        border-radius: 8px;
        background: #161b22;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      }

      .cursor {
        display: inline-block;
        width: 10px;
        background-color: #58a6ff;
        animation: blink 1s infinite;
      }

      h1 {
        font-size: 1.2rem;
        color: #7ee787;
        margin-top: 0;
      }

      p {
        line-height: 1.6;
        margin-bottom: 20px;
      }

      .warning {
        color: #f85149;
        font-weight: bold;
      }

      @keyframes blink {
        0%,
        49% {
          opacity: 1;
        }
        50%,
        100% {
          opacity: 0;
        }
      }