body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
}

.container {
    max-width: 950px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 220px;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: #1e293b;
    color: white;
    font-size: 16px;
    outline: none;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

button {
    flex: 1 1 calc(33% - 10px);
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

.secondary {
    background: #334155;
}

.danger {
    background: #ef4444;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #cbd5f5;
    font-size: 14px;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
    font-size: 12px;
}

@media(max-width:600px){
    button {
        flex: 1 1 100%;
    }
}