body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #e0bbe4, #957dad); /* Degradê roxo e rosa */
    color: #fff;
}

.container {
    background-color: rgba(255, 255, 255, 0.2); /* Fundo semi-transparente */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #6a0572; /* Roxo mais escuro */
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

textarea {
    width: calc(100% - 20px);
    min-height: 150px;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ff7eb9; /* Rosa vibrante */
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
}

textarea:focus {
    border-color: #6a0572; /* Roxo mais escuro ao focar */
}

button {
    background-color: #ff7eb9; /* Rosa vibrante */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

button:hover {
    background-color: #e04a8b; /* Rosa mais escuro ao passar o mouse */
    transform: translateY(-2px);
}

.results {
    margin-top: 30px;
    text-align: left;
}

.results h2 {
    color: #6a0572; /* Roxo mais escuro */
    margin-bottom: 15px;
}

#wordList {
    list-style: none;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#wordList li {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.95rem;
}

#wordList li:last-child {
    margin-bottom: 0;
}