* {
    font-family: 'Quicksand', sans-serif;
}

body {
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(244, 114, 182, 0.25);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 30px 60px -12px rgba(244, 114, 182, 0.35);
    transform: translateY(-2px);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f472b6, #c084fc);
    border-radius: 9999px;
    transition: width 1s ease;
}

input {
    transition: all 0.3s ease;
    border-radius: 1.5rem !important;
}

input:focus {
    border-color: #f472b6;
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.2);
    outline: none;
    transform: scale(1.02);
}

.primary-btn {
    border-radius: 1.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f472b6, #c084fc);
    color: white;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    cursor: pointer;
}

.primary-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(244, 114, 182, 0.4);
}

.primary-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.result-section {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.emoji-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #f472b6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}