* {
    font-family: 'Poppins', sans-serif;
}
.hero-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.bounce {
    animation: bounce 3s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.camera-modal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}
.camera-actions {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
 