/* Import nice modern font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    transition: background 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism Container */
.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 90%;
    position: relative;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Typography */
h1 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Select Styling */
select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    font-size: 1rem;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

select:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

select option {
    background: #333;
    color: #fff;
}

/* Button Styling */
button {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.5);
    filter: brightness(1.1);
}

button:active {
    transform: scale(0.98);
}

/* Suggestion Box */
.suggestion {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.suggestion.show {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Elements */
.emoji {
    position: absolute;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    z-index: 1;
    pointer-events: none;
    animation: floatAround 6s infinite ease-in-out;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(20deg); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    animation: fadeIn 1s ease-out;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    h1 {
        font-size: 1.8rem;
    }
}
