body {
    background-color: #ffd1dc; /* light pink background */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    padding: 40px 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.featured {
    background: #fff0f5;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

select, button {
    padding: 12px 20px;
    font-size: 1rem;
    margin: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button:hover, select:hover {
    background-color: #ffe4e9;
}

#promptBox {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    display: inline-block;
    min-width: 250px;
    max-width: 90%;
    animation: fadeIn 1s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#promptText {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

canvas#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#streak {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #ff4c68;
    font-weight: bold;
}


