* { font-family: 'Poppins', sans-serif; }

body { 
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); 
    background-size: 400% 400%; 
    animation: gradient 15s ease infinite; 
    min-height: 100vh; 
    overflow-x: hidden; 
}

@keyframes gradient { 
    0% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
    100% { background-position: 0% 50%; } 
}

.pacifico { font-family: 'Pacifico', cursive; }

.heart { 
    position: fixed; 
    font-size: 30px; 
    opacity: 0; 
    animation: float 8s infinite; 
    pointer-events: none; 
}

@keyframes float { 
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 
    10% { opacity: 0.8; } 
    90% { opacity: 0.8; } 
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; } 
}

.glass { 
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2); 
}

.sparkle { 
    position: absolute; 
    width: 4px; 
    height: 4px; 
    background: white; 
    border-radius: 50%; 
    animation: sparkle 1.5s ease-in-out infinite; 
}

@keyframes sparkle { 
    0%, 100% { opacity: 0; transform: scale(0); } 
    50% { opacity: 1; transform: scale(1); } 
}

@keyframes heartbeat { 
    0%, 100% { transform: scale(1); } 
    10%, 30% { transform: scale(1.1); } 
    20%, 40% { transform: scale(1); } 
}

.heartbeat { animation: heartbeat 1.5s ease-in-out infinite; }

@keyframes bounceIn { 
    0% { opacity: 0; transform: scale(0.3) translateY(50px); } 
    50% { opacity: 1; transform: scale(1.05); } 
    70% { transform: scale(0.9); } 
    100% { opacity: 1; transform: scale(1); } 
}

.bounce-in { animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

@keyframes slideUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.slide-up { animation: slideUp 0.5s ease-out; }

.percentage-circle { 
    position: relative; 
    width: 200px; 
    height: 200px; 
}

.percentage-circle svg { transform: rotate(-90deg); }

.percentage-circle circle { 
    fill: none; 
    stroke-width: 12; 
    stroke-linecap: round; 
    transition: stroke-dashoffset 2s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}
