body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #1a1a1a;
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        #0a0a0a,
        #0a0a0a 1px,
        #1a1a1a 1px,
        #1a1a1a 2px
    );
    opacity: 0.1;
    pointer-events: none;
}

.window {
    background-color: #2c2c2c;
    border: 2px solid #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    width: 90%;
    max-width: 600px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.title-bar {
    background-color: #005500;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00ff00;
}

.title-bar-text {
    font-weight: bold;
    color: #00ff00;
}

.title-bar-controls button {
    background-color: #00ff00;
    border: none;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
}
.title-bar-controls button:nth-child(1) { background-color: #ffcc00; } /* Minimize */
.title-bar-controls button:nth-child(2) { background-color: #00ccff; } /* Maximize */
.title-bar-controls button:nth-child(3) { background-color: #ff0000; } /* Close */


.window-body {
    padding: 20px;
}

.window-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

textarea {
    width: calc(100% - 20px);
    height: 150px;
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    resize: vertical;
    font-family: 'Courier New', Courier, monospace;
}

textarea::placeholder {
    color: #00aa00;
}

button[type="submit"] {
    background-color: #00ff00;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

button[type="submit"]:hover {
    background-color: #1a1a1a;
    color: #00ff00;
    border: 1px solid #00ff00;
}

.note {
    margin-top: 20px;
    font-size: 0.8em;
    color: #00aa00;
    border-top: 1px dashed #00aa00;
    padding-top: 10px;
}
