@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.watch-animate {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    75% {
        transform: translateY(15px) rotate(-2deg);
    }
}

.glow-effect {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    z-index: -1;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

#sidebar {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

#sidebar ul li a {
    padding: 1rem;
    border-radius: 0.5rem;
    display: block;
    background: transparent;
    transition: all 0.3s ease;
}

#sidebar ul li a:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}