/* Additional custom styles */
body {
    scroll-behavior: smooth;
}

/* Smooth transitions for phone screenshots */
.phone-screen img {
    transition: opacity 0.3s ease;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6f00;
}
