.yhm-hot-layout {
    min-height: 100vh;
}

.yhm-hot-hero {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(147, 51, 234, 0.1));
}

.yhm-hot-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yhm-hot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 1s ease;
    animation: yhmHotGlow 3s ease-in-out infinite;
}

@keyframes yhmHotGlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.yhm-hot-cover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yhm-hot-overlay {
    transition: all 0.3s ease;
}

.yhm-hot-card:hover {
    transform: translateY(-10px);
}

.yhm-hot-category {
    transition: all 0.3s ease;
}

.yhm-hot-category:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .yhm-hot-featured {
        grid-template-columns: 1fr;
    }
    
    .yhm-hot-categories {
        grid-template-columns: 1fr 1fr;
    }
    
    .yhm-daily-recommend {
        grid-template-columns: 1fr;
    }
}