@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    width: 90%;
    max-width: 450px;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    outline: none;
    background: #f8f9fa;
}

input:focus {
    border-color: #764ba2;
    background: white;
    box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.1);
}

button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
    filter: brightness(110%);
}

button:active {
    transform: translateY(1px);
}

#meaning {
    margin-top: 2rem;
    text-align: left;
}

#meaning p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background: #fdfdfd;
    padding: 1.5rem;
    border-left: 4px solid #764ba2;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
