/* Custom animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Live2D container styling */
#live2d-container {
    position: relative;
    overflow: hidden;
    border: 2px solid #f59e0b;
}

/* Character floating animation */
.live2d-character {
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

/* Task item styling */
.task-item {
    transition: all 0.3s ease;
}

.task-item:hover {
    background-color: #fef3c7;
}

/* Completed task styling */
.completed {
    text-decoration: line-through;
    color: #9ca3af;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #live2d-container {
        height: 300px;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 4px;
}

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