body {
    font-family: 'Poppins', sans-serif;
}
.ali-desc-generator {
    background: #000;
    color: #fff;
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}
.ali-desc-generator h2 {
    background: linear-gradient(90deg, #00b4ff, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    margin-bottom: 15px;
}
#ali-desc-input {
    width: 100%;
    height: 90px;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    resize: none;
    outline: none;
}
#ali-generate-btn {
    background: linear-gradient(90deg, #00b4ff, #8e2de2);
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    margin-top: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#ali-generate-btn:hover {
    opacity: 0.85;
}
#ali-desc-output {
    background: #111;
    border-radius: 10px;
    color: #fff;
    padding: 15px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    min-height: 100px;
}
.footer {
    margin-top: 25px;
    font-size: 14px;
    color: #aaa;
}
