body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #fff;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 180px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #1e293b;
    color: white;
    resize: none;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #3b82f6;
    color: white;
    transition: 0.3s;
}

button:hover {
    background: #2563eb;
}

.secondary {
    background: #334155;
}

.secondary:hover {
    background: #475569;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #94a3b8;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #64748b;
}

/* Responsive */
@media(max-width:600px){
    button{
        flex: 100%;
    }
}