/* Menu Highlight Styles */
.highlight-menu-item {
    position: relative;
    color: #1cc88a !important;
    font-weight: 600;
}

.highlight-menu-item:before {
    content: '★';
    position: relative;
    display: inline-block;
    margin-right: 5px;
    color: #1cc88a;
    font-size: 0.9em;
    animation: pulse 2s infinite;
}

.hero-stats .stat.highlight {
    border: 2px solid #1cc88a;
    background: linear-gradient(135deg, rgba(28, 200, 138, 0.1) 0%, rgba(28, 200, 138, 0.05) 100%);
    transform: scale(1.05);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(28, 200, 138, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
