body {
    background-color: #000;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

#container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1 {
    color: #ff00ff; /* Magenta */
    text-shadow: 2px 2px #00ffff; /* Cyan */
    font-size: 1.5em;
    line-height: 1.4;
}

textarea {
    width: 100%;
    min-height: 120px;
    background-color: #111;
    border: 2px solid #00ff00; /* Green */
    color: #fff;
    padding: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9em;
    box-sizing: border-box;
    resize: vertical;
}

button {
    padding: 15px;
    background-color: #ffff00; /* Yellow */
    color: #000;
    border: 2px solid #000;
    font-family: 'Press Start 2P', cursive;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9em;
}

button:hover {
    background-color: #ff00ff;
    color: #fff;
    transform: scale(1.05);
}

button:disabled {
    background-color: #555;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

#outputContainer {
    margin-top: 20px;
    border: 2px dashed #00ffff; /* Cyan */
    padding: 20px;
    min-height: 100px;
    text-align: left;
}

#outputContainer h2 {
    font-size: 1em;
    margin-bottom: 15px;
    color: #ffff00;
}

#outputText {
    color: #00ff00; /* Green */
    white-space: pre-wrap; /* Preserve whitespace from AI response */
    line-height: 1.6;
}

