body {
    background: linear-gradient(135deg, #e0ffff, #c4f5f5);
    font-family: "Poppins", Arial, sans-serif;
}

h1 {
    font-weight: 900;
    font-size: 40px;
    color: #006b6b;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.instruction {
    padding: 18px;
    border: 2px solid rgba(0,139,139,0.3);
    width: 80%;
    font-size: 16px;
    border-radius: 35px;
    line-height: 22px;
    background-color: #ffffffcc;
    transition: 0.3s ease;
}

.instruction:focus {
    outline: none;
    box-shadow: 0px 0px 12px rgba(0,139,139,0.4);
}

.button {
    margin-left: 10px;
    background: linear-gradient(135deg, #00b3b3, #008b8b);
    color: white;
    border: none;
    width: 160px;
    font-size: 17px;
    border-radius: 40px;
    padding: 14px 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

.button:hover {
    background: linear-gradient(135deg, #008b8b, #006b6b);
    transform: scale(1.05);
}

.container {
    margin: 120px auto;
    max-width: 650px;
}

header {
    margin-bottom: 30px;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes blink {
    50% { opacity: 0; }
}

.generating {
    animation: blink 1s step-start 0s infinite;
}

.hint {
    line-height: 1.5;
    font-size: 15px;
    margin-top: 70px;
    opacity: 0.6;
    text-align: center;
}

.hidden {
    display: none;
}

.form-container {
    padding: 25px 30px;
    background-color: #ffffffd9;
    box-shadow: 0px 20px 60px rgba(0,139,139,0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 50px;
}

.poem {
    font-size: 22px;
    background-color: white;
    padding: 25px;
    border-left: 7px solid #008b8b;
    line-height: 1.7;
    box-shadow: 0px 8px 40px rgba(0,0,0,0.06);
    border-radius: 8px;
    font-style: italic;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.poem:hover {
    transform: translateY(-3px);
}

footer {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    opacity: 0.7;
}

a {
    color: #008b8b;
    font-weight: 600;
}
.quote {
    background-color: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0px 15px 45px rgba(0,0,0,0.1);
    font-size: 20px;
    line-height: 1.7;
    color: #004d4d;
    font-weight: 500;
    border-left: 6px solid #008b8b;
    margin-top: 20px;
    backdrop-filter: blur(5px);
}
