/*
Theme Name: Starter
Theme URI:  http://roots.io/starter-theme/
Version:    0.1
Author:     MadDeveloper
Author URI: 
*/

/* Featured Star Styling */
.featured-star {
    color: #fbbf24;
    font-size: 1.2em;
    margin-left: 8px;
    animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.featured-star:hover {
    animation: star-spin 0.5s ease-in-out;
}

@keyframes star-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
