body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ddd;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2);
}

#logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 20px auto;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.2));
}

textarea {
    width: 90%;
    max-width: 800px;
    height: 200px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    border: 1px solid #555;
    padding: 12px;
    border-radius: 8px;
    background: #1e1e1e;
    color: #ddd;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
}

pre {
    white-space: pre-wrap; 
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

button {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: white;
    padding: 15px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(255, 106, 0, 0.8);
}

#output {
    width: 90%;
    max-width: 800px;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #eee;
    border-left: 4px solid #ff6a00;
}

.alert {
    color: #ff6a00;
    font-weight: bold;
}

@media (max-width: 600px) {
    textarea {
        width: 100%;
    }
    #output {
        width: 100%;
    }
    button {
        width: 100%;
    }
}