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

        body {
            background: #000000;
            color: #ffffff;
            font-family: 'Courier New', monospace;
            font-weight: bold;
            font-size: 20px;
            line-height: 1.4;
            padding: 40px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .message {
            text-align: left;
            max-width: 500px;
            border: 3px solid #ffffff;
            padding: 30px;
            letter-spacing: 0.1em;
            text-transform: none;
            white-space: nowrap;
        }

        .subtext {
            color: #888888;
            font-size: 16px;
            margin-top: 10px;
            text-align: center;
        }